Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,992 for ONCE (0.03 sec)

  1. releasenotes/notes/48818.yaml

    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/TimeoutHandler.java

    public interface TimeoutHandler extends Stoppable {
        /**
         * Starts a timeout for the given thread. The thread is interrupted if the given timeout is exceeded.
         * The returned {@link Timeout} object must be used to stop the timeout once the thread has completed
         * the work that this timeout was supposed to limit, otherwise it may be interrupted doing
         * some other work later.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

         */
        ExecHandleBuilder redirectErrorStream();
    
        ExecHandleBuilder setDisplayName(String displayName);
    
        /**
         * When true, spawn the process. That is, start the process and leave it running once successfully started. When false, fork the process (the default). That is, start the process and wait for it to complete.
         */
        ExecHandleBuilder setDaemon(boolean daemon);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/CachingLibraryBinaryLocatorTest.groovy

    class CachingLibraryBinaryLocatorTest extends Specification {
        def target = Mock(LibraryBinaryLocator)
        def locator = new CachingLibraryBinaryLocator(target, TestUtil.domainObjectCollectionFactory())
    
        def "locates library once and reuses result for subsequent lookups"() {
            def lib = new LibraryIdentifier("project", "lib")
            def bins = Stub(DomainObjectSet)
    
            when:
            def bins1 = locator.getBinaries(lib)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ArtifactResolutionOmittingOutputNormalizer.groovy

                } else if (!seenWarning && !Jvm.current().javaVersion.java7Compatible && line == 'Support for reading or changing file permissions is only available on this platform using Java 7 or later.') {
                    // ignore this warning once only on java < 7
                    seenWarning = true
                } else {
                    result << line
                }
            }
            return result.join("\n")
        }
    
        String normalize(String output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. internal/etag/reader.go

    // A Reader wraps an io.Reader and computes the
    // MD5 checksum of the read content as ETag.
    //
    // Optionally, a Reader can also verify that
    // the computed ETag matches an expected value.
    // Therefore, it compares both ETags once the
    // underlying io.Reader returns io.EOF.
    // If the computed ETag does not match the
    // expected ETag then Read returns a VerifyError.
    //
    // Reader implements the Tagger interface.
    type Reader struct {
    	src io.Reader
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    	if err != nil {
    		return nil, fmt.Errorf("error creating storage factory: %v", err)
    	}
    	var once sync.Once
    	return &peerEndpointLeaseReconciler{
    		serverLeases: &peerEndpointLeases{
    			storage:   leaseStorage,
    			destroyFn: func() { once.Do(destroyFn) },
    			baseKey:   baseKey,
    			leaseTime: leaseTime,
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/InvalidatableSet.java

        // unless it's actually going to be used; validate() is called for all set method calls, so it
        // needs to be fast.
        // (We could instead generate the message once, when the set is created, but zero is better.)
        if (!validator.get()) {
          throw new IllegalStateException(errorMessage.get());
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_deadline.txt

    package fuzz_test
    
    import (
    	"flag"
    	"testing"
    )
    
    var wantDeadline = flag.Bool("wantdeadline", false, "whether the test should have a deadline")
    
    func FuzzDeadline(f *testing.F) {
    	f.Add("run once")
    	f.Fuzz(func (t *testing.T, _ string) {
    		if _, hasDeadline := t.Deadline(); hasDeadline != *wantDeadline {
    			t.Fatalf("function got %v; want %v", hasDeadline, *wantDeadline)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

        @Override
        public byte[] toByteArray() {
            return hashCode.toByteArray();
        }
    
        @Deprecated
        @Override
        public String getDisplayName() {
            // TODO Switch to SimpleBuildCacheKey once this method is removed
            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top