Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 216 for NEW (0.03 sec)

  1. pilot/pkg/model/sidecar_test.go

    			}
    
    			ps.exportToDefaults = exportToDefaults{
    				virtualService:  sets.New(visibility.Public),
    				service:         sets.New(visibility.Public),
    				destinationRule: sets.New(visibility.Public),
    			}
    
    			sidecarConfig := tt.sidecarConfig
    			configuredListeneres := 1
    			if sidecarConfig != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							},
    						},
    					}},
    				applyPatchOperation{
    					"a new value",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"restricted": map[string]interface{}{
    							"key1": "hi",
    							"key2": "there",
    							"key3": "buddy",
    						},
    					}},
    
    				expectError{applyPatchOperation{
    					"violate new validation by removing keys",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    			expectedVirtualServices: []config.Config{independentVs},
    			defaultExportTo:         sets.New(visibility.Public),
    		},
    		{
    			name:                    "one root vs",
    			virtualServices:         []config.Config{rootVs},
    			expectedVirtualServices: []config.Config{oneRoot},
    			defaultExportTo:         sets.New(visibility.Public),
    		},
    		{
    			name:                    "one delegate vs",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy_test.go

    	req.RemoteAddr = "1.2.3.4:56789"
    	closeCheck := new(checkCloser)
    	logBuf := new(strings.Builder)
    	outErr := errors.New("ModifyResponse error")
    	rp := &ReverseProxy{
    		Director: func(req *http.Request) {},
    		Transport: &staticTransport{&http.Response{
    			StatusCode: 200,
    			Body:       closeCheck,
    		}},
    		ErrorLog: log.New(logBuf, "", 0),
    		ModifyResponse: func(*http.Response) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                return new ActivationFrame(property, Optional.empty());
            }
    
            private <P> ActivationFrame nextFrame(String property, Function<P, InputLocationTracker> child) {
                @SuppressWarnings("unchecked")
                final Optional<P> parent = (Optional<P>) stk.peek().parent;
                return new ActivationFrame(property, parent.map(child));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    	tlsOptions, err := InitializeTLS(&s.KubeletFlags, &s.KubeletConfiguration)
    	if err != nil {
    		return nil, err
    	}
    
    	mounter := mount.New(s.ExperimentalMounterPath)
    	subpather := subpath.New(mounter)
    	hu := hostutil.NewHostUtil()
    	pluginRunner := exec.New()
    
    	plugins, err := ProbeVolumePlugins(featureGate)
    	if err != nil {
    		return nil, err
    	}
    	var tp oteltrace.TracerProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterForwardChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterOutputChain, "ct state new"},
    
    	{firewallCheckChain, filterPreroutingChain, "ct state new"},
    	{firewallCheckChain, filterOutputChain, "ct state new"},
    
    	{servicesChain, natOutputChain, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// to existing ReplicaSets (and label key that is added to its pods) to prevent the existing ReplicaSets
    	// to select new pods (and old pods being select by new ReplicaSet).
    	DefaultDeploymentUniqueLabelKey string = "pod-template-hash"
    )
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    type DeploymentStrategy struct {
    	// Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    	}
    }
    
    func TestAttacherGetDeviceMountPath(t *testing.T) {
    	// Setup
    	// Create a new attacher
    	fakeClient := fakeclient.NewSimpleClientset()
    	plug, tmpDir := newTestPlugin(t, fakeClient)
    	defer os.RemoveAll(tmpDir)
    	attacher, err0 := plug.NewAttacher()
    	if err0 != nil {
    		t.Fatalf("failed to create new attacher: %v", err0)
    	}
    	csiAttacher := getCsiAttacherFromVolumeAttacher(attacher, testWatchTimeout)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "new", "", "", 3, resultCases[5], nil, true},
    		{"test-bucket-list-object", "new", "", "", 4, resultCases[5], nil, true},
    		{"test-bucket-list-object", "new", "", "", 5, resultCases[5], nil, true},
    		{"test-bucket-list-object", "obj", "", "", 3, resultCases[6], nil, true},
    		// Testing with prefix and truncation (27-28).
    		{"test-bucket-list-object", "new", "", "", 1, resultCases[7], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top