Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for SKIPPED (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run "copy"
    
            then:
            skipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            executedAndNotSkipped(':copy')
    
            when:
            run "copy", "-Dcase-sensitive"
    
            then:
            skipped(':copy')
        }
    
        @ToBeImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/apis/admissionregistration/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
    	//
    	// +optional
    	MatchConditions []MatchCondition
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    | `INFO`
    | link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLogEvent.html#FAILED[Test failures], link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLogEvent.html#SKIPPED[skipped tests], link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLogEvent.html#STANDARD_OUT[test standard output] and link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLogEvent.html#STANDARD_ERROR[test standard error]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top