Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 263 for A1value (0.16 sec)

  1. pkg/controller/certificates/signer/ca_provider.go

    		PrivateKey:  priv,
    	}
    	p.caValue.Store(ca)
    
    	return nil
    }
    
    // currentCA provides the current value of the CA.
    // It always check for a stale value.  This is cheap because it's all an in memory cache of small slices.
    func (p *caProvider) currentCA() (*authority.CertificateAuthority, error) {
    	certPEM, keyPEM := p.caLoader.CurrentCertKeyContent()
    	currCA := p.caValue.Load().(*authority.CertificateAuthority)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 18:33:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. pkg/apis/core/pods/helpers_test.go

    			value:         "test-pod",
    			expectedLabel: "metadata.name",
    			expectedValue: "test-pod",
    		},
    		{
    			version:       "v1",
    			label:         "metadata.annotations",
    			value:         "myValue",
    			expectedLabel: "metadata.annotations",
    			expectedValue: "myValue",
    		},
    		{
    			version:       "v1",
    			label:         "metadata.annotations['myKey']",
    			value:         "myValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pkg/test/csrctrl/signer/ca_provider.go

    		RawCert: certPEM,
    		RawKey:  keyPEM,
    
    		Certificate: certs[0],
    		PrivateKey:  priv,
    		Backdate:    5 * time.Minute,
    	}
    	p.caValue.Store(ca)
    
    	return nil
    }
    
    // currentCA provides the current value of the CA.
    // It always check for a stale value.  This is cheap because it's all an in memory cache of small slices.
    func (p *caProvider) currentCA() (*authority.CertificateAuthority, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. tests/serializer_test.go

    	switch value := dbValue.(type) {
    	case []byte:
    		*es = EncryptedString(bytes.TrimPrefix(value, []byte("hello")))
    	case string:
    		*es = EncryptedString(strings.TrimPrefix(value, "hello"))
    	default:
    		return fmt.Errorf("unsupported data %#v", dbValue)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Endpoints.yaml

    subsets:
    - addresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
          kind: kindValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      notReadyAddresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Endpoints.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Endpoints.yaml

    subsets:
    - addresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
          kind: kindValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      notReadyAddresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/resource.go

    func (id FakeID) String() string {
    	return string(id)
    }
    
    var _ Resource = &FakeResource{}
    
    // FakeResource used for testing.
    type FakeResource struct {
    	IDValue    string
    	OtherValue string
    }
    
    func (f *FakeResource) ID() ID {
    	return FakeID(f.IDValue)
    }
    
    // GetOtherValue is an additional method used to distinguish this resource API from others.
    func (f *FakeResource) GetOtherValue() string {
    	return f.OtherValue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 30 01:00:01 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Endpoints.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Endpoints.yaml

    subsets:
    - addresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
          kind: kindValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      notReadyAddresses:
      - hostname: hostnameValue
        ip: ipValue
        nodeName: nodeNameValue
        targetRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top