Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,706 for tffunction (0.23 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepConcurrencyTest.groovy

    import org.gradle.internal.execution.workspace.ImmutableWorkspaceProvider
    
    import java.time.Duration
    import java.util.concurrent.CountDownLatch
    import java.util.function.BiFunction
    
    class AssignImmutableWorkspaceStepConcurrencyTest extends StepSpecBase<IdentityContext> {
        def workspacesRoot = temporaryFolder.file("workspaces").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

    import java.util.Collection;
    import java.util.Enumeration;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Properties;
    import java.util.Set;
    import java.util.function.BiConsumer;
    import java.util.function.BiFunction;
    import java.util.function.Function;
    
    /**
     * A wrapper for {@link Properties} that notifies a listener about accesses.
     */
    @SuppressWarnings("UnsynchronizedOverridesSynchronized")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental.cc

      return ret;
    }
    
    char* TF_FunctionDebugString(TF_Function* func, size_t* len) {
      const auto& debug_str = DebugString(func->record->fdef());
      *len = debug_str.size();
      char* ret = static_cast<char*>(malloc(*len + 1));
      memcpy(ret, debug_str.c_str(), *len + 1);
      return ret;
    }
    
    // On success, returns a set of TF_Function instances from `text_proto` of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.bifunction;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.transformer;
    
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public class DefaultFilePropertyFactory implements FilePropertyFactory, FileFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={}...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

        }
    
        @Override
        public int size() {
            return (int) entry.getSize();
        }
    
        @Override
        public byte[] getContent() throws IOException {
            return withInputStream(new IoFunction<InputStream, byte[]>() {
                @Override
                public byte[] apply(InputStream inputStream) throws IOException {
                    int size = size();
                    if (size >= 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProviderFactory.java

    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.concurrent.Callable;
    import java.util.function.BiFunction;
    
    public class DefaultProviderFactory implements ProviderFactory {
        @Nullable
        private final ValueSourceProviderFactory valueSourceProviderFactory;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

    import org.gradle.internal.snapshot.CaseSensitivity;
    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.function.BiFunction;
    import java.util.function.Supplier;
    
    
    @ThreadSafe
    public class ExecutionNodeAccessHierarchy {
        private volatile ValuedVfsHierarchy<NodeAccess> root;
        private final SingleFileTreeElementMatcher matcher;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            AGENT(ClasspathElementTransformFactoryForAgent::new),
            LEGACY(ClasspathElementTransformFactoryForLegacy::new);
    
            private final BiFunction<ClasspathBuilder, ClasspathWalker, ClasspathElementTransformFactory> factoryMaker
    
            TransformFactoryType(BiFunction<ClasspathBuilder, ClasspathWalker, ClasspathElementTransformFactory> factoryMaker) {
                this.factoryMaker = factoryMaker
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/runtime/hash32.go

    // license that can be found in the LICENSE file.
    
    // Hashing algorithm inspired by
    // wyhash: https://github.com/wangyi-fudan/wyhash/blob/ceb019b530e2c1c14d70b79bfa2bc49de7d95bc1/Modern%20Non-Cryptographic%20Hash%20Function%20and%20Pseudorandom%20Number%20Generator.pdf
    
    //go:build 386 || arm || mips || mipsle
    
    package runtime
    
    import "unsafe"
    
    func memhash32Fallback(p unsafe.Pointer, seed uintptr) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top