Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Visiting (0.16 sec)

  1. internal/kms/kms.go

    )
    
    // ListRequest is a structure containing fields
    // and options for listing keys.
    type ListRequest struct {
    	// Prefix is an optional prefix for filtering names.
    	// A list operation only returns elements that match
    	// this prefix.
    	// An empty prefix matches any value.
    	Prefix string
    
    	// ContinueAt is the name of the element from where
    	// a listing should continue. It allows paginated
    	// listings.
    	ContinueAt string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/s3-zip-handlers.go

    	zipPath, _, err := splitZipExtensionPath(prefix)
    	if err != nil {
    		// Return empty listing
    		return ListObjectsV2Info{}, nil
    	}
    
    	zipObjInfo, err := objectAPI.GetObjectInfo(ctx, bucket, zipPath, ObjectOptions{})
    	if err != nil {
    		// Return empty listing
    		return ListObjectsV2Info{}, nil
    	}
    
    	zipInfo := zipObjInfo.ArchiveInfo(h)
    	if len(zipInfo) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    Run a build twice without enabling the Gradle build cache.
    The expected outcome is that all actionable tasks that produce file outputs are up-to-date.
    You should see something like this on the command-line:
    
    [listing]
    ----
    $ ./gradlew clean --quiet <1>
    $ ./gradlew assemble <2>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 4 executed
    
    $ ./gradlew assemble <3>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 4 up-to-date
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                    if (expiry.isMustCheck()) {
                        LOGGER.debug("Version listing in dynamic revision cache is expired: will perform fresh resolve of '{}' in '{}'", requested, delegate.getName());
                    } else {
                        // When age == 0, verified since the start of this build, assume listing hasn't changed
                        boolean authoritative = cachedModuleVersionList.getAge().toMillis() == 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes.go

    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    	// is ignored.
    	UploadIDMarker string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // The initial setting is 1 GB on 64-bit systems, 250 MB on 32-bit systems.
    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    // stack growth.
    func SetMaxStack(bytes int) int {
    	return setMaxStack(bytes)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/controller_test.go

    			if err != nil {
    				t.Fatalf("unexpected error while listing claims: %v", err)
    			}
    			assert.Equal(t, normalizeClaims(tc.expectedClaims), normalizeClaims(claims.Items))
    
    			pods, err := fakeKubeClient.CoreV1().Pods("").List(ctx, metav1.ListOptions{})
    			if err != nil {
    				t.Fatalf("unexpected error while listing pods: %v", err)
    			}
    			var actualStatuses map[string][]v1.PodResourceClaimStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            // TODO Should not be looking in repo1, since A3 was not included in the version listing
            repo1versions.A3.ivy.expectGetMissing()
            repo1versions.A3.jar.expectGetMissing()
            expectGetDynamicRevision(repo2versions.A3)
    
            and:
            // TODO Should not be looking in repo1, since B3 was not included in the version listing
            repo1versions.B3.ivy.expectGetMissing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller.go

    	pods, err := gcc.podLister.List(labels.Everything())
    	if err != nil {
    		klog.FromContext(ctx).Error(err, "Error while listing all pods")
    		return
    	}
    	nodes, err := gcc.nodeLister.List(labels.Everything())
    	if err != nil {
    		klog.FromContext(ctx).Error(err, "Error while listing all nodes")
    		return
    	}
    	if gcc.terminatedPodThreshold > 0 {
    		gcc.gcTerminated(ctx, pods)
    	}
    	gcc.gcTerminating(ctx, pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            server.resetExpectations()
            and:
            run 'retrieve'
    
            then:
            file('libs/projectA-1.0.jar').assertHasNotChangedSince(snapshot)
        }
    
        def "falls back to directory listing when maven-metadata.xml is missing and artifact metadata source is defined"() {
            given:
            mavenHttpRepo.module('group', 'projectA', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top