Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for reuse (0.14 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    }
    
    // pack appends the wire format of the Name to msg.
    //
    // Domain names are a sequence of counted strings split at the dots. They end
    // with a zero-length string. Compression can be used to reuse domain suffixes.
    //
    // The compression map will be updated with new domain suffixes. If compression
    // is nil, compression will not be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// therefore are "<namespace>/<name>".
    	//
    	// This is necessary to ensure that reconstructing the resource usage
    	// at the start of a pod scheduling cycle doesn't reuse the resources
    	// assigned to such a claim. Alternatively, claim allocation state
    	// could also get tracked across pod scheduling cycles, but that
    	// - adds complexity (need to carefully sync state with informer events
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If they are not the same, Gradle executes the task.
    Gradle persists both fingerprints for the next time the task is executed.
    
    If the stats of a file (i.e. `lastModified` and `size`) did not change, Gradle will reuse the file's fingerprint from the previous run.
    That means that Gradle does not detect changes when the stats of a file did not change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The `Provider` based APIs are still the recommended way to connect external values to task inputs for maximum configuration cache reuse.
    
    ==== `ConfigurableReport#setDestination(org.gradle.api.provider.Provider<java.io.File>)` has been deprecated
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    					// any safepoint. Just use a type big enough to hold any register.
    					t := LocalSlot{N: e.s.f.NewLocal(c.Pos, types.Int64), Type: types.Int64}
    					// TODO: reuse these slots. They'll need to be erased first.
    					e.set(t, vid, x, false, c.Pos)
    					if e.s.f.pass.debug > regDebug {
    						fmt.Printf("  SPILL %s->%s %s\n", r, t, x.LongString())
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
            outputContains("Configuration cache entry reused with 4 problems.")
        }
    
        def "configuration time problems are reported and fail the build by default only when configuration is executed invalidating the cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// request renegotiation.
    	RenegotiateFreelyAsClient
    )
    
    // A Config structure is used to configure a TLS client or server.
    // After one has been passed to a TLS function it must not be
    // modified. A Config may be reused; the tls package will also not
    // modify it.
    type Config struct {
    	// Rand provides the source of entropy for nonces and RSA blinding.
    	// If Rand is nil, TLS uses the cryptographic random reader in package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                singleStep('lib.jar','slf4j-api-1.7.25.jar', 'common.jar', 'common2.jar'),
            )
        }
    
        def "reuses result of transform of external dependency with different upstream dependencies when transform does not consume upstream dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable sorted maps, the {@code ImmutableSortedMap.of()} methods are even
       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable sorted maps, the {@code ImmutableSortedMap.of()} methods are even
       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top