Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for pvcs (0.14 sec)

  1. pkg/kubelet/volumemanager/volume_manager_test.go

    	err = wait.Poll(100*time.Millisecond, 1*time.Second, func() (bool, error) {
    		err = manager.WaitForAttachAndMount(context.Background(), pod)
    		if err != nil {
    			// Few "PVC not bound" errors are expected
    			return false, nil
    		}
    		return true, nil
    	})
    	if err != nil {
    		t.Errorf("Expected a volume to be mounted, got: %s", err)
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/crypto/tls/boring_test.go

    				serverConfig.Certificates[0].Certificate = [][]byte{testECDSACertificate}
    				serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey
    			}
    			serverConfig.BuildNameToCertificate()
    			// PKCS#1 v1.5 signature algorithms can't be used standalone in TLS
    			// 1.3, and the ECDSA ones bind to the curve used.
    			serverConfig.MaxVersion = VersionTLS12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	TrustDomain string
    
    	// WorkloadRSAKeySize is the size of a private key for a workload certificate.
    	WorkloadRSAKeySize int
    
    	// Whether to generate PKCS#8 private keys.
    	Pkcs8Keys bool
    
    	// OutputKeyCertToDir is the directory for output the key and certificate
    	OutputKeyCertToDir string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	retpc           uintptr
    	deferBitsOffset uintptr
    	slotsOffset     uintptr
    }
    
    // ancestorInfo records details of where a goroutine was started.
    type ancestorInfo struct {
    	pcs  []uintptr // pcs from the stack of this goroutine
    	goid uint64    // goroutine id of this goroutine; original goroutine possibly dead
    	gopc uintptr   // pc of go statement that created this goroutine
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

    
    ## Version 4.2.0
    
    _2019-09-10_
    
     *  New: API to decode a certificate and private key to create a `HeldCertificate`. This accepts a
        string containing both a certificate and PKCS #8-encoded private key.
    
        ```kotlin
        val heldCertificate = HeldCertificate.decode("""
            |-----BEGIN CERTIFICATE-----
            |MIIBYTCCAQegAwIBAgIBKjAKBggqhkjOPQQDAjApMRQwEgYDVQQLEwtlbmdpbmVl
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    						},
    					},
    				},
    			},
    		},
    		"ephemeral volume + PVC, no conflict between them": {
    			ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: "ns"},
    			Spec: core.PodSpec{
    				Volumes: []core.Volume{
    					{Name: "pvc", VolumeSource: core.VolumeSource{PersistentVolumeClaim: &core.PersistentVolumeClaimVolumeSource{ClaimName: "my-pvc"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	gwSvcs := make([]*Service, 0, len(svcs))
    
    	for _, s := range svcs {
    		svcHost := string(s.Hostname)
    
    		if _, ok := hostsFromGateways[svcHost]; ok {
    			gwSvcs = append(gwSvcs, s)
    		}
    	}
    
    	log.Debugf("GatewayServices: gateways len(services)=%d, len(filtered)=%d", len(svcs), len(gwSvcs))
    
    	return gwSvcs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set.go

    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    	setListerSynced cache.InformerSynced
    	// pvcListerSynced returns true if the pvc shared informer has synced at least once
    	pvcListerSynced cache.InformerSynced
    	// revListerSynced returns true if the rev shared informer has synced at least once
    	revListerSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    func getISCSIVolumeInfo(spec *volume.Spec) (bool, string, error) {
    	// for volume source, readonly is in volume spec
    	// for PV, readonly is in PV spec. PV gets the ReadOnly flag indirectly through the PVC source
    	if spec.Volume != nil && spec.Volume.ISCSI != nil {
    		return spec.Volume.ISCSI.ReadOnly, spec.Volume.ISCSI.FSType, nil
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    	return s.Signer.Sign(rand, digest, opts.HashFunc())
    }
    
    // TestPKCS1OnlyCert uses a client certificate with a broken crypto.Signer that
    // always makes PKCS #1 v1.5 signatures, so can't be used with RSA-PSS.
    func TestPKCS1OnlyCert(t *testing.T) {
    	clientConfig := testConfig.Clone()
    	clientConfig.Certificates = []Certificate{{
    		Certificate: [][]byte{testRSACertificate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top