Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 291 for AbTest (0.23 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
                if (release.version.version == requested) {
                    return release
                }
                if (!release.version.snapshot && release.version.baseVersion.version == requested && (best == null || best.version < release.version)) {
                    best = release
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. cmd/metacache-bucket.go

    			bucket: o.Bucket,
    			status: scanStateNone,
    		}
    	}
    
    	// Create new and add.
    	best := o.newMetacache()
    	b.caches[o.ID] = best
    	b.cachesRoot[best.root] = append(b.cachesRoot[best.root], best.id)
    	b.updated = true
    	b.debugf("returning new cache %s, bucket: %v", best.id, best.bucket)
    	return best
    }
    
    // cleanup removes redundant and outdated entries.
    func (b *bucketMetacache) cleanup() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/text/template/example_test.go

    	// Thank you for the lovely bone china tea set.
    	//
    	// Best wishes,
    	// Josie
    	//
    	// Dear Uncle John,
    	//
    	// It is a shame you couldn't make it to the wedding.
    	// Thank you for the lovely moleskin pants.
    	//
    	// Best wishes,
    	// Josie
    	//
    	// Dear Cousin Rodney,
    	//
    	// It is a shame you couldn't make it to the wedding.
    	//
    	// Best wishes,
    	// Josie
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  9. cni/pkg/repair/netns.go

    			log.Warnf("failed to read proc %v stats: %v", p.PID, err)
    			if best == "" {
    				best = ns
    			}
    			continue
    		}
    		// Get the oldest one.
    		if s.Starttime < oldest {
    			oldest = s.Starttime
    			best = ns
    		}
    	}
    	if best == "" {
    		return "", fmt.Errorf("failed to find network namespace")
    	}
    	return best, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. docs/en/docs/history-design-future.md

    </blockquote>
    
    ## Investigation
    
    By using all the previous alternatives I had the chance to learn from all of them, take ideas, and combine them in the best way I could find for myself and the teams of developers I have worked with.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top