Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for _ignored (0.13 sec)

  1. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	}
    }
    
    func (nc *Controller) doNoScheduleTaintingPass(ctx context.Context, nodeName string) error {
    	node, err := nc.nodeLister.Get(nodeName)
    	if err != nil {
    		// If node not found, just ignore it.
    		if apierrors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    
    	// Map node's condition to Taints.
    	var taints []v1.Taint
    	for _, condition := range node.Status.Conditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// The previous call (ListContainers) never fails due to a pod container not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    		// which means the error should be ignored.
    		if crierror.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        private boolean hasRelevantFields(ClassDetails type) {
            List<Field> instanceFields = type.getInstanceFields();
            if (instanceFields.isEmpty()) {
                return false;
            }
            // Ignore irrelevant synthetic metaClass field injected by the Groovy compiler
            if (instanceFields.size() == 1 && isSyntheticMetaClassField(instanceFields.get(0))) {
                return false;
            }
            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    // *Status and its code is set to non-success if any of the plugins returns
    // anything but Success/Skip.
    // When it returns Skip status, returned PreFilterResult and other fields in status are just ignored,
    // and coupled Filter plugin/PreFilterExtensions() will be skipped in this scheduling cycle.
    // If a non-success status is returned, then the scheduling cycle is aborted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top