Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for pvcs (0.07 sec)

  1. pilot/pkg/xds/workload_test.go

    				Name:     "tcp",
    				Port:     80,
    				Protocol: "TCP",
    			}},
    			Selector: selector,
    			Type:     corev1.ServiceTypeClusterIP,
    		},
    	}
    
    	svcs := clienttest.NewWriter[*corev1.Service](s.T(), s.KubeClient())
    	svcs.CreateOrUpdate(service)
    }
    
    func TestWorkloadAuthorizationPolicy(t *testing.T) {
    	test.SetForTest(t, &features.EnableAmbient, true)
    	expect := buildExpect(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    		var deleted []string
    		var svcs []*model.Service
    		switch key.Kind {
    		case kind.ServiceEntry:
    			svcs, deleted = configgen.deltaFromServices(key, proxy, updates.Push, serviceClusters,
    				servicePortClusters, subsetClusters)
    		case kind.DestinationRule:
    			svcs, deleted = configgen.deltaFromDestinationRules(key, proxy, subsetClusters)
    		}
    		services = append(services, svcs...)
    		deletedClusters.InsertAll(deleted...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    	// Stacks is the stack traces (stored as slices of PCs), keyed by stack IDs
    	// from the trace.
    	Stacks        map[uint32][]uint64
    	PCs           map[uint64]Frame
    	Strings       map[uint64]string
    	InlineStrings []string
    }
    
    // batchOffset records the byte offset of, and number of events in, a batch. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    "volumeClaimTemplate": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/crypto/tls/key_agreement.go

    	ciphertext := ckx.ciphertext[2:]
    
    	priv, ok := cert.PrivateKey.(crypto.Decrypter)
    	if !ok {
    		return nil, errors.New("tls: certificate private key does not implement crypto.Decrypter")
    	}
    	// Perform constant time RSA PKCS #1 v1.5 decryption
    	preMasterSecret, err := priv.Decrypt(config.rand(), ciphertext, &rsa.PKCS1v15DecryptOptions{SessionKeyLen: 48})
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    //
    // To translate these PCs into symbolic information such as function
    // names and line numbers, use [CallersFrames]. CallersFrames accounts
    // for inlined functions and adjusts the return program counters into
    // call program counters. Iterating over the returned slice of PCs
    // directly is discouraged, as is using [FuncForPC] on any of the
    // returned PCs, since these cannot account for inlining or return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.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: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    		}},
    	}}
    	return lb.buildConnectTerminateListener(routes)
    }
    
    func (lb *ListenerBuilder) buildWaypointInternal(wls []model.WorkloadInfo, svcs []*model.Service) *listener.Listener {
    	ipMatcher := &matcher.IPMatcher{}
    	chains := []*listener.FilterChain{}
    	for _, svc := range svcs {
    		portMapper := match.NewDestinationPort()
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	// get service object
    	svcs := ctl.Services()
    	if len(svcs) != 1 {
    		t.Fatalf("failed to get services (%v)", svcs)
    	}
    
    	endpoints := GetEndpoints(svcs[0], ctl.Endpoints)
    
    	want := []string{"2.2.2.2:8082", "2.2.2.2:8083"} // expect both WorkloadEntries even though they have the same IP
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor_test.go

    		return volumetypes.NewOperationContext(nil, nil, false)
    	}
    	return volumetypes.GeneratedOperations{
    		OperationFunc: opFunc,
    	}, nil
    }
    
    func (fopg *fakeOperationGenerator) GenerateExpandVolumeFunc(pvc *v1.PersistentVolumeClaim, pv *v1.PersistentVolume) (volumetypes.GeneratedOperations, error) {
    	opFunc := func() volumetypes.OperationContext {
    		startOperationAndBlock(fopg.ch, fopg.quit)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top