Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for cmdtest (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    		return
    	}
    	costEst, err := ruleEnv.EstimateCost(ast, estimator)
    	if err != nil {
    		compilationResult.Error = &apiservercel.Error{Type: apiservercel.ErrorTypeInternal, Detail: "cost estimation failed: " + err.Error()}
    		return
    	}
    	compilationResult.MaxCost = costEst.Max
    	compilationResult.MaxCardinality = maxCardinality
    	compilationResult.Program = prog
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

     */
    public class ImmutableSortedMultisetTest extends TestCase {
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(ImmutableSortedMultisetTest.class);
    
        suite.addTest(
            SortedMultisetTestSuiteBuilder.using(
                    new TestStringMultisetGenerator() {
                      @Override
                      protected Multiset<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

              TimeoutsToUse.ANY,
              isInterruptible(method) ? Outcome.INTERRUPT : Outcome.SUCCESS);
        } else { // any waitForXxx method
          suite.addTest(generateWaitForWhenNotOccupyingTestCase(method, true));
          suite.addTest(generateWaitForWhenNotOccupyingTestCase(method, false));
          addTests(
              suite, method, Scenario.SATISFIED_BEFORE_WAITING, TimeoutsToUse.ANY, Outcome.SUCCESS);
          addTests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

     */
    @GwtIncompatible // NavigableMap
    public class TreeRangeMapTest extends TestCase {
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(TreeRangeMapTest.class);
        suite.addTest(
            MapTestSuiteBuilder.using(
                    new TestMapGenerator<Range<Integer>, String>() {
                      @Override
                      public SampleElements<Entry<Range<Integer>, String>> samples() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        TestSuite suite = new TestSuite();
        for (boolean asByteSource : new boolean[] {false, true}) {
          suite.addTest(
              CharSourceTester.tests(
                  "CharSource.wrap[CharSequence]",
                  SourceSinkFactories.stringCharSourceFactory(),
                  asByteSource));
          suite.addTest(
              CharSourceTester.tests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

          TestSuite testerSuite =
              makeSuiteForTesterClass((Class<? extends AbstractTester<?>>) testerClass);
          if (testerSuite.countTestCases() > 0) {
            suite.addTest(testerSuite);
          }
        }
        return suite;
      }
    
      /** Throw {@link IllegalStateException} if {@link #createTestSuite()} can't be called yet. */
      protected void checkCanCreate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/plugin_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package plugin_test
    
    import (
    	"bytes"
    	"cmd/cgo/internal/cgotest"
    	"context"
    	"flag"
    	"fmt"
    	"internal/platform"
    	"internal/testenv"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

     */
    public class ImmutableSortedMultisetTest extends TestCase {
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(ImmutableSortedMultisetTest.class);
    
        suite.addTest(
            SortedMultisetTestSuiteBuilder.using(
                    new TestStringMultisetGenerator() {
                      @Override
                      protected Multiset<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        TestSuite suite = new TestSuite();
        for (boolean asCharSource : new boolean[] {false, true}) {
          suite.addTest(
              ByteSourceTester.tests(
                  "ByteSource.wrap[byte[]]",
                  SourceSinkFactories.byteArraySourceFactory(),
                  asCharSource));
          suite.addTest(
              ByteSourceTester.tests(
                  "ByteSource.empty[]", SourceSinkFactories.emptyByteSourceFactory(), asCharSource));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	}
    
    	// Construct and log command line.
    	// There is no newline in the log print.
    	// The line will be completed when the command finishes.
    	cmdText := strings.Join(append(append(env, b.Cmd), args...), " ")
    	fmt.Fprintf(b.Stderr, "bisect: run: %s...", cmdText)
    
    	// Run command with args and env.
    	var out []byte
    	var err error
    	if b.TestRun != nil {
    		out, err = b.TestRun(env, b.Cmd, args)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top