Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 912 for revision2 (0.3 sec)

  1. src/cmd/go/internal/modfetch/coderepo.go

    		switch {
    		case strings.HasPrefix(rev, info.Short):
    			return fmt.Errorf("revision is longer than canonical (expected %s)", info.Short)
    		case strings.HasPrefix(info.Short, rev):
    			return fmt.Errorf("revision is shorter than canonical (expected %s)", info.Short)
    		default:
    			return fmt.Errorf("does not match short name of revision (expected %s)", info.Short)
    		}
    	}
    
    	t, err := module.PseudoVersionTime(version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    			t.Errorf("%s: for current revision want %d got %d", test.name, test.expectedCurrent.Revision, current.Revision)
    		}
    		if !test.err && test.expectedUpdate != nil && update != nil && test.expectedUpdate.Revision != update.Revision {
    			t.Errorf("%s: for update revision want %d got %d", test.name, test.expectedUpdate.Revision, update.Revision)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // employed to update Pods in the StatefulSet when a revision is made to
      // Template.
      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // employed to update Pods in the StatefulSet when a revision is made to
      // Template.
      optional StatefulSetUpdateStrategy updateStrategy = 7;
    
      // revisionHistoryLimit is the maximum number of revisions that will
      // be maintained in the StatefulSet's revision history. The revision history
      // consists of all revisions not represented by a currently applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// employed to update Pods in the StatefulSet when a revision is made to
    	// Template.
    	UpdateStrategy StatefulSetUpdateStrategy `json:"updateStrategy,omitempty" protobuf:"bytes,7,opt,name=updateStrategy"`
    
    	// revisionHistoryLimit is the maximum number of revisions that will
    	// be maintained in the StatefulSet's revision history. The revision history
    	// consists of all revisions not represented by a currently applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    Daniel Grimm <******@****.***> 1708485021 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            "/[organisation]/[revision]"                  | "/org.acme/"
            "/[organization]/[revision]"                  | "/org.acme/"
            "/[module]/[revision]"                        | "/proj1/"
            "/[module]/[revision]-lib.[ext]"              | "/proj1/"
            "/[organisation]/[module]/[revision]"         | "/org.acme/proj1/"
            "/[revision]/[module]/[organisation]"         | "/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            given:
            def a = revision("a")
            def b = revision("b")
            def c = revision("c")
            def d = revision("d")
            traverses root, a
            traverses root, b
            traverses root, c
            traverses a, d, revision: 'latest.release'
            doesNotResolve b, d, revision: 'latest.release'
            doesNotResolve c, d
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            'org.gradle' | 'test' | '1.1'   | 'prefix/[organisation]/[module]/[revision]/[artifact]-[revision]-artifact.bin'           | 'prefix/org.gradle/test/1.1'
            'org.gradle' | 'test' | '1.2'   | 'repo/[organisation]-[module]-[revision]/[artifact]-[revision]-artifact.bin'             | 'repo/org.gradle-test-1.2'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/local/ivy/LocallyAvailableResourceFinderFactory.java

            // 1.5
            addForPattern(finders, "artifacts-24/filestore/[organisation]/[module](/[branch])/[revision]/[type]/*/[artifact]-[revision](-[classifier])(.[ext])");
    
            // 1.4
            addForPattern(finders, "artifacts-23/filestore/[organisation]/[module](/[branch])/[revision]/[type]/*/[artifact]-[revision](-[classifier])(.[ext])");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top