Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 646 for revision2 (0.27 sec)

  1. pkg/webhooks/webhookpatch.go

    	errNotFound          = errors.New("webhook not found")
    	errNoWebhookWithName = errors.New("webhook configuration did not contain webhook with target name")
    )
    
    // WebhookCertPatcher listens for webhooks on specified revision and patches their CA bundles
    type WebhookCertPatcher struct {
    	// revision to patch webhooks for
    	revision    string
    	webhookName string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. pkg/registry/apps/controllerrevision/storage/storage_test.go

    func newControllerRevision(name, namespace string, data runtime.Object, revision int64) *apps.ControllerRevision {
    	return &apps.ControllerRevision{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: namespace,
    			Labels:    map[string]string{"foo": "bar"},
    		},
    		Data:     data,
    		Revision: revision,
    	}
    }
    
    func stripObjectMeta(revision *apps.ControllerRevision) *apps.ControllerRevision {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    ! stdout .
    
    # Fetching a nonexistent commit should return an "unknown revision"
    # error message.
    ! go mod download github.com/golang/term@86186f3aba07ed0212cfb944f3398997d2d07c6b
    stderr '^go: github.com/golang/term@86186f3aba07ed0212cfb944f3398997d2d07c6b: invalid version: unknown revision 86186f3aba07ed0212cfb944f3398997d2d07c6b$'
    ! stdout .
    
    ! go mod download github.com/golang/nonexist@master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/DefaultIvyDependency.java

        private final String revision;
        private final String confMapping;
        private final boolean transitive;
        private final String revConstraint;
        private final Set<DependencyArtifact> artifacts;
        private final Set<ExcludeRule> excludeRules;
    
        public DefaultIvyDependency(
            String organisation,
            String module,
            String revision,
            String confMapping,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePatternTest.groovy

            where:
            group       | module     | expectedPath
            "group"     | "projectA" | 'prefix/group/projectA/[revision]/poms/[revision]/projectA.pom'
            "org.group" | "projectA" | 'prefix/org/group/projectA/[revision]/poms/[revision]/projectA.pom'
        }
    
        def "can build module path"() {
            def pattern = new M2ResourcePattern("prefix/" + MavenPattern.M2_PATTERN)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/eastwest.go

    func (i *istioImpl) deployEastWestGateway(cluster cluster.Cluster, revision string, customSettings string) error {
    	// generate istio operator yaml
    	args := []string{
    		"--cluster", cluster.Name(),
    		"--network", cluster.NetworkName(),
    		"--revision", revision,
    		"--mesh", meshID,
    	}
    	if !i.env.IsMultiCluster() {
    		args = []string{"--single-cluster"}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/rollbackconfig.go

    // with apply.
    type RollbackConfigApplyConfiguration struct {
    	Revision *int64 `json:"revision,omitempty"`
    }
    
    // RollbackConfigApplyConfiguration constructs an declarative configuration of the RollbackConfig type for use with
    // apply.
    func RollbackConfig() *RollbackConfigApplyConfiguration {
    	return &RollbackConfigApplyConfiguration{}
    }
    
    // WithRevision sets the Revision field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/parent-version-range-external-child-revision-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <version>${revision}</version>
      <packaging>pom</packaging>
      <properties>
        <revision>1.0-SNAPSHOT</revision>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 01 13:35:07 UTC 2022
    - 344 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/parent-version-range-local-child-revision-expression/child/pom.xml

        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <version>${revision}</version>
      <packaging>pom</packaging>
      <properties>
        <revision>1.0-SNAPSHOT</revision>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 01 13:35:07 UTC 2022
    - 361 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/config.go

    		return true
    	}
    	if r.Metadata.Labels["release"] == "istio" {
    		return true
    	}
    	return false
    }
    
    func GetInjectorConfigMapName(revision string) string {
    	name := InjectionConfigMap
    	if revision == "" || revision == "default" {
    		return name
    	}
    	return name + "-" + revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top