Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 587 for ONCE (0.03 sec)

  1. src/go/types/check_test.go

    // testFiles type-checks the package consisting of the given files, and
    // compares the resulting errors with the ERROR annotations in the source.
    // Except for manual tests, each package is type-checked twice, once without
    // use of Alias types, and once with Alias types.
    //
    // The srcs slice contains the file content for the files named in the
    // filenames slice. The colDelta parameter specifies the tolerance for position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/types.go

    	// certificate is populated with an issued certificate by the signer after an Approved condition is present.
    	// This field is set via the /status subresource. Once populated, this field is immutable.
    	//
    	// If the certificate signing request is denied, a condition of type "Denied" is added and this field remains empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    | `minio_bucket_replication_last_hour_failed_bytes`                   | `gauge`   | Total number of bytes failed at least once to replicate in the last hour on a bucket        | `bucket,server`                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	// dc is owned until close, at which point
    	// it's returned to the connection pool.
    	dc *driverConn
    
    	// done transitions from false to true exactly once, on close.
    	// Once done, all operations fail with ErrConnDone.
    	done atomic.Bool
    
    	releaseConnOnce sync.Once
    	// releaseConnCache is a cache of c.closemuRUnlockCondReleaseConn
    	// to save allocations in a call to grabConn.
    	releaseConnCache releaseConn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        }
      }
    
      public void testVerifyGetsCalled() {
        TesterThatCountsCalls tester = new TesterThatCountsCalls();
    
        tester.test();
    
        assertEquals(
            "Should have verified once per stimulus executed",
            tester.numCallsToVerify,
            tester.numCallsToNewTargetIterator * STEPS);
      }
    
      public void testVerifyCanThrowAssertionThatFailsTest() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * If another handleException() caller created the set, we need to use that copy in case yet
           * other callers have added to it.
           *
           * This read is guaranteed to get us the right value because we only set this once (here).
           *
           * requireNonNull is safe because either our compareAndSet succeeded or it failed because
           * another thread did it for us.
           */
          seenExceptionsLocal = requireNonNull(seenExceptions);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/internal/trace/mud.go

    	// trackBucket is the bucket in which trackMass falls. If the
    	// total mass of the distribution is < trackMass, this is
    	// len(hist).
    	trackBucket int
    	// trackSum is the cumulative sum of hist[:trackBucket]. Once
    	// trackSum >= trackMass, trackBucket must be recomputed.
    	trackSum float64
    
    	// hist is a hierarchical histogram of distribution mass.
    	hist [mudDegree]float64
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/net/dnsclient.go

    	// character is a dot.
    	l := len(s)
    	if l == 0 || l > 254 || l == 254 && s[l-1] != '.' {
    		return false
    	}
    
    	last := byte('.')
    	nonNumeric := false // true once we've seen a letter or hyphen
    	partlen := 0
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		switch {
    		default:
    			return false
    		case 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || c == '_':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// The alternative policy is `Parallel` which will create pods in parallel
    	// to match the desired scale without waiting, and on scale down will delete
    	// all pods at once.
    	// +optional
    	PodManagementPolicy PodManagementPolicyType `json:"podManagementPolicy,omitempty" protobuf:"bytes,6,opt,name=podManagementPolicy,casttype=PodManagementPolicyType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Consumers will instead see the versions that your release resolved.
    
    Locking is enabled per <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,dependency configuration>>.
    Once enabled, you must create an initial lock state.
    It will cause Gradle to verify that resolution results do not change, resulting in the same selected dependencies even if newer versions are produced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top