Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 245 for cmdtest (0.12 sec)

  1. android/guava-tests/test/com/google/common/collect/SetsTest.java

                .withFeatures(
                    CollectionSize.ANY, CollectionFeature.KNOWN_ORDER, CollectionFeature.SERIALIZABLE)
                .createTestSuite());
    
        suite.addTest(testsForFilter());
        suite.addTest(testsForFilterNoNulls());
        suite.addTest(testsForFilterFiltered());
    
        return suite;
      }
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/test_google.cc

    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //    TFCOMPILE_NAME      : Name for tests and benchmarks.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_test rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. android/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
    - 25.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tfcompile.bzl

                    "> $(OUTS)"
                ),
                tags = tags,
            )
    
            # The cc_test rule for the generated code.  To ensure that this works
            # reliably across build configurations, we must use tf_cc_test instead
            # of native.cc_test.  This is related to how we build
            # //tensorflow/core:lib -- see the note in
            # tensorflow/core/BUILD for more details.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
        // TODO(lowasser): should we force TreeMultimap to be more thorough about checking nulls?
        suite.addTest(
            SortedSetMultimapTestSuiteBuilder.using(
                    new TestStringSetMultimapGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/CompositeTestResults.java

        protected void ignored(TestResult ignoredTest) {
            ignored.add(ignoredTest);
            if (parent != null) {
                parent.ignored(ignoredTest);
            }
        }
    
        protected TestResult addTest(TestResult test) {
            tests++;
            duration += test.getDuration();
            return test;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue21897.go

    // Copyright 2017 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.
    
    //go:build darwin && cgo && !internal
    
    package cgotest
    
    /*
    #cgo LDFLAGS: -framework CoreFoundation
    #include <CoreFoundation/CoreFoundation.h>
    */
    import "C"
    import (
    	"runtime/debug"
    	"testing"
    	"unsafe"
    )
    
    func test21897(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    // Copyright 2021 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.
    
    // Issue 42580: cmd/cgo: shifting identifier position in ast
    
    package cgotest
    
    // typedef int (*intFunc) ();
    //
    // char* strarg = "";
    //
    // int func_with_char(char* arg, void* dummy)
    // {return 5;}
    //
    // int* get_arr(char* arg, void* dummy)
    // {return NULL;}
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java

          return standardTailSet(fromElement);
        }
      }
    
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTestSuite(ForwardingNavigableSetTest.class);
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/certs.go

    			return nil
    		},
    		Args: cobra.NoArgs,
    	}
    	addRenewFlags(allCmd, flags)
    
    	cmdList = append(cmdList, allCmd)
    	return cmdList
    }
    
    func addRenewFlags(cmd *cobra.Command, flags *renewFlags) {
    	options.AddConfigFlag(cmd.Flags(), &flags.cfgPath)
    	options.AddCertificateDirFlag(cmd.Flags(), &flags.cfg.CertificatesDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top