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 |
|---|---|---|---|---|---|---|---|---|
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/test/java/com/fnproject/events/coercion/ConnectorHubCoercionTest.java | fn-events/src/test/java/com/fnproject/events/coercion/ConnectorHubCoercionTest.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.APIGatewayCoercion.OM_KEY;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThrows;
import static org.junit.Assert.a... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/test/java/com/fnproject/events/coercion/APIGatewayCoercionTest.java | fn-events/src/test/java/com/fnproject/events/coercion/APIGatewayCoercionTest.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.APIGatewayCoercion.OM_KEY;
import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOExc... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/test/java/com/fnproject/events/coercion/NotificationCoercionTest.java | fn-events/src/test/java/com/fnproject/events/coercion/NotificationCoercionTest.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.APIGatewayCoercion.OM_KEY;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.io.ByteArrayInputStream;
imp... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/test/java/com/fnproject/events/coercion/jackson/Base64ToTypeDeserializerTest.java | fn-events/src/test/java/com/fnproject/events/coercion/jackson/Base64ToTypeDeserializerTest.java | package com.fnproject.events.coercion.jackson;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThrows;
import com.fasterxml.jackson.core.... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/test/java/com/fnproject/events/output/APIGatewayResponseEventTest.java | fn-events/src/test/java/com/fnproject/events/output/APIGatewayResponseEventTest.java | package com.fnproject.events.output;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import java.util.Collections;
import java.util.List;
import com.fnproject.events.testfns.Animal;
import com.fnproject.fn.api.Headers;
import org.junit.Test;
public class APIGatewayResponseEvent... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/NotificationFunction.java | fn-events/src/main/java/com/fnproject/events/NotificationFunction.java | package com.fnproject.events;
import com.fnproject.events.coercion.NotificationCoercion;
import com.fnproject.events.input.NotificationMessage;
import com.fnproject.fn.api.FnConfiguration;
import com.fnproject.fn.api.RuntimeContext;
public abstract class NotificationFunction<T> {
@FnConfiguration
public void... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/ConnectorHubFunction.java | fn-events/src/main/java/com/fnproject/events/ConnectorHubFunction.java | package com.fnproject.events;
import com.fnproject.events.coercion.ConnectorHubCoercion;
import com.fnproject.events.input.ConnectorHubBatch;
import com.fnproject.fn.api.FnConfiguration;
import com.fnproject.fn.api.RuntimeContext;
public abstract class ConnectorHubFunction<T> {
@FnConfiguration
public void c... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/APIGatewayFunction.java | fn-events/src/main/java/com/fnproject/events/APIGatewayFunction.java | package com.fnproject.events;
import com.fnproject.events.coercion.APIGatewayCoercion;
import com.fnproject.events.input.APIGatewayRequestEvent;
import com.fnproject.events.output.APIGatewayResponseEvent;
import com.fnproject.fn.api.FnConfiguration;
import com.fnproject.fn.api.RuntimeContext;
public abstract class AP... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/ConnectorHubBatch.java | fn-events/src/main/java/com/fnproject/events/input/ConnectorHubBatch.java | package com.fnproject.events.input;
import java.util.List;
import java.util.Objects;
import com.fnproject.fn.api.Headers;
public class ConnectorHubBatch<T> {
private final Headers headers;
private final List<T> batch;
public ConnectorHubBatch(List<T> batch, Headers headers) {
this.batch = batch;
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/NotificationMessage.java | fn-events/src/main/java/com/fnproject/events/input/NotificationMessage.java | package com.fnproject.events.input;
import java.util.Objects;
import com.fnproject.fn.api.Headers;
public class NotificationMessage<T> {
private final T content;
private final Headers headers;
public NotificationMessage(T content, Headers headers) {
this.content = content;
this.headers = ... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/APIGatewayRequestEvent.java | fn-events/src/main/java/com/fnproject/events/input/APIGatewayRequestEvent.java | package com.fnproject.events.input;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fnproject.fn.api.Headers;
import com.fnproject.fn.api.QueryParameters;
@JsonIgnoreProperties(ignoreUnknown = true)
public class APIGatewayRequestEvent<T> {
private final QueryPar... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/sch/Datapoint.java | fn-events/src/main/java/com/fnproject/events/input/sch/Datapoint.java | package com.fnproject.events.input.sch;
import java.util.Date;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public final cla... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/sch/StreamingData.java | fn-events/src/main/java/com/fnproject/events/input/sch/StreamingData.java | package com.fnproject.events.input.sch;
import java.util.Date;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeseria... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/sch/LoggingData.java | fn-events/src/main/java/com/fnproject/events/input/sch/LoggingData.java | package com.fnproject.events.input.sch;
import java.util.Date;
import java.util.Map;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = ... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/input/sch/MetricData.java | fn-events/src/main/java/com/fnproject/events/input/sch/MetricData.java | package com.fnproject.events.input.sch;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Metric... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/mapper/APIGatewayRequestEventMapper.java | fn-events/src/main/java/com/fnproject/events/mapper/APIGatewayRequestEventMapper.java | package com.fnproject.events.mapper;
import com.fnproject.events.input.APIGatewayRequestEvent;
import com.fnproject.fn.api.Headers;
import com.fnproject.fn.api.QueryParameters;
import com.fnproject.fn.api.httpgateway.HTTPGatewayContext;
import com.fnproject.fn.runtime.httpgateway.QueryParametersImpl;
public class API... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/mapper/ApiGatewayRequestMapper.java | fn-events/src/main/java/com/fnproject/events/mapper/ApiGatewayRequestMapper.java | package com.fnproject.events.mapper;
import com.fnproject.events.input.APIGatewayRequestEvent;
import com.fnproject.fn.api.httpgateway.HTTPGatewayContext;
public interface ApiGatewayRequestMapper {
<T> APIGatewayRequestEvent<T> toApiGatewayRequestEvent(HTTPGatewayContext context, T body);
}
| java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/coercion/NotificationCoercion.java | fn-events/src/main/java/com/fnproject/events/coercion/NotificationCoercion.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.Util.hasEventFnInHierarchy;
import static com.fnproject.events.coercion.Util.readBodyAsString;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Optional;
import com.fasterxml.jackson.dat... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/coercion/Util.java | fn-events/src/main/java/com/fnproject/events/coercion/Util.java | package com.fnproject.events.coercion;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import com.fnproject.fn.api.InputEvent;
import org.apache.commons.io.IOUtils;
public class Util {
public static boolean hasEventFnInHierarchy(Class<?> targetClass, Class<?> eventClass) {
for (Class... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/coercion/APIGatewayCoercion.java | fn-events/src/main/java/com/fnproject/events/coercion/APIGatewayCoercion.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.Util.hasEventFnInHierarchy;
import static com.fnproject.events.coercion.Util.readBodyAsString;
import static com.fnproject.fn.api.OutputEvent.CONTENT_TYPE_HEADER;
import java.io.IOException;
import java.lang.reflect.ParameterizedType;
i... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/coercion/ConnectorHubCoercion.java | fn-events/src/main/java/com/fnproject/events/coercion/ConnectorHubCoercion.java | package com.fnproject.events.coercion;
import static com.fnproject.events.coercion.Util.hasEventFnInHierarchy;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Optional;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/coercion/jackson/Base64ToTypeDeserializer.java | fn-events/src/main/java/com/fnproject/events/coercion/jackson/Base64ToTypeDeserializer.java | package com.fnproject.events.coercion.jackson;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.core.ObjectCodec;
import com.fasterxml.jackson.databind.BeanProperty;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxm... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events/src/main/java/com/fnproject/events/output/APIGatewayResponseEvent.java | fn-events/src/main/java/com/fnproject/events/output/APIGatewayResponseEvent.java | package com.fnproject.events.output;
import com.fnproject.fn.api.Headers;
public class APIGatewayResponseEvent<T> {
private final T body;
private final Integer statusCode;
private final Headers headers;
private APIGatewayResponseEvent(T body, Integer statusCode, Headers headers) {
this.header... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionLoaderTest.java | fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionLoaderTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionInvokerTest.java | fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionInvokerTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionInvokerIntegrationTest.java | fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/SpringCloudFunctionInvokerIntegrationTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/testfns/FunctionConfig.java | fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/testfns/FunctionConfig.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/testfns/EmptyFunctionConfig.java | fn-spring-cloud-function/src/test/java/com/fnproject/springframework/function/testfns/EmptyFunctionConfig.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SimpleTypeWrapper.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SimpleTypeWrapper.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionFeature.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionFeature.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionInvoker.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionInvoker.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionLoader.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/SpringCloudFunctionLoader.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/exception/SpringCloudFunctionNotFoundException.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/exception/SpringCloudFunctionNotFoundException.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudMethod.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudMethod.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudSupplier.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudSupplier.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudConsumer.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudConsumer.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudFunction.java | fn-spring-cloud-function/src/main/java/com/fnproject/springframework/function/functions/SpringCloudFunction.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/testing-junit4/src/test/java/com/fnproject/fn/testing/FnTestingRuleTest.java | testing-junit4/src/test/java/com/fnproject/fn/testing/FnTestingRuleTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/testing-junit4/src/main/java/com/fnproject/fn/testing/FnTestingRule.java | testing-junit4/src/main/java/com/fnproject/fn/testing/FnTestingRule.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/testing-junit4/src/main/java/com/fnproject/fn/testing/FnEventBuilderJUnit4.java | testing-junit4/src/main/java/com/fnproject/fn/testing/FnEventBuilderJUnit4.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/testing-junit4/src/main/java/com/fnproject/fn/testing/FnTestingRuleFeature.java | testing-junit4/src/main/java/com/fnproject/fn/testing/FnTestingRuleFeature.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/FlowsContinuationInvokerTest.java | flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/FlowsContinuationInvokerTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/TestBlobStore.java | flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/TestBlobStore.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/RemoteFlowApiClientTest.java | flow-runtime/src/test/java/com/fnproject/fn/runtime/flow/RemoteFlowApiClientTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/test/java/com/fnproject/fn/testing/flowtestfns/FnFlowsFunction.java | flow-runtime/src/test/java/com/fnproject/fn/testing/flowtestfns/FnFlowsFunction.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompleterClient.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompleterClient.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/BlobResponse.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/BlobResponse.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/HttpClient.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/HttpClient.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompletionId.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompletionId.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowContinuationInvoker.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowContinuationInvoker.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/BlobStoreClient.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/BlobStoreClient.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/APIModel.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/APIModel.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/DefaultHttpResponse.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/DefaultHttpResponse.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteFlowApiClient.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteFlowApiClient.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CodeLocation.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CodeLocation.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteFlow.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteFlow.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowRuntimeGlobals.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowRuntimeGlobals.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/JsonInvoke.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/JsonInvoke.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowId.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowId.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteBlobStoreClient.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/RemoteBlobStoreClient.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/EntityReader.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/EntityReader.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompleterClientFactory.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/CompleterClientFactory.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowFeature.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowFeature.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowFutureSource.java | flow-runtime/src/main/java/com/fnproject/fn/runtime/flow/FlowFutureSource.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/test/java/com/fnproject/events/testing/Animal.java | fn-events-testing/src/test/java/com/fnproject/events/testing/Animal.java | package com.fnproject.events.testing;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Animal {
private final String name;
private final int age;
@JsonCreator
public Animal(@JsonProperty("name") String na... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/test/java/com/fnproject/events/testing/NotificationTestFeatureTest.java | fn-events-testing/src/test/java/com/fnproject/events/testing/NotificationTestFeatureTest.java | package com.fnproject.events.testing;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import com.fnproject.events.input.NotificationMessage;
import com.fnproject.fn.api.Headers;
import com.fnproject.fn.api.InputEvent;
import com.fnproject.fn.testing.Fn... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/test/java/com/fnproject/events/testing/APIGatewayTestFeatureTest.java | fn-events-testing/src/test/java/com/fnproject/events/testing/APIGatewayTestFeatureTest.java | package com.fnproject.events.testing;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fnproject.events.input.APIGa... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/test/java/com/fnproject/events/testing/ConnectorHubTestFeatureTest.java | fn-events-testing/src/test/java/com/fnproject/events/testing/ConnectorHubTestFeatureTest.java | package com.fnproject.events.testing;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.fnproject.events.input.ConnectorHubBatch;
import com.f... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/main/java/com/fnproject/events/testing/ConnectorHubTestFeature.java | fn-events-testing/src/main/java/com/fnproject/events/testing/ConnectorHubTestFeature.java | package com.fnproject.events.testing;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fnproject.events.input.ConnectorHubBatch;
import com.fnproject.fn.api.Input... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/main/java/com/fnproject/events/testing/APIGatewayTestFeature.java | fn-events-testing/src/main/java/com/fnproject/events/testing/APIGatewayTestFeature.java | package com.fnproject.events.testing;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import ja... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/fn-events-testing/src/main/java/com/fnproject/events/testing/NotificationTestFeature.java | fn-events-testing/src/main/java/com/fnproject/events/testing/NotificationTestFeature.java | package com.fnproject.events.testing;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fnproject.events.input.ConnectorHubBatch;
import com.fnproject.events.input... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/not/in/com/fnproject/fn/StacktraceFilteringTestFunctions.java | runtime/src/test/java/not/in/com/fnproject/fn/StacktraceFilteringTestFunctions.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/DataBindingTest.java | runtime/src/test/java/com/fnproject/fn/runtime/DataBindingTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/ErrorMessagesTest.java | runtime/src/test/java/com/fnproject/fn/runtime/ErrorMessagesTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/JacksonCoercionTest.java | runtime/src/test/java/com/fnproject/fn/runtime/JacksonCoercionTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/HeaderBuilder.java | runtime/src/test/java/com/fnproject/fn/runtime/HeaderBuilder.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/FunctionConstructionTest.java | runtime/src/test/java/com/fnproject/fn/runtime/FunctionConstructionTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/QueryParametersParserTest.java | runtime/src/test/java/com/fnproject/fn/runtime/QueryParametersParserTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/EndToEndInvokeTest.java | runtime/src/test/java/com/fnproject/fn/runtime/EndToEndInvokeTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/FnTestHarness.java | runtime/src/test/java/com/fnproject/fn/runtime/FnTestHarness.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/MethodWrapperTests.java | runtime/src/test/java/com/fnproject/fn/runtime/MethodWrapperTests.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/ConfigurationMethodsTest.java | runtime/src/test/java/com/fnproject/fn/runtime/ConfigurationMethodsTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/HTTPStreamCodecTest.java | runtime/src/test/java/com/fnproject/fn/runtime/HTTPStreamCodecTest.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/tracing/OCITracingContextTest.java | runtime/src/test/java/com/fnproject/fn/runtime/tracing/OCITracingContextTest.java | package com.fnproject.fn.runtime.tracing;
import com.fnproject.fn.api.Headers;
import com.fnproject.fn.api.InvocationContext;
import com.fnproject.fn.api.MethodWrapper;
import com.fnproject.fn.runtime.FunctionRuntimeContext;
import org.junit.Rule;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.Mock... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithNoUserCoercions.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithNoUserCoercions.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithAnnotation.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithAnnotation.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/Animal.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/Animal.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithDudCoercion.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithDudCoercion.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithNoUserCoercions.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithNoUserCoercions.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithAnnotation.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithAnnotation.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithMultipleCoercions.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithMultipleCoercions.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/ErrorMessages.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/ErrorMessages.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFn.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFn.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithConfig.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithConfig.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFnConstructors.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFnConstructors.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithAnnotationAndConfig.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithAnnotationAndConfig.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFnWithConfigurationMethods.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/TestFnWithConfigurationMethods.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithConfig.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomDataBindingFnWithConfig.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithDudCoercion.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/CustomOutputDataBindingFnWithDudCoercion.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
fnproject/fdk-java | https://github.com/fnproject/fdk-java/blob/6275fbbe73c167c221e8be5ab4b838c68966ea5e/runtime/src/test/java/com/fnproject/fn/runtime/testfns/BadTestFnDuplicateMethods.java | runtime/src/test/java/com/fnproject/fn/runtime/testfns/BadTestFnDuplicateMethods.java | /*
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. 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
*
... | java | Apache-2.0 | 6275fbbe73c167c221e8be5ab4b838c68966ea5e | 2026-01-05T02:37:41.914759Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.