Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 182 for pvcs (0.15 sec)

  1. pkg/volume/util/types/types.go

    		return true
    	}
    	return false
    }
    
    const (
    	// VolumeResizerKey is key that will be used to store resizer used
    	// for resizing PVC. The generated key/value pair will be added
    	// as a annotation to the PVC.
    	VolumeResizerKey = "volume.kubernetes.io/storage-resizer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/unsafepoint_test.go

    		if err != nil {
    			t.Fatalf("can't parse pc %s: %v", parts[1], err)
    		}
    		if entry == 0 {
    			entry = pc
    		}
    		// Note that some platforms do ASLR, so the PCs in the disassembly
    		// don't match PCs in the address space. Only offsets from function
    		// entry make sense.
    		unsafe := runtime.UnsafePoint(f.Entry() + uintptr(pc-entry))
    		t.Logf("unsafe: %v\n", unsafe)
    		instructionCount++
    		if unsafe {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/select.go

    	order := typecheck.TempAt(base.Pos, ir.CurFunc, types.NewArray(types.Types[types.TUINT16], 2*int64(ncas)))
    
    	var pc0, pcs ir.Node
    	if base.Flag.Race {
    		pcs = typecheck.TempAt(base.Pos, ir.CurFunc, types.NewArray(types.Types[types.TUINTPTR], int64(ncas)))
    		pc0 = typecheck.Expr(typecheck.NodAddr(ir.NewIndexExpr(base.Pos, pcs, ir.NewInt(base.Pos, 0))))
    	} else {
    		pc0 = typecheck.NodNil()
    	}
    
    	// register cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/memory/discovery.go

    )
    
    // NewServiceDiscovery builds an in-memory ServiceDiscovery
    func NewServiceDiscovery(services ...*model.Service) *ServiceDiscovery {
    	svcs := map[host.Name]*model.Service{}
    	for _, svc := range services {
    		svcs[svc.Hostname] = svc
    	}
    	return &ServiceDiscovery{
    		services:            svcs,
    		instancesByPortNum:  map[string][]*model.ServiceInstance{},
    		instancesByPortName: map[string][]*model.ServiceInstance{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "properties": {
            "whenDeleted": {
              "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top