Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 830 for reuse (0.07 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            for (entry in entryDetails) {
                val identityPath = projectPathForKey(entry.key)
                if (identityPath == null || !checkedFingerprint.invalidProjects.contains(identityPath)) {
                    // Can reuse the value
                    previousValues[entry.key] = entry.value
                }
            }
        }
    
        fun visitProjects(reusedProjects: Consumer<Path>, updatedProjects: Consumer<Path>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/ready/probe.go

    )
    
    // Probe for readiness.
    type Probe struct {
    	LocalHostAddr       string
    	AdminPort           uint16
    	receivedFirstUpdate bool
    	// Indicates that Envoy is ready at least once so that we can cache and reuse that probe.
    	atleastOnceReady bool
    	Context          context.Context
    	// NoEnvoy so we only check config status
    	NoEnvoy bool
    }
    
    type Prober interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/c/while_loop_test.cc

                  "BuildWhileLoop: 'cond' argument must return a boolean output, "
                  "got int32");
    }
    
    TEST_F(CApiWhileLoopTest, InvalidCondOutputNode) {
      Init(1);
      // Try to reuse node from parent graph
      params_->cond_output = inputs_[0];
      params_->body_outputs[0] = params_->body_inputs[0];
      // TODO(skyewm): this error message could be more informative. Add explicit
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/repo.go

    	// ModulePath returns the module path.
    	ModulePath() string
    
    	// CheckReuse checks whether the validation criteria in the origin
    	// are still satisfied on the server corresponding to this module.
    	// If so, the caller can reuse any cached Versions or RevInfo containing
    	// this origin rather than redownloading those from the server.
    	CheckReuse(ctx context.Context, old *codehost.Origin) error
    
    	// Versions lists all known versions with the given prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            if (called) {
                throw new IllegalStateException("Cannot reuse a compilation task");
            }
            called = true;
            try {
                setupProcessors();
                return delegate.call();
            } finally {
                cleanupProcessors();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

            return cacheEntries.isEmpty();
        }
    
        /**
         * Provides execution of arbitrary code that consumes a cached class loader in a memory safe manner,
         * that is to say making sure that concurrent calls reuse the same classloader, or that the class loader
         * is retrieved from cache if available.
         *
         * It will also make sure that once a cached class loader is unused and removed from cache, memory cleanup
         * is done.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/util_test.go

    	if err != nil {
    		t.Fatalf("failed to configure *http.Transport: %+v", err)
    	}
    	t2.ReadIdleTimeout = time.Second
    	t2.PingTimeout = time.Second
    	// Create an HTTP2 connection to reuse later
    	resp, err := c.Get("https://" + lb.ln.Addr().String())
    	if err != nil {
    		t.Fatalf("unexpected error: %+v", err)
    	}
    	defer resp.Body.Close()
    	data, err := io.ReadAll(resp.Body)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

            return new LinkMetaData(methodMetaData.style, displayName, urlFragment);
        }
    
        private MethodLinkMetaData findMethod(String method) {
            if (method.endsWith("...)")) {
                // Should reuse the link parsing stuff from JavadocLinkConverter instead
                method = method.substring(0, method.length() - 4) + "[])";
            }
    
            MethodLinkMetaData metaData = methods.get(method);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_libinit.c

    	// We assume this will always succeed, otherwise, there might be extra M leaking,
    	// when a C thread exits after a cgo call.
    	// We only invoke this function once per thread in runtime.needAndBindM,
    	// and the next calls just reuse the bound m.
    	pthread_setspecific(pthread_g, g);
    }
    
    void
    x_cgo_notify_runtime_init_done(void* dummy __attribute__ ((unused))) {
    	pthread_mutex_lock(&runtime_init_mu);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

     * <li>Configure the builder as appropriate.
     * <li>Call either {@link #get()} or {@link #get(ResultHandler)} to build the model.
     * <li>Optionally, you can reuse the builder to build the model multiple times.
     * </ul>
     *
     * Example:
     * <pre class='autoTested'>
     * ProjectConnection connection = GradleConnector.newConnector()
     *    .forProjectDirectory(new File("someFolder"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top