Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for SKIPPED (0.22 sec)

  1. src/testing/testing.go

    func (c *common) SkipNow() {
    	c.checkFuzzFn("SkipNow")
    	c.mu.Lock()
    	c.skipped = true
    	c.finished = true
    	c.mu.Unlock()
    	runtime.Goexit()
    }
    
    // Skipped reports whether the test was skipped.
    func (c *common) Skipped() bool {
    	c.mu.RLock()
    	defer c.mu.RUnlock()
    	return c.skipped
    }
    
    // Helper marks the calling function as a test helper function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	winProxyOptimization := isEndpointChange && svcInfo.winProxyOptimization
    	if winProxyOptimization {
    		klog.V(3).InfoS("Skipped loadbalancer deletion.", "hnsID", svcInfo.hnsID, "nodePorthnsID", svcInfo.nodePorthnsID, "winProxyOptimization", svcInfo.winProxyOptimization, "isEndpointChange", isEndpointChange)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
      //   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    			skipped = true
    			continue
    		}
    		if skipped {
    			print(" ...\n")
    			skipped = false
    		}
    		print(" *(", label, "+", i, ") = ", hex(*(*uintptr)(unsafe.Pointer(obj + i))))
    		if i == off {
    			print(" <==")
    		}
    		print("\n")
    	}
    	if skipped {
    		print(" ...\n")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    	//   3. If any matchCondition evaluates to an error (but none are FALSE):
    	//      - If failurePolicy=Fail, reject the request
    	//      - If failurePolicy=Ignore, the policy is skipped
    	//
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		}
    
    		disabledSet := sets.New[string]()
    		for _, disabledPlugin := range e.plugins.Disabled {
    			disabledSet.Insert(disabledPlugin.Name)
    		}
    		if disabledSet.Has("*") {
    			logger.V(4).Info("Skipped MultiPoint expansion because all plugins are disabled for extension point", "extension", pluginType)
    			continue
    		}
    
    		// track plugins enabled via multipoint separately from those enabled by specific extensions,
    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. src/cmd/dist/test.go

    				timelog("skip", w.dt.name)
    				w.printSkip(t, "skipped due to earlier error")
    			} else {
    				timelog("start", w.dt.name)
    				w.err = w.cmd.Run()
    				if w.flush != nil {
    					w.flush()
    				}
    				if w.err != nil {
    					if isUnsupportedVMASize(w) {
    						timelog("skip", w.dt.name)
    						w.out.Reset()
    						w.printSkip(t, "skipped due to unsupported VMA")
    						w.err = nil
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			deviceMountPath: "plugins/csi/" + generateSha("project/zone/test-vol1") + "/globalmount",
    			jsonFile:        `{"driverName":"test-driver","volumeHandle":"test-vol1"}`,
    			stageUnstageSet: false,
    		},
    		// PV agnostic path negative test cases
    		{
    			testName:        "success: json file doesn't exist, unmount device is skipped",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterators.java

        checkNonnegative(position);
        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterators.java

        checkNonnegative(position);
        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top