Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 830 for reuse (0.06 sec)

  1. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    And it will save the returned value in a <abbr title="A utility/system to store computed/generated values, to reuse them instead of computing them again.">"cache"</abbr> and pass it to all the "dependants" that need it in that specific request, instead of calling the dependency multiple times for the same request.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    	//	  = m.
    	z = z.set(z2)
    
    	// Compute (z₁ - z₂) mod m1 [m1 == 2**n] into z1.
    	z1 = z1.subMod2N(z1, z2, n)
    
    	// Reuse z2 for p = (z₁ - z₂) [in z1] * m2⁻¹ (mod m₁ [= 2ⁿ]).
    	m2inv := nat(nil).modInverse(m2, m1)
    	z2 = z2.mul(z1, m2inv)
    	z2 = z2.trunc(z2, n)
    
    	// Reuse z1 for p * m2.
    	z = z.add(z, z1.mul(z2, m2))
    
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

        }
    
        public boolean isResolved() {
            return resolved;
        }
    
        /**
         * Marks a selector for reuse,
         * indicating it could be used again for resolution
         *
         * @return {@code true} if that selector has been marked for reuse before, {@code false} otherwise
         */
        boolean markForReuse() {
            if (!resolved) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

        private boolean shouldCacheResolutionState() {
            // When there may be more than one configuration defined, cache the component resolution state, so it can be reused for resolving multiple configurations.
            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/LanguageSpecificAdaptor.java

            builder.propertyAssignment(null, "rootProject.name", settings.isUseIncubatingAPIs() ? "build-logic" : "buildSrc");
            builder.useVersionCatalogFromOuterBuild("Reuse version catalog from the main build.");
            return builder;
        }
    
        private BuildScriptBuilder pluginsBuildBuildScriptBuilder(InitSettings settings, BuildContentGenerationContext buildContentGenerationContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 06:07:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/net/writev_test.go

    	c2 := <-ch
    	if c2 == nil {
    		t.Fatal("no server side connection")
    	}
    	c2.Close()
    
    	// 1 GB of data should be enough to notice the connection is gone.
    	// Just a few bytes is not enough.
    	// Arrange to reuse the same 1 MB buffer so that we don't allocate much.
    	buf := make([]byte, 1<<20)
    	buffers := make(Buffers, 1<<10)
    	for i := range buffers {
    		buffers[i] = buf
    	}
    	if _, err := buffers.WriteTo(c1); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    12 actionable tasks: 3 from cache, 9 up-to-date
    ----
    
    Once the local directory has been repopulated, the next execution will mark tasks as `UP-TO-DATE` and not `FROM-CACHE`.
    
    The build cache allows you to share and reuse unchanged build and test outputs across teams.
    This speeds up local and CI builds since cycles are not wasted re-building binaries unaffected by new code changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tests/integration/ambient/cnirepair/main_test.go

    	All echo.Instances
    }
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    // If a test requires a custom install it should go into its own package, otherwise it should go
    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMinVersion(24).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/41008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                client = createNewClient(sftpHost);
            } else {
                client = clientsByHost.remove(0);
                if (!client.isConnected()) {
                    LOGGER.info("Tried to reuse an existing sftp client, but unexpectedly found it disconnected.  Discarding and trying again.");
                    discard(client);
                    client = reuseExistingOrCreateNewClient(sftpHost);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/plugins.go

    // AttemptToLoadRecycler tries decoding a pod from a filepath for use as a recycler for a volume.
    // If successful, this method will set the recycler on the config.
    // If unsuccessful, an error is returned. Function is exported for reuse downstream.
    func AttemptToLoadRecycler(path string, config *volume.VolumeConfig) error {
    	if path != "" {
    		recyclerPod, err := volumeutil.LoadPodFromFile(path)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top