Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for Hashing (0.42 sec)

  1. src/cmd/go/alldocs.go

    // If a run of go test has any test or non-test flags outside this set,
    // the result is not cached. To disable test caching, use any test flag
    // or argument other than the cacheable flags. The idiomatic way to disable
    // test caching explicitly is to use -count=1. Tests that open files within
    // the package's source root (usually $GOPATH) or that consult environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            }
            """
        }
    
        protected String emptyJavaClasspath() {
            """
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
            """
        }
    
        // Helpers for writing buildscripts using a common syntax
    
        String renderString(String content) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// incompatibility between ETXTBSY and threads on modern Unix systems.
    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    	// for test result caching, but passing rewrite=false (final arg)
    	// means we don't actually rewrite the binary, nor store the
    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.welcomeMessageConfiguration = welcomeMessageConfiguration;
        }
    
        /**
         * Returns true if configuration caching has been requested. Note that the configuration cache may not necessarily be used even when requested, for example
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * aren't annotated nullable (according to the rules of {@link NullPointerTester}). In details:
       *
       * <ul>
       *   <li>All non-private static methods are checked such that passing null for any parameter
       *       that's not annotated nullable should throw {@link NullPointerException}.
       *   <li>If there is any non-private constructor or non-private static factory method declared by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    // SniDnat clusters do not have any TLS setting, as they simply forward traffic to upstream
    // All SniDnat clusters are internal services in the mesh.
    // TODO enable cache - there is no blockers here, skipped to simplify the original caching implementation
    func (configgen *ConfigGeneratorImpl) buildOutboundSniDnatClusters(proxy *model.Proxy, req *model.PushRequest,
    	cp clusterPatcher,
    ) []*cluster.Cluster {
    	clusters := make([]*cluster.Cluster, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return dependencyState;
            }
    
            DependencySubstitutionInternal details = substitutionResult.getResult();
            if (details != null && details.isUpdated()) {
                // This caching works because our substitutionResult are cached themselves
                return dependencyState.withSubstitution(substitutionResult, result -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    // equivalent, they may be Go identical or at least assignable, or
    // they may be in the type set of a constraint.
    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    const (
    	// Upper limit for recursion depth. Used to catch infinite recursions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		// such as in the expansion of a slice initializer. These indexes are
    		// compiler-generated, not Go program variables, so they cannot be
    		// attacker-controlled, so we can omit Spectre masking as well.
    		//
    		// Note that we do not want to omit Spectre masking in code like:
    		//
    		//	if 0 <= i && i < len(x) {
    		//		use(x[i])
    		//	}
    		//
    		// Lucky for us, bounded==false for that code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            checkPluginVersions(lineage, request, problems);
    
            // inheritance assembly
            Model resultModel = assembleInheritance(lineage, request, problems);
    
            // consider caching inherited model
    
            problems.setSource(resultModel);
            problems.setRootModel(resultModel);
    
            // model interpolation
            resultModel = interpolateModel(resultModel, request, problems);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top