Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for hashed (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("files 2: [lib1.jar.hash, lib2.jar.hash, lib3.jar.hash, lib4-1.0.jar.hash]") == 2
            output.count("artifacts 2: [lib1.jar.hash (project :lib), lib2.jar.hash (project :lib), lib3.jar.hash (lib3.jar), lib4-1.0.jar.hash (org.test.foo:lib4:1.0)]") == 2
            output.count("components 2: [project :lib, project :lib, lib3.jar, org.test.foo:lib4:1.0]") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return "", fmt.Errorf("loading cached file %s: %w", name, err)
    	}
    	return file, nil
    }
    
    func (b *Builder) loadCachedObjdirFile(a *Action, c cache.Cache, name string) error {
    	cached, err := b.findCachedObjdirFile(a, c, name)
    	if err != nil {
    		return err
    	}
    	return b.Shell(a).CopyFile(a.Objdir+name, cached, 0666, true)
    }
    
    func (b *Builder) cacheCgoHdr(a *Action) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    artifacts { compile jar1, jar2 }
                }
    
                abstract class Hasher implements TransformAction<TransformParameters.None> {
                    private int count
    
                    Hasher() {
                        println "Creating Transform"
                    }
    
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			if err != nil {
    				t.Fatalf("Unexpected error: %v", err)
    			}
    			milestones = nil
    			registry.Decorator = tc.decorator
    			ttlFailDone = false
    			registry.TTLFunc = tc.ttl
    			// force storage to use a cached object with a non-matching resourceVersion to guarantee a live lookup + retry
    			created.(*example.Pod).ResourceVersion += "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"houses":                               "\U0001f3d8\ufe0f",
    	"hugs":                                 "\U0001f917",
    	"hungary":                              "\U0001f1ed\U0001f1fa",
    	"hushed":                               "\U0001f62f",
    	"hut":                                  "\U0001f6d6",
    	"ice_cream":                            "\U0001f368",
    	"ice_cube":                             "\U0001f9ca",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		// updated during the eviciton (due to either node resource pressure or
    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    		if _, condition := podutil.GetPodConditionFromList(oldPodStatus.Conditions, cType); condition != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertRequestHeader("Accept-Charset", "UTF-8")
          .assertSentRequestAtMillis(request1SentAt, request1ReceivedAt)
          .assertReceivedResponseAtMillis(request1SentAt, request1ReceivedAt)
    
        // Check the cached response. Its request contains only the saved Vary headers.
        cacheHit.cacheResponse()
          .assertCode(200)
          .assertHeaders(
            Headers.Builder()
              .add("ETag", "v1")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            then:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateLoaded()
            }
    
            when: 'clean cached build'
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(relocatedDir, homeDir)
            result = buildLocation(relocatedDir, agpVersion)
    
            then:
            if (GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		t.Fatalf("expected to have status cached for pod2")
    	}
    	// Sync with empty pods so that the entry in status map will be removed.
    	kl.podManager.SetPods([]*v1.Pod{})
    	kl.HandlePodCleanups(ctx)
    	if _, found := kl.statusManager.GetPodStatus(podToTest.UID); found {
    		t.Fatalf("expected to not have status cached for pod2")
    	}
    }
    
    func TestValidateContainerLogStatus(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    type connReuseStrategy uint8
    
    const (
    	// alwaysNewConn forces a new connection to the database.
    	alwaysNewConn connReuseStrategy = iota
    	// cachedOrNewConn returns a cached connection, if available, else waits
    	// for one to become available (if MaxOpenConns has been reached) or
    	// creates a new database connection.
    	cachedOrNewConn
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top