Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for pvcs (0.05 sec)

  1. src/crypto/tls/auth.go

    	{PSSWithSHA384, crypto.SHA384.Size()*2 + 2, VersionTLS13},
    	{PSSWithSHA512, crypto.SHA512.Size()*2 + 2, VersionTLS13},
    	// PKCS #1 v1.5 uses prefixes from hashPrefixes in crypto/rsa, and requires
    	//    emLen >= len(prefix) + hLen + 11
    	// TLS 1.3 dropped support for PKCS #1 v1.5 in favor of RSA-PSS.
    	{PKCS1WithSHA256, 19 + crypto.SHA256.Size() + 11, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	return strconv.Itoa(int(algo))
    }
    
    // OIDs for signature algorithms
    //
    //	pkcs-1 OBJECT IDENTIFIER ::= {
    //		iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 1 }
    //
    // RFC 3279 2.2.1 RSA Signature Algorithms
    //
    //	md5WithRSAEncryption OBJECT IDENTIFIER ::= { pkcs-1 4 }
    //
    //	sha-1WithRSAEncryption OBJECT IDENTIFIER ::= { pkcs-1 5 }
    //
    //	dsaWithSha1 OBJECT IDENTIFIER ::= {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/store.go

    }
    
    // getAllServices return all the services.
    func (s *serviceStore) getAllServices() []*model.Service {
    	out := make([]*model.Service, 0, countSliceValue(s.servicesBySE))
    	for _, svcs := range s.servicesBySE {
    		out = append(out, svcs...)
    	}
    	return model.SortServicesByCreationTime(out)
    }
    
    func (s *serviceStore) getServices(key types.NamespacedName) []*model.Service {
    	return s.servicesBySE[key]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    	runTest := func(t framework.TestContext, f func(t framework.TestContext, src echo.Instance, dst echo.Instance, opt echo.CallOptions)) {
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    			t.NewSubTestf("from %v", src.Config().Service).RunParallel(func(t framework.TestContext) {
    				for _, dst := range svcs {
    					dst := dst
    					t.NewSubTestf("to %v", dst.Config().Service).RunParallel(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    }
    
    // Provide an upgrade path from PVC with nil storage class. We allow update of
    // StorageClassName only if following four conditions are met at the same time:
    // 1. The new pvc's StorageClassName is not nil
    // 2. The old pvc's StorageClassName is nil
    // 3. The old pvc either does not have beta annotation set, or the beta annotation matches new pvc's StorageClassName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_test.go

    				claim := newClaim("claim5-2", "uid5-2", "1Gi", "", v1.ClaimPending, nil)
    				reactor.AddClaimEvent(claim)
    				return nil
    			},
    		},
    		{
    			name:            "5-2-2 - complete bind when PV and PVC both exist",
    			initialVolumes:  newVolumeArray("volume5-2", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    		evt.stacks.insert(stackID(id), stack{pcs: stk})
    	}
    
    	// OPT(dh): if we could share the frame type between this package and
    	// oldtrace we wouldn't have to copy the map.
    	for pc, f := range pr.PCs {
    		evt.pcs[pc] = frame{
    			pc:     pc,
    			funcID: stringID(f.Fn),
    			fileID: stringID(f.File),
    			line:   uint64(f.Line),
    		}
    	}
    	pr.Stacks = nil
    	pr.PCs = nil
    	evt.stacks.compactify()
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/crypto/tls/tls.go

    		return fail(errors.New("tls: unknown public key algorithm"))
    	}
    
    	return cert, nil
    }
    
    // Attempt to parse the given private key DER block. OpenSSL 0.9.8 generates
    // PKCS #1 private keys by default, while OpenSSL 1.0.0 generates PKCS #8 keys.
    // OpenSSL ecparam generates SEC1 EC private keys for ECDSA. We try all three.
    func parsePrivateKey(der []byte) (crypto.PrivateKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/internal/trace/base.go

    			time: s.time,
    		},
    	}
    	e.base.args[0] = uint64(s.stack)
    	return e
    }
    
    // stack represents a goroutine stack sample.
    type stack struct {
    	pcs []uint64
    }
    
    func (s stack) String() string {
    	var sb strings.Builder
    	for _, frame := range s.pcs {
    		fmt.Fprintf(&sb, "\t%#v\n", frame)
    	}
    	return sb.String()
    }
    
    // frame represents a single stack frame.
    type frame struct {
    	pc     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/volume/hostpath/host_path.go

    	if util.CheckPersistentVolumeClaimModeBlock(r.options.PVC) {
    		return nil, fmt.Errorf("%s does not support block volume provisioning", r.plugin.GetPluginName())
    	}
    
    	fullpath := fmt.Sprintf("/tmp/%s/%s", r.basePath, uuid.NewUUID())
    
    	capacity := r.options.PVC.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
    	pv := &v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top