Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for testLib (0.5 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/test.go

    	t := &testLib{version: math.MaxUint32}
    	for _, o := range options {
    		t = o(t)
    	}
    	return cel.Lib(t)
    }
    
    type testLib struct {
    	version uint32
    }
    
    func (*testLib) LibraryName() string {
    	return "k8s.test"
    }
    
    type TestOption func(*testLib) *testLib
    
    func TestVersion(version uint32) func(lib *testLib) *testLib {
    	return func(sl *testLib) *testLib {
    		sl.version = version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. guava-testlib/README.md

    # Guava Testlib: Google Testing Libraries for Java
    
    Guava testlib is a set of Java classes for more convenient
    unit testing.
    
    ## Adding Guava Testlib to your build
    
    Guava testlib's Maven group ID is `com.google.guava` and its artifact ID is `guava-testlib`.
    
    To add a dependency on Guava testlib using Maven, use the following:
    
    ```xml
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. android/guava-testlib/pom.xml

      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>HEAD-android-SNAPSHOT</version>
      </parent>
      <artifactId>guava-testlib</artifactId>
      <name>Guava Testing Library</name>
      <description>
        Guava testlib is a set of java classes used for more convenient
        unit testing - particularly to assist the tests for Guava itself.
      </description>
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. guava-testlib/pom.xml

      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>HEAD-jre-SNAPSHOT</version>
      </parent>
      <artifactId>guava-testlib</artifactId>
      <name>Guava Testing Library</name>
      <description>
        Guava testlib is a set of java classes used for more convenient
        unit testing - particularly to assist the tests for Guava itself.
      </description>
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. util/gradle_integration_tests.sh

    #!/bin/bash
    
    set -eu
    
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android
    
    # Gradle Wrapper overwrites some files when it runs.
    # To avoid modifying the Git client, we copy everything we need to another directory.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. guava-bom/pom.xml

            <artifactId>guava-gwt</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava-testlib</artifactId>
            <version>${project.version}</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. android/guava-bom/pom.xml

            <artifactId>guava</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava-testlib</artifactId>
            <version>${project.version}</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. guava-tests/pom.xml

      <description>
        The unit tests for the Guava libraries - separated into a
        separate artifact to allow for the testlibs to depend on guava
        itself.
      </description>
      <dependencies>
        <dependency>
          <groupId>${project.groupId}</groupId>
          <artifactId>guava-testlib</artifactId>
          <version>${project.version}</version>
          <scope>test</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 19:01:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/nm/nm_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	src := filepath.Join(libpath, "a.go")
    	file, err := os.Create(src)
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = template.Must(template.New("mylib").Parse(testlib)).Execute(file, iscgo)
    	if e := file.Close(); err == nil {
    		err = e
    	}
    	if err == nil {
    		err = os.WriteFile(filepath.Join(libpath, "go.mod"), []byte("module mylib\n"), 0666)
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            def library = Stub(DefaultSwiftSharedLibrary)
            library.name >> name
            library.names >> Names.of(name)
            library.module >> Providers.of("TestLib")
            library.baseName >> Providers.of("test_lib")
            library.targetMachine >> Stub(SwiftPlatform)
            library.sourceCompatibility >> Stub(PropertyInternal) { getType() >> null }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top