Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for picard (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         *
         * <p>This method can also be used to discard the value of the property, by passing {@code null} as the value.
         * The convention for this property, if any, will be used to provide the value instead.
         *
         * @param elements The elements, can be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    		if k.obj != nil {
    			path, err := encoder.For(k.obj)
    			if err != nil {
    				if debug {
    					log.Printf("discarding fact %s about %s\n", fact, k.obj)
    				}
    				continue // object not accessible from package API; discard fact
    			}
    			object = path
    		}
    		gobFacts = append(gobFacts, gobFact{
    			PkgPath: k.pkg.Path(),
    			Object:  object,
    			Fact:    fact,
    		})
    	}
    	s.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    func Benchmark(f func(b *B)) BenchmarkResult {
    	b := &B{
    		common: common{
    			signal: make(chan bool),
    			w:      discard{},
    		},
    		benchFunc: f,
    		benchTime: benchTime,
    	}
    	if b.run1() {
    		b.run()
    	}
    	return b.result
    }
    
    type discard struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

            protected void queue(T message) {
                if (failure.get() == null) {
                    events.add(message);
                }
                // else, the handler thread is no longer handling messages so discard it
            }
    
            @Override
            public void close() {
                events.add(END);
                executor.stop(60, TimeUnit.SECONDS);
                Exception failure = this.failure.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. cmd/metacache-entries.go

    					if other.isDir() {
    						if serverDebugLog {
    							console.Debugln("mergeEntryChannels: discarding directory", other.name, "for object", best.name)
    						}
    						// Discard the directory.
    						if err := selectFrom(otherIdx); err != nil {
    							return err
    						}
    						continue
    					}
    					// Replace directory with object.
    					if serverDebugLog {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        waitForDataFrames(Http2Connection.OKHTTP_CLIENT_WINDOW_SIZE)
    
        // Cancel the call and discard what we've buffered for the response body. This should free up
        // the connection flow-control window so new requests can proceed.
        call1.cancel()
        assertThat(
          response1.body.source().discard(1, TimeUnit.SECONDS),
          "Call should not have completed successfully.",
        ).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

                try {
                    if (done) {
                        // Already calculated
                        return;
                    }
                    done = true;
    
                    // Attach result and discard calculation state
                    owner.result = Try.ofFailable(() -> {
                        NodeExecutionContext effectiveContext = context;
                        if (effectiveContext == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

        }
    
        @Override
        public void maybeDiscardStateRequiredForGraphResolution() {
            if (!keepStateRequiredForGraphResolution) {
                dependencySubstitutions.discard();
            }
        }
    
        @Override
        public void setMutationValidator(MutationValidator validator) {
            mutationValidator = validator;
            cachePolicy.setMutationValidator(validator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return isSameOrNewer("3.2") && !(isSameOrNewer("4.0") && isSameOrOlder("4.0.2"));
        }
    
        @Override
        boolean isToolingApiHasCauseOnForcedCancel() {
            // Versions before 5.1 would discard context on forced cancel
            return isSameOrNewer("5.1-rc-1");
        }
    
        @Override
        boolean isToolingApiLogsFailureOnCancel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top