Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 766 for AbTest (0.14 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    executed Test ${maybeParentheses('test')}(AbTest)
    executed Test ${maybeParentheses('test')}(AdTest)
    executed Test ${maybeParentheses('test')}(AyTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                include '*ATest*', '*BTest*'
                filter.includePatterns = [ '*BTest*', '*CTest*' ]
            }
            """
    
            when:
            createTestABC()
    
            and:
            succeedsWithTestTaskArguments('test', '--info')
    
            then:
            def result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted("BTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

            def candidate1 = candidate("best", "best", "best")
            def candidate2 = candidate("best", "best", "compatible")
            def candidate3 = candidate("best", "compatible", "compatible")
            def candidate4 = candidate("compatible", "best", "best")
            def candidate5 = candidate("compatible", "compatible", "best")
            def candidate6 = candidate("compatible", "compatible", "compatible")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/qos/qos_test.go

    			expected: v1.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("best-effort-best-effort", []v1.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    			}),
    			expected: v1.PodQOSBestEffort,
    		},
    		{
    			pod: newPod("best-effort", []v1.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

          } else {
            return position[a] < position[b];  // preserve order
          }
        };
    
        Operation* best = nullptr;
        for (Operation* op : ready) {
          if (best == nullptr || better(op, best)) {
            best = op;
          }
        }
    
        if (!best) {
          assert(ready.empty());
          return result;  // happens for unused results for ops in the todo list
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/go/doc/comment/wrap_test.go

    	// Quadratic dynamic programming algorithm for line wrapping problem.
    	// best[i] tracks the best score possible for words[:i],
    	// assuming that for i < len(words) the line breaks after those words.
    	// bestleft[i] tracks the previous line break for best[i].
    	best := make([]int64, len(words)+1)
    	bestleft := make([]int, len(words)+1)
    	best[0] = 0
    	for i, w := range words {
    		if utf8.RuneCountInString(w) >= max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                        }
                        best = best != null ? best : moduleResolution;
                        break;
                    default:
                        throw new IllegalStateException("Unexpected state for resolution: " + metaDataResolveResult.getState());
                }
            }
    
            return best;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.accept(other, "requested", "best")
            schema.prefer(other, "best")
    
            def candidate1 = attributes(usage: "best", other: "compatible")
            def candidate2 = attributes(usage: "no match", other: "no match")
            def candidate3 = attributes(usage: "compatible", other: "best")
            def candidate4 = attributes()
            def candidate5 = attributes(usage: "best", other: "best")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            def candidates = [value1, value2] as Set
    
            when:
            def best = schema.matcher().selectionSchema.disambiguate(attr, flavor('requested'), candidates)
    
            then:
            best == [value1] as Set
    
            when:
            best = schema.matcher().selectionSchema.disambiguate(attr, value2, candidates)
    
            then:
            best == [value1] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    	}{
    		{
    			description:    "Policy is set to none",
    			policyName:     "none",
    			expectedPolicy: "none",
    		},
    		{
    			description:    "Policy is set to best-effort",
    			policyName:     "best-effort",
    			expectedPolicy: "best-effort",
    		},
    		{
    			description:    "Policy is set to restricted",
    			policyName:     "restricted",
    			expectedPolicy: "restricted",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top