Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 622 for key0 (0.05 sec)

  1. pilot/test/mock/config.go

    			Name:             name,
    			Namespace:        namespace,
    			Labels: map[string]string{
    				"key": name,
    			},
    			Annotations: map[string]string{
    				"annotationkey": name,
    			},
    		},
    		Spec: &config.MockConfig{
    			Key: name,
    			Pairs: []*config.ConfigPair{
    				{Key: "key", Value: strconv.Itoa(i)},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. internal/auth/credentials.go

    		return "", errors.New("auth: access key length is too short")
    	}
    
    	key := make([]byte, length)
    	if _, err := io.ReadFull(random, key); err != nil {
    		return "", err
    	}
    	for i := range key {
    		key[i] = alphaNumericTable[key[i]%alphaNumericTableLen]
    	}
    	return string(key), nil
    }
    
    // GenerateSecretKey returns a new secret key generated randomly using
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. helm-releases/minio-5.0.15.tgz

    trusted-cert-secret-volume mountPath: {{ $casPath }} {{- end }} {{- end -}} {{/* Formats volume for MinIO TLS keys and trusted certs */}} {{- define "minio.tlsKeysVolume" -}} {{- if .Values.tls.enabled }} - name: cert-secret-volume secret: secretName: {{ tpl .Values.tls.certSecret $ }} items: - key: {{ .Values.tls.publicCrt }} path: public.crt - key: {{ .Values.tls.privateKey }} path: private.key {{- end }} {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }} {{- $certSecret := eq .Val...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. helm-releases/minio-5.0.14.tgz

    trusted-cert-secret-volume mountPath: {{ $casPath }} {{- end }} {{- end -}} {{/* Formats volume for MinIO TLS keys and trusted certs */}} {{- define "minio.tlsKeysVolume" -}} {{- if .Values.tls.enabled }} - name: cert-secret-volume secret: secretName: {{ tpl .Values.tls.certSecret $ }} items: - key: {{ .Values.tls.publicCrt }} path: public.crt - key: {{ .Values.tls.privateKey }} path: private.key {{- end }} {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }} {{- $certSecret := eq .Val...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 20:46:10 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // it is unspecified.
    func (m *Map) Iterate(f func(key types.Type, value any)) {
    	if m != nil {
    		for _, bucket := range m.table {
    			for _, e := range bucket {
    				if e.key != nil {
    					f(e.key, e.value)
    				}
    			}
    		}
    	}
    }
    
    // Keys returns a new slice containing the set of map keys.
    // The order is unspecified.
    func (m *Map) Keys() []types.Type {
    	keys := make([]types.Type, 0, m.Len())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof.go

    	return nil
    }
    
    // keysByCount sorts keys with higher counts first, breaking ties by key string order.
    type keysByCount struct {
    	keys  []string
    	count map[string]int
    }
    
    func (x *keysByCount) Len() int      { return len(x.keys) }
    func (x *keysByCount) Swap(i, j int) { x.keys[i], x.keys[j] = x.keys[j], x.keys[i] }
    func (x *keysByCount) Less(i, j int) bool {
    	ki, kj := x.keys[i], x.keys[j]
    	ci, cj := x.count[ki], x.count[kj]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certs_test.go

    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    			},
    			expectedErrors: 1,
    		},
    		{
    			name: "missing etcd/ca.crt",
    			files: certstestutil.PKIFiles{
    				"ca.crt":             caCert,
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

        Service service = 2;
      }
    }
    
    // Service represents a service - a group of workloads that can be accessed together.
    // The xds primary key is "namespace/hostname".
    // Secondary (alias) keys are the unique `network/IP` pairs that the service can be reached at.
    message Service {
      // Name represents the name for the service.
      // For Kubernetes, this is the Service name.
      string name = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.3.tgz

    trusted-cert-secret-volume mountPath: {{ $casPath }} {{- end }} {{- end -}} {{/* Formats volume for MinIO TLS keys and trusted certs */}} {{- define "minio.tlsKeysVolume" -}} {{- if .Values.tls.enabled }} - name: cert-secret-volume secret: secretName: {{ tpl .Values.tls.certSecret $ }} items: - key: {{ .Values.tls.publicCrt }} path: public.crt - key: {{ .Values.tls.privateKey }} path: private.key {{- end }} {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }} {{- $certSecret := eq .Val...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 19 08:53:02 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.4.tgz

    trusted-cert-secret-volume mountPath: {{ $casPath }} {{- end }} {{- end -}} {{/* Formats volume for MinIO TLS keys and trusted certs */}} {{- define "minio.tlsKeysVolume" -}} {{- if .Values.tls.enabled }} - name: cert-secret-volume secret: secretName: {{ tpl .Values.tls.certSecret $ }} items: - key: {{ .Values.tls.publicCrt }} path: public.crt - key: {{ .Values.tls.privateKey }} path: private.key {{- end }} {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }} {{- $certSecret := eq .Val...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 20:29:40 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top