Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 225 for Tkey (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/testdata/localhost__10.0.0.1,127.0.0.1/test.com__10.0.0.1/key

    Justin SB <******@****.***> 1546536079 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 03 17:21:31 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/service.yaml

    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
          {{ $pkey}}: {{ $pval }}
          {{- end }}
        {{- end }}
    
      {{ range $app := $gateway.egressPorts }}
        -
          port: {{ $app.port }}
          name: {{ $app.name }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go

    // nonces are randomly generated.
    func NewX(key []byte) (cipher.AEAD, error) {
    	if len(key) != KeySize {
    		return nil, errors.New("chacha20poly1305: bad key length")
    	}
    	ret := new(xchacha20poly1305)
    	copy(ret.key[:], key)
    	return ret, nil
    }
    
    func (*xchacha20poly1305) NonceSize() int {
    	return NonceSizeX
    }
    
    func (*xchacha20poly1305) Overhead() int {
    	return Overhead
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/testdata/rfc9180-vectors.json

    27b0187c04e7d2ea1fc\nkey_schedule_context: 00725611c9d98c07c03f60095cd32d400d8347d45ed67097bbad50fc56da742d07cb6cffde367bb0565ba28bb02c90744a20f5ef37f30523526106f637abb05449\nsecret: 12fff91991e93b48de37e7daddb52981084bd8aa64289c3788471d9a9712f397\nkey: 4531685d41d65f03dc48f6b8302c05b0\nbase_nonce: 56d890e5accaaf011cff4b7d\nexporter_secret: 45ff1c2e220db587171952c0592d5f5ebe103f1561a2614e38f2ffd47e99e3f8","Encryptions":"sequence number: 0\npt: 4265617574792069732074727574682c20747275746820626561757479\naad:...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/crypto/rsa/pkcs1v15.go

    // error is returned. If the padding is valid, the resulting plaintext message
    // is copied into key. Otherwise, key is unchanged. These alternatives occur in
    // constant time. It is intended that the user of this function generate a
    // random session key beforehand and continue the protocol with the resulting
    // value.
    //
    // Note that if the session key is too small then it may be possible for an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/controller/certificates/certificate_controller.go

    	}
    }
    
    // processNextWorkItem deals with one key off the queue.  It returns false when it's time to quit.
    func (cc *CertificateController) processNextWorkItem(ctx context.Context) bool {
    	cKey, quit := cc.queue.Get()
    	if quit {
    		return false
    	}
    	defer cc.queue.Done(cKey)
    
    	if err := cc.syncFunc(ctx, cKey); err != nil {
    		cc.queue.AddRateLimited(cKey)
    		if _, ignorable := err.(ignorableError); !ignorable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/crypto/x509/boring_test.go

    	} else {
    		tmpl.IsCA = true
    		tmpl.KeyUsage |= KeyUsageCertSign
    	}
    
    	var pcert *Certificate
    	var pkey interface{}
    	if parent != nil {
    		pcert = parent.cert
    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	var desc string
    	switch k := key.(type) {
    	case *rsa.PrivateKey:
    		pub = &k.PublicKey
    		desc = fmt.Sprintf("RSA-%d", k.N.BitLen())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	// 5. test deleteServiceEntryInstances
    	store.deleteServiceEntryInstances(key, cKey)
    	gotSeInstances = store.getServiceEntryInstances(key)
    	if len(gotSeInstances) != 0 {
    		t.Errorf("got unexpected instances %v", gotSeInstances)
    	}
    
    	// 6. test deleteAllServiceEntryInstances
    	store.deleteAllServiceEntryInstances(key)
    	gotSeInstances = store.getServiceEntryInstances(key)
    	if len(gotSeInstances) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/service.yaml

    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
          {{ $pkey}}: {{ $pval }}
          {{- end }}
        {{- end }}
    
      {{ range $app := $gateway.ingressPorts }}
        -
          port: {{ $app.port }}
          name: {{ $app.name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/Key.java

     * For example, to create a key of type Map&lt;String, List&lt;Integer&gt;&gt;, you can just use
     * this syntax: <code>new Key&lt;Map&lt;String, List&lt;Integer&gt;&gt;&gt;(){}</code>.
     * <p>
     * If your types are not known at compile time, you can use {@link Types#parameterizedType} to make a
     * parameterized type and give it to a {@link #ofType Key.ofType} constructor.
     *
     * @param <T> binding type
     */
    public abstract class Key<T> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top