Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,164 for Decref (0.25 sec)

  1. pilot/pkg/config/kube/ingress/testdata/tls-no-secret.yaml.golden

    Jackie Elliott <******@****.***> 1684520434 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 788 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml

    Tariq Ibrahim <******@****.***> 1591295661 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 04 18:34:21 UTC 2020
    - 510 bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.template.gen.yaml

              name: kube-root-ca.crt
          {{- end }}
          {{- if .Values.global.mountMtlsCerts }}
          # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
          - name: istio-certs
            secret:
              optional: true
              {{ if eq .Spec.ServiceAccountName "" }}
              secretName: istio.default
              {{ else -}}
              secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-secret-key.asc

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/go122.test

    String id=138
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unixjs.go"
    String id=139
    	data="internal/poll.(*FD).destroy"
    String id=140
    	data="internal/poll.(*FD).decref"
    String id=141
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_mutex.go"
    String id=142
    	data="internal/poll.(*FD).Close"
    String id=143
    	data="net.(*netFD).Close"
    String id=144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokens_controller_test.go

    func serviceAccountTokenSecretWithoutTokenData() *v1.Secret {
    	secret := serviceAccountTokenSecret()
    	delete(secret.Data, v1.ServiceAccountTokenKey)
    	return secret
    }
    
    // serviceAccountTokenSecretWithoutCAData returns an existing ServiceAccountToken secret that lacks ca data
    func serviceAccountTokenSecretWithoutCAData() *v1.Secret {
    	secret := serviceAccountTokenSecret()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. pkg/registry/core/secret/strategy.go

    	return validation.ValidateSecretUpdate(obj.(*api.Secret), old.(*api.Secret))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return warningsForSecret(obj.(*api.Secret))
    }
    
    func dropDisabledFields(secret *api.Secret, oldSecret *api.Secret) {
    }
    
    func (strategy) AllowUnconditionalUpdate() bool {
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap.go

    	if string(secret.Type) != string(bootstrapapi.SecretTypeBootstrapToken) || secret.Data == nil {
    		tokenErrorf(secret, "has invalid type, expected %s.", bootstrapapi.SecretTypeBootstrapToken)
    		return nil, false, nil
    	}
    
    	ts := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenSecretKey)
    	if subtle.ConstantTimeCompare([]byte(ts), []byte(tokenSecret)) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 20:38:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    // BootstrapTokenFromSecret returns a BootstrapToken object from the given Secret
    func BootstrapTokenFromSecret(secret *v1.Secret) (*BootstrapToken, error) {
    	// Get the Token ID field from the Secret data
    	tokenID := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if len(tokenID) == 0 {
    		return nil, errors.Errorf("bootstrap Token Secret has no token-id data: %s", secret.Name)
    	}
    
    	// Enforce the right naming convention
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top