Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for convlit (0.18 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    					Image: "busybox",
    				},
    			},
    		},
    	}
    
    	// Set fake sandbox and fake containers to fakeRuntime.
    	fakeSandbox, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    
    	// Convert the fakeContainers to kubecontainer.Container
    	containers := make([]*kubecontainer.Container, len(fakeContainers))
    	for i := range containers {
    		fakeContainer := fakeContainers[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		return nil, &ConfigError{Reason: InvalidConfiguration, Message: "gRPC match must have method or service defined"}
    	}
    	// gRPC format is /<Service>/<Method>. Since we don't natively understand this, convert to various string matches
    	switch tp {
    	case k8s.GRPCMethodMatchExact:
    		if m.Method == nil {
    			return &istio.StringMatch{
    				MatchType: &istio.StringMatch_Prefix{Prefix: fmt.Sprintf("/%s/", *m.Service)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	if err := xmlDecoder(r.Body, deleteObjectsReq, maxBodySize); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	objects := make([]ObjectV, len(deleteObjectsReq.Objects))
    	// Convert object name delete objects if it has `/` in the beginning.
    	for i := range deleteObjectsReq.Objects {
    		deleteObjectsReq.Objects[i].ObjectName = trimLeadingSlash(deleteObjectsReq.Objects[i].ObjectName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top