repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-codec/src/main/java/org/tinylcy/RpcDecoder.java
buddha-codec/src/main/java/org/tinylcy/RpcDecoder.java
package org.tinylcy; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.ByteToMessageDecoder; import java.util.List; /** * Created by chenyangli. */ public class RpcDecoder extends ByteToMessageDecoder { private Class<?> clazz; public RpcDecoder(C...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-codec/src/main/java/org/tinylcy/RpcEncoder.java
buddha-codec/src/main/java/org/tinylcy/RpcEncoder.java
package org.tinylcy; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.MessageToByteEncoder; /** * Created by chenyangli. */ public class RpcEncoder extends MessageToByteEncoder { private Class<?> clazz; public RpcEncoder(Class<?> clazz) { ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-codec/src/main/java/org/tinylcy/RpcResponseCodec.java
buddha-codec/src/main/java/org/tinylcy/RpcResponseCodec.java
package org.tinylcy; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.ByteToMessageCodec; import java.util.List; /** * Created by chenyangli. */ public class RpcResponseCodec extends ByteToMessageCodec<RpcResponse> { @Override protected void enco...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/ZooKeeperManagerTest.java
buddha-registry/src/test/java/org/tinylcy/ZooKeeperManagerTest.java
package org.tinylcy; import org.junit.Test; import org.tinylcy.zookeeper.ZooKeeperManager; import java.util.List; /** * Created by chenyangli. */ public class ZooKeeperManagerTest { @Test public void testCreateNode() { ZooKeeperManager manager = new ZooKeeperManager("127.0.0.1:2181"); mana...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/MyStringCallback.java
buddha-registry/src/test/java/org/tinylcy/examples/MyStringCallback.java
package org.tinylcy.examples; import org.apache.zookeeper.AsyncCallback; /** * Created by chenyangli. */ public class MyStringCallback implements AsyncCallback.StringCallback { public void processResult(int i, String s, Object o, String s1) { System.out.println("异步创建回调结果 - 状态: " + i + ", 创建路径: " + s ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/GetChildrenExample.java
buddha-registry/src/test/java/org/tinylcy/examples/GetChildrenExample.java
package org.tinylcy.examples; import org.apache.zookeeper.*; import java.util.List; import java.util.concurrent.CountDownLatch; /** * Created by chenyangli. */ public class GetChildrenExample implements Watcher { private static final CountDownLatch connectedSignal = new CountDownLatch(1); private static Z...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/CreateNodeExample.java
buddha-registry/src/test/java/org/tinylcy/examples/CreateNodeExample.java
package org.tinylcy.examples; import org.apache.zookeeper.*; import java.util.concurrent.CountDownLatch; /** * Created by chenyangli. */ public class CreateNodeExample implements Watcher { private static final CountDownLatch connectedSignal = new CountDownLatch(1); public static void main(String[] args) ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/SessionExample.java
buddha-registry/src/test/java/org/tinylcy/examples/SessionExample.java
package org.tinylcy.examples; import org.apache.zookeeper.WatchedEvent; import org.apache.zookeeper.Watcher; import org.apache.zookeeper.ZooKeeper; import java.util.concurrent.CountDownLatch; /** * Created by chenyangli. */ public class SessionExample implements Watcher { private static CountDownLatch connect...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/GetDataExample.java
buddha-registry/src/test/java/org/tinylcy/examples/GetDataExample.java
package org.tinylcy.examples; import org.apache.zookeeper.*; import org.apache.zookeeper.data.Stat; import java.util.concurrent.CountDownLatch; /** * Created by chenyangli. */ public class GetDataExample implements Watcher { private static final CountDownLatch connectedSignal = new CountDownLatch(1); priv...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/test/java/org/tinylcy/examples/MyChildren2Callback.java
buddha-registry/src/test/java/org/tinylcy/examples/MyChildren2Callback.java
package org.tinylcy.examples; import org.apache.zookeeper.AsyncCallback; import org.apache.zookeeper.data.Stat; import java.util.List; /** * Created by chenyangli. */ public class MyChildren2Callback implements AsyncCallback.Children2Callback { public void processResult(int rc, String path, Object ctx, List<S...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/main/java/org/tinylcy/ServiceRegistry.java
buddha-registry/src/main/java/org/tinylcy/ServiceRegistry.java
package org.tinylcy; import org.apache.log4j.Logger; import org.tinylcy.zookeeper.ZooKeeperManager; /** * Created by chenyangli. */ public class ServiceRegistry { private static final Logger LOGGER = Logger.getLogger(ServiceRegistry.class); private ZooKeeperManager manager; public ServiceRegistry(Zoo...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/main/java/org/tinylcy/ServiceDiscovery.java
buddha-registry/src/main/java/org/tinylcy/ServiceDiscovery.java
package org.tinylcy; import org.apache.log4j.Logger; import org.tinylcy.zookeeper.ZooKeeperManager; import java.util.List; /** * Created by chenyangli. */ public class ServiceDiscovery { private static final Logger LOGGER = Logger.getLogger(ServiceDiscovery.class); private ZooKeeperManager manager; ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-registry/src/main/java/org/tinylcy/zookeeper/ZooKeeperManager.java
buddha-registry/src/main/java/org/tinylcy/zookeeper/ZooKeeperManager.java
package org.tinylcy.zookeeper; import com.google.common.base.Strings; import org.apache.log4j.Logger; import org.apache.zookeeper.*; import org.tinylcy.PropertyReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CountDownLatch; /** * Created by chenyang...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/test/java/org/tinylcy/PropertyReaderTest.java
buddha-server/src/test/java/org/tinylcy/PropertyReaderTest.java
package org.tinylcy; import org.junit.Test; /** * Created by chenyangli. */ public class PropertyReaderTest { @Test public void read() { PropertyReader reader = new PropertyReader("buddha-server.properties"); String host = reader.getProperty("server.address.host"); System.out.printl...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/test/java/org/tinylcy/ApplicationContextTest.java
buddha-server/src/test/java/org/tinylcy/ApplicationContextTest.java
package org.tinylcy; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Created by chenyangli. */ public class ApplicationContextTest { @Test public void testApplicationContext() { Applicatio...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/main/java/org/tinylcy/RpcServerHandler.java
buddha-server/src/main/java/org/tinylcy/RpcServerHandler.java
package org.tinylcy; import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.Map; /** * Created by chenyangli. */ public c...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/main/java/org/tinylcy/RpcServer.java
buddha-server/src/main/java/org/tinylcy/RpcServer.java
package org.tinylcy; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelInitializer; import io.netty.channel.ChannelOption; import io.netty.channel.EventLoopGroup; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketChannel; ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/main/java/org/tinylcy/service/HelloServiceImpl.java
buddha-server/src/main/java/org/tinylcy/service/HelloServiceImpl.java
package org.tinylcy.service; import org.tinylcy.annotation.RpcService; /** * Created by chenyangli. */ @RpcService(value = IHelloService.class) public class HelloServiceImpl implements IHelloService { public String hello(String name) { return "hello! " + name; } }
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/main/java/org/tinylcy/service/IHelloService.java
buddha-server/src/main/java/org/tinylcy/service/IHelloService.java
package org.tinylcy.service; /** * Created by chenyangli. */ public interface IHelloService { String hello(String name); }
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-server/src/main/java/org/tinylcy/annotation/RpcService.java
buddha-server/src/main/java/org/tinylcy/annotation/RpcService.java
package org.tinylcy.annotation; import org.springframework.stereotype.Component; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by chenyangli. */ @Target({ElementType.TYPE}) @Retention(Re...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-common/src/main/java/org/tinylcy/PropertyReader.java
buddha-common/src/main/java/org/tinylcy/PropertyReader.java
package org.tinylcy; import com.google.common.io.ByteSource; import com.google.common.io.Resources; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.util.Properties; /** * Created by chenyangli. * <p> * Read a properties file and get property. */ public class PropertyReade...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-common/src/main/java/org/tinylcy/RandomGenerator.java
buddha-common/src/main/java/org/tinylcy/RandomGenerator.java
package org.tinylcy; import java.util.Random; /** * Created by chenyangli. */ public class RandomGenerator { /** * @param min minimum value * @param max maximum value must be greater than min * @return Integer between min and max, inclusive. */ public static int randInt(int min, int max...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-client/src/test/java/org/tinylcy/HelloServiceTest.java
buddha-client/src/test/java/org/tinylcy/HelloServiceTest.java
package org.tinylcy; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.tinylcy.proxy.RpcProxy; import org.tinylcy.service.IHelloService; /** * Created by chenyangli. */ public class HelloServiceTest { ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-client/src/main/java/org/tinylcy/RpcClientHandler.java
buddha-client/src/main/java/org/tinylcy/RpcClientHandler.java
package org.tinylcy; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; /** * Created by chenyangli. */ public class RpcClientHandler extends SimpleChannelInboundHandler<RpcResponse> { private RpcResponse response; public RpcClientHandler(RpcResponse respon...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-client/src/main/java/org/tinylcy/RpcClient.java
buddha-client/src/main/java/org/tinylcy/RpcClient.java
package org.tinylcy; import io.netty.bootstrap.Bootstrap; import io.netty.channel.*; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.SocketChannel; import io.netty.channel.socket.nio.NioSocketChannel; import org.apache.log4j.Logger; import java.lang.reflect.Method; import java.net.InetSo...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-client/src/main/java/org/tinylcy/service/IHelloService.java
buddha-client/src/main/java/org/tinylcy/service/IHelloService.java
package org.tinylcy.service; /** * Created by chenyangli. */ public interface IHelloService { String hello(String name); }
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
tinylcy/buddha
https://github.com/tinylcy/buddha/blob/60b868ab565dcfb9f1c22e0776388bac20d8cea5/buddha-client/src/main/java/org/tinylcy/proxy/RpcProxy.java
buddha-client/src/main/java/org/tinylcy/proxy/RpcProxy.java
package org.tinylcy.proxy; import org.apache.log4j.Logger; import org.tinylcy.RpcClient; import org.tinylcy.RpcResponse; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; /** * Created by chenyangli. */ public class RpcProxy implements InvocationHandler { ...
java
MIT
60b868ab565dcfb9f1c22e0776388bac20d8cea5
2026-01-05T02:40:43.558810Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/Bootstrap.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/Bootstrap.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/ServingServer.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/ServingServer.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/FateServiceRegister.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/FateServiceRegister.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/AsyncMessageConfig.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/AsyncMessageConfig.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/UseZkCondition.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/UseZkCondition.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/ServingConfig.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/ServingConfig.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/GuestSingleInferenceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/GuestSingleInferenceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/GuestBatchInferenceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/GuestBatchInferenceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/AbstractServingServiceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/provider/AbstractServingServiceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestSingleParamInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestSingleParamInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestBatchParamInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestBatchParamInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestModelInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/guest/interceptors/GuestModelInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/ServerModelController.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/ServerModelController.java
package com.webank.ai.fate.serving.controller; import com.google.common.base.Preconditions; import com.google.common.util.concurrent.ListenableFuture; import com.webank.ai.fate.api.mlmodel.manager.ModelServiceGrpc; import com.webank.ai.fate.api.mlmodel.manager.ModelServiceProto; import com.webank.ai.fate.serving.core....
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/DynamicLogController.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/DynamicLogController.java
package com.webank.ai.fate.serving.controller; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.core.LoggerContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.*; /** * @author hcy */ @Reque...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/ServerServiceController.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/controller/ServerServiceController.java
package com.webank.ai.fate.serving.controller; import com.google.common.base.Preconditions; import com.google.common.util.concurrent.ListenableFuture; import com.webank.ai.fate.api.networking.common.CommonServiceGrpc; import com.webank.ai.fate.api.networking.common.CommonServiceProto; import com.webank.ai.fate.serving...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/LocalCacheModelLoader.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/LocalCacheModelLoader.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelUtil.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelUtil.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/AbstractModelLoader.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/AbstractModelLoader.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/FateFlowModelLoader.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/FateFlowModelLoader.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/LocalFileModelLoader.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/LocalFileModelLoader.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/SimpleModelLoaderFactory.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/SimpleModelLoaderFactory.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelLoaderFactory.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelLoaderFactory.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelLoader.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelLoader.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelManager.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/model/ModelManager.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
true
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/rpc/BatchInferenceFuture.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/rpc/BatchInferenceFuture.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/rpc/DefaultFederatedRpcInvoker.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/rpc/DefaultFederatedRpcInvoker.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/provider/HostSingleInferenceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/provider/HostSingleInferenceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/provider/HostBatchInferenceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/provider/HostBatchInferenceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostBatchParamInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostBatchParamInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostSingleFeatureAdaptorInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostSingleFeatureAdaptorInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostParamInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostParamInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostModelInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostModelInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostBatchFeatureAdaptorInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/host/interceptors/HostBatchFeatureAdaptorInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/provider/ModelServiceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/provider/ModelServiceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/provider/CommonServiceProvider.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/provider/CommonServiceProvider.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/DefaultPostProcess.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/DefaultPostProcess.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/RequestOverloadBreaker.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/RequestOverloadBreaker.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/AbstractInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/AbstractInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/FederationRouterInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/FederationRouterInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/MonitorInterceptor.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/common/interceptors/MonitorInterceptor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/CacheEventData.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/CacheEventData.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/ErrorEventHandler.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/ErrorEventHandler.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/SingleCacheEventHandler.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/SingleCacheEventHandler.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/BatchCacheEventHandler.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/event/BatchCacheEventHandler.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/HostInferenceService.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/HostInferenceService.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/GuestInferenceService.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/GuestInferenceService.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ServiceOverloadProtectionHandle.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ServiceOverloadProtectionHandle.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/HealthCheckEndPointService.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/HealthCheckEndPointService.java
package com.webank.ai.fate.serving.grpc.service; import com.webank.ai.fate.register.router.RouterService; import com.webank.ai.fate.register.url.URL; import com.webank.ai.fate.register.zookeeper.ZookeeperRegistry; import com.webank.ai.fate.serving.common.health.*; import com.webank.ai.fate.serving.common.model.Model; ...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ServiceExceptionHandler.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ServiceExceptionHandler.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ModelService.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/ModelService.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/CommonService.java
fate-serving-server/src/main/java/com/webank/ai/fate/serving/grpc/service/CommonService.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/DSLParser.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/DSLParser.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/PipelineModelProcessor.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/PipelineModelProcessor.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/OneHotEncoder.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/OneHotEncoder.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroSecureBoostingTreeGuest.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroSecureBoostingTreeGuest.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureSelectionHost.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureSelectionHost.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/PrepareRemoteable.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/PrepareRemoteable.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroLRGuest.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroLRGuest.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Outlier.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Outlier.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/DataTransform.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/DataTransform.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/DataIO.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/DataIO.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/BaseComponent.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/BaseComponent.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinningGuest.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinningGuest.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinning.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinning.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroSecureBoost.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroSecureBoost.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Scale.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Scale.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureSelectionGuest.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureSelectionGuest.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroLRHost.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroLRHost.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinningHost.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFeatureBinningHost.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFMHost.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFMHost.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Imputer.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Imputer.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFM.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/HeteroFM.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false
FederatedAI/FATE-Serving
https://github.com/FederatedAI/FATE-Serving/blob/a25807586a960051b9acd4e0114f94a13ddc90ef/fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Returnable.java
fate-serving-federatedml/src/main/java/com/webank/ai/fate/serving/federatedml/model/Returnable.java
/* * Copyright 2019 The FATE Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
java
Apache-2.0
a25807586a960051b9acd4e0114f94a13ddc90ef
2026-01-05T02:38:33.335296Z
false