Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,194 for avoided (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          new AtomicReference<>(immediateVoidFuture());
    
      private @LazyInit ThreadConfinedTaskQueue latestTaskQueue = new ThreadConfinedTaskQueue();
    
      /**
       * This object is unsafely published, but avoids problematic races by relying exclusively on the
       * identity equality of its Thread field so that the task field is only accessed by a single
       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    id("java-library")
                    id("maven-publish")
                }
    
                group = 'group'
                version = '1.0'
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. security/pkg/pki/util/keycertbundle.go

    		privKey:        nil,
    		certChainBytes: []byte{},
    		rootCertBytes:  rootCertBytes,
    	}, nil
    }
    
    // GetAllPem returns all key/cert PEMs in KeyCertBundle together. Getting all values together avoids inconsistency.
    func (b *KeyCertBundle) GetAllPem() (certBytes, privKeyBytes, certChainBytes, rootCertBytes []byte) {
    	b.mutex.RLock()
    	certBytes = copyBytes(b.certBytes)
    	privKeyBytes = copyBytes(b.privKeyBytes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    	// Avoid lots of small slice allocations later by allocating one
    	// large one ahead of time which we'll cut up into smaller
    	// slices. If this isn't big enough later, we allocate small ones.
    	var strs []string
    	hint := r.upcomingHeaderKeys()
    	if hint > 0 {
    		if hint > 1000 {
    			hint = 1000 // set a cap to avoid overallocation
    		}
    		strs = make([]string, hint)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Doubles.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is considerably faster and avoids allocation and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(double[] array, int distance) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Doubles.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is considerably faster and avoids allocation and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(double[] array, int distance) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                // Generated script class name must be unique - take advantage of this to avoid delegation
                if (name.startsWith(scriptSource.getClassName())) {
                    // Synchronized to avoid multiple threads attempting to define the same class on a lookup miss
                    synchronized (this) {
                        Class<?> cl = findLoadedClass(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/time/zoneinfo_read.go

    	// First the zone information.
    	//	utcoff[4] isdst[1] nameindex[1]
    	nzone := n[NZone]
    	if nzone == 0 {
    		// Reject tzdata files with no zones. There's nothing useful in them.
    		// This also avoids a panic later when we add and then use a fake transition (golang.org/issue/29437).
    		return nil, errBadData
    	}
    	zones := make([]zone, nzone)
    	for i := range zones {
    		var ok bool
    		var n uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

        }
    
        /**
         * Like {@link #getIncludes()}, but returns a unmodifiable view or empty set.
         *
         * <p>Use this if you are only reading from the set, as it avoids allocating a set if not needed.</p>
         *
         * @return the include patterns, or an empty set if none
         * @since 8.8
         */
        @Incubating
        public Set<String> getIncludesView() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/primitives/Floats.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Floats.asList(array),
       * distance)}, but is considerably faster and avoids allocation and garbage collection.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(float[] array, int distance) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top