Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for cmdtest (0.2 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

      }
    
      @Override
      public TestSuite createTestSuite() {
        withFeatures(KNOWN_ORDER);
        TestSuite suite = super.createTestSuite();
        for (TestSuite subSuite : createDerivedSuites(this)) {
          suite.addTest(subSuite);
        }
        return suite;
      }
    
      @SuppressWarnings("rawtypes") // class literals
      @Override
      protected List<Class<? extends AbstractTester>> getTesters() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/EnumBiMapTest.java

          return new Currency[length];
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(
            BiMapTestSuiteBuilder.using(new EnumBiMapGenerator())
                .named("EnumBiMap")
                .withFeatures(
                    CollectionSize.ANY,
                    CollectionFeature.SERIALIZABLE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/math/big/nat_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package big
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    var cmpTests = []struct {
    	x, y nat
    	r    int
    }{
    	{nil, nil, 0},
    	{nil, nat(nil), 0},
    	{nat(nil), nil, 0},
    	{nat(nil), nat(nil), 0},
    	{nat{0}, nat{0}, 0},
    	{nat{0}, nat{1}, -1},
    	{nat{1}, nat{0}, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

        private static final long serialVersionUID = 0;
      }
    
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(SynchronizedNavigableMapTest.class);
        suite.addTest(
            NavigableMapTestSuiteBuilder.using(
                    new TestStringSortedMapGenerator() {
                      private final Object mutex = new Integer(1);
    
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

      }
    
      @Override
      public TestSuite createTestSuite() {
        withFeatures(KNOWN_ORDER);
        TestSuite suite = super.createTestSuite();
        for (TestSuite subSuite : createDerivedSuites(this)) {
          suite.addTest(subSuite);
        }
        return suite;
      }
    
      @SuppressWarnings("rawtypes") // class literals
      @Override
      protected List<Class<? extends AbstractTester>> getTesters() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/testx.go

    // This file contains //export directives on Go functions
    // and so it must NOT contain C definitions (only declarations).
    // See test.go for C definitions.
    
    package cgotest
    
    import (
    	"runtime"
    	"runtime/cgo"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    /*
    // threads
    extern void doAdd(int, int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //         for (Object suiteOrClass : suiteOrClasses) {
      //             if (suiteOrClass instanceof TestSuite)
      //                 suite.addTest((TestSuite) suiteOrClass);
      //             else if (suiteOrClass instanceof Class)
      //                 suite.addTest(new TestSuite((Class<?>) suiteOrClass));
      //             else
      //                 throw new ClassCastException("not a test suite or class");
      //         }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

         --no-split-project     Disables option --split-project.
    
         --test-framework     Set the test framework to be used.
                              Available values are:
                                   cpptest
                                   junit
                                   junit-jupiter
                                   kotlintest
                                   scalatest
                                   spock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/init.go

    				return err
    			}
    			return nil
    		}()
    	})
    	return compiler.version, compiler.err
    }
    
    // compilerRequiredAsanVersion is a copy of the function defined in
    // cmd/cgo/internal/testsanitizers/cc_test.go
    // compilerRequiredAsanVersion reports whether the compiler is the version
    // required by Asan.
    func compilerRequiredAsanVersion() error {
    	compiler, err := compilerVersion()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/cshared_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cshared_test
    
    import (
    	"bufio"
    	"bytes"
    	"cmd/cgo/internal/cgotest"
    	"debug/elf"
    	"debug/pe"
    	"encoding/binary"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"unicode"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top