Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 531 for Tag (0.16 sec)

  1. istioctl/pkg/tag/tag.go

    	cmd := &cobra.Command{
    		Use:   "generate <revision-tag>",
    		Short: "Generate configuration for a revision tag to stdout",
    		Long: `Create a revision tag and output to the command's stdout. Tag an Istio control plane revision for use with namespace istio.io/rev
    injection labels.`,
    		Example: `  # Create a revision tag from the "1-8-0" revision
      istioctl tag generate prod --revision 1-8-0 > tag.yaml
    
      # Apply the tag to cluster
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/tag.go

    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    	if utf8.RuneCountInString(tag.Value) > 256 {
    		return errInvalidTagValue
    	}
    
    	return nil
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Mar 06 16:56:10 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. internal/bucket/replication/tag.go

    )
    
    func (tag Tag) String() string {
    	return tag.Key + "=" + tag.Value
    }
    
    // IsEmpty returns whether this tag is empty or not.
    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 1.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      generation: 1
      labels:
        app: sidecar-injector
        istio.io/rev: test-dev2
        istio.io/tag: default
        release: istio
      name: istio-revision-tag-default
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod-test-dev2
          namespace: istio-system
          path: /inject
          port: 443
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Jan 09 17:23:44 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/tag_test.go

    							Name:   "istio-revision-tag-wrong",
    							Labels: map[string]string{IstioTagLabel: "wrong"},
    						},
    					},
    				},
    			},
    			namespaces:       corev1.NamespaceList{},
    			outputMatches:    []string{},
    			skipConfirmation: true,
    			error:            "cannot remove tag \"sample\"",
    		},
    		{
    			name: "TestDeleteTagWithDependentNamespace",
    			tag:  "match",
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Nov 17 22:41:06 GMT 2023
    - 8.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/component_hub_tag.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: istio-spec.hub
      tag: istio-spec.tag
      components:
        pilot:
          enabled: true
          hub: component.pilot.hub
          tag: 2
        cni:
          enabled: true
          hub: component.cni.hub
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Wed Jul 22 06:46:00 GMT 2020
    - 274 bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp

    										<la:errors property="_global" />
    									</div>
    									<div class="form-group row">
    										<div class="col-sm-6">
    											<la:message key="labels.storage_tag_key" />
    										</div>
    										<div class="col-sm-6">
    											<la:message key="labels.storage_tag_value" />
    										</div>
    									</div>
    									<c:forEach var="position" begin="1" end="${savedTags.size()/2}">
    									<c:set var="nameKey">name${position}</c:set>
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          name = "test",
          tagClass = DerHeader.TAG_CLASS_UNIVERSAL,
          tag = 16L,
        ) {
          derWriter.write(
            name = "test",
            tagClass = DerHeader.TAG_CLASS_UNIVERSAL,
            tag = 21L,
          ) {
            derWriter.writeOctetString("Smith".encodeUtf8())
          }
    
          derWriter.write(
            name = "test",
            tagClass = DerHeader.TAG_CLASS_UNIVERSAL,
            tag = 1L,
          ) {
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 31.7K bytes
    - Viewed (0)
  9. internal/bucket/replication/filter.go

    			return err
    		}
    	case !f.Tag.IsEmpty():
    		if err := e.EncodeElement(f.Tag, xml.StartElement{Name: xml.Name{Local: "Tag"}}); err != nil {
    			return err
    		}
    	default:
    		// Always print Prefix field when both And & Tag are empty
    		if err := e.EncodeElement(f.Prefix, xml.StartElement{Name: xml.Name{Local: "Prefix"}}); err != nil {
    			return err
    		}
    	}
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Wed Sep 28 18:25:46 GMT 2022
    - 3.5K bytes
    - Viewed (2)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt

        return BasicDerAdapter(
          name = "EXPLICIT",
          tagClass = tagClass,
          tag = tag,
          codec = codec,
        )
      }
    
      /** Returns an adapter that returns a list of values of this type. */
      fun asSequenceOf(
        name: String = "SEQUENCE OF",
        tagClass: Int = DerHeader.TAG_CLASS_UNIVERSAL,
        tag: Long = 16L,
      ): BasicDerAdapter<List<T>> {
        val codec =
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top