Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for dedupes (0.11 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			panic("pruning is not workspace in workspace mode")
    		}
    		mg.g.Require(MainModules.mustGetSingleMainModule(), roots)
    	}
    
    	type dedupKey struct {
    		m       module.Version
    		pruning modPruning
    	}
    	var (
    		loadQueue = par.NewQueue(runtime.GOMAXPROCS(0))
    		loading   sync.Map // dedupKey → nil; the set of modules that have been or are being loaded
    	)
    
    	// loadOne synchronously loads the explicit requirements for module m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

        return getUninterruptibly(future);
      }
    
      /**
       * Returns the result of {@link Future#get()}, converting most exceptions to a new instance of the
       * given checked exception type. This reduces boilerplate for a common use of {@code Future} in
       * which it is unnecessary to programmatically distinguish between exception types or to extract
       * other information from the exception instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    			// for an inner byte of a memory block.
    			//
    			// The main targets of tiny allocator are small strings and
    			// standalone escaping variables. On a json benchmark
    			// the allocator reduces number of allocations by ~12% and
    			// reduces heap size by ~20%.
    			off := c.tinyoffset
    			// Align tiny pointer for required (conservative) alignment.
    			if size&7 == 0 {
    				off = alignUp(off, 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

        return getUninterruptibly(future);
      }
    
      /**
       * Returns the result of {@link Future#get()}, converting most exceptions to a new instance of the
       * given checked exception type. This reduces boilerplate for a common use of {@code Future} in
       * which it is unnecessary to programmatically distinguish between exception types or to extract
       * other information from the exception instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          // template parameter would deduce to 'long', making this a better match
          // than the first overload even without the first overload's EnableIf.
          // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to
          // non-pointer argument" (even a deduced integral argument), so the old
          // implementation caused warnings in user code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

          // template parameter would deduce to 'long', making this a better match
          // than the first overload even without the first overload's EnableIf.
          // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to
          // non-pointer argument" (even a deduced integral argument), so the old
          // implementation caused warnings in user code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    // control dependence) into an instance of the Predicate class.  Instances of
    // Predicate denote logical formulas and mapping a node `n` to a predicate
    // `pred` implies that `n` is live whenever `pred` is true.  Then we can deduce
    // mismatching liveness in the inputs to node by comparing the predicate those
    // inputs are mapped to.  The core logic of this pass resides in creating the
    // map from TensorFlow nodes to predicates.
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	return
    }
    
    // pruneInitContainersBeforeStart ensures that before we begin creating init
    // containers, we have reduced the number of outstanding init containers still
    // present. This reduces load on the container garbage collector by only
    // preserving the most recent terminated init container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    include::{snippetsPath}/native-binaries/multi-project/groovy/exe/build.gradle[]
    ----
    
    
    [[native_binaries:preCompiledHeaders]]
    == Precompiled Headers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top