Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 238 for _ignored (0.15 sec)

  1. cmd/kubelet/app/server.go

    		cgroupRoots = append(cgroupRoots, kubeletCgroup)
    	}
    
    	if s.RuntimeCgroups != "" {
    		// RuntimeCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.RuntimeCgroups)
    	}
    
    	if s.SystemCgroups != "" {
    		// SystemCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.SystemCgroups)
    	}
    
    	if kubeDeps.CAdvisorInterface == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_utils_test.go

    				WhenScaled:  apps.RetainPersistentVolumeClaimRetentionPolicyType,
    				WhenDeleted: apps.DeletePersistentVolumeClaimRetentionPolicyType,
    			},
    			shouldMatch: false,
    		},
    		{
    			name: "stale controller ignored, set",
    			ownerRefs: []metav1.OwnerReference{
    				{
    					Name:       "stateful-set",
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					UID:        "set-stale",
    					Controller: ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    //
    // Responses with status codes in the 1xx range are either handled
    // automatically (100 expect-continue) or ignored. The one
    // exception is HTTP status code 101 (Switching Protocols), which is
    // considered a terminal status and returned by [Transport.RoundTrip]. To see the
    // ignored 1xx responses, use the httptrace trace package's
    // ClientTrace.Got1xxResponse.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        params.initial = 1234 // should be ignored. Ideally should fail too
                    }
                }
    
                task second {
                    dependsOn first
                    doFirst {
                        provider.get().increment()
                        params.initial = 456 // should be ignored
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    			Scheme:   "http",
    			Host:     "example.com",
    			Path:     "/a b",
    			RawPath:  "/a b", // ignored because invalid
    			RawQuery: "q=go+language",
    		},
    		"/a%20b?q=go+language",
    	},
    	{
    		&URL{
    			Scheme:   "http",
    			Host:     "example.com",
    			Path:     "/a?b",
    			RawPath:  "/a?b", // ignored because invalid
    			RawQuery: "q=go+language",
    		},
    		"/a%3Fb?q=go+language",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/time/time_test.go

    }
    
    func TestInvalidTimeGob(t *testing.T) {
    	for _, tt := range invalidEncodingTests {
    		var ignored Time
    		err := ignored.GobDecode(tt.bytes)
    		if err == nil || err.Error() != tt.want {
    			t.Errorf("time.GobDecode(%#v) error = %v, want %v", tt.bytes, err, tt.want)
    		}
    		err = ignored.UnmarshalBinary(tt.bytes)
    		if err == nil || err.Error() != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("Session setup failed", se);
                        if ( this.connectionState.compareAndSet(1, 0) ) {
                            // only try to logoff if we have not completed the session setup, ignore errors from chained
                            // responses
                            logoff(true, true);
                        }
                        throw se;
                    }
                    finally {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// MirrorPod is the mirror pod if Pod is a static pod. Optional when UpdateType
    	// is kill or terminated.
    	MirrorPod *v1.Pod
    	// RunningPod is a runtime pod that is no longer present in config. Required
    	// if Pod is nil, ignored if Pod is set.
    	RunningPod *kubecontainer.Pod
    	// KillPodOptions is used to override the default termination behavior of the
    	// pod or to update the pod status after an operation is completed. Since a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top