Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 248 for testLib (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava/pom.xml

                <!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
                <offlineLink>
                  <url>https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</url>
                  <location>${project.basedir}/javadoc-link/jsr305</location>
                </offlineLink>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. guava/pom.xml

                <!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
                <offlineLink>
                  <url>https://static.javadoc.io/com.google.code.findbugs/jsr305/3.0.1/</url>
                  <location>${project.basedir}/javadoc-link/jsr305</location>
                </offlineLink>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_cluster_util_test.cc

    #include "tensorflow/core/framework/graph_to_functiondef.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/graph/testlib.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            settingsFile << """
                include "testlib", "common"
            """
    
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    configurations.all {
                       resolutionStrategy.failOnVersionConflict()
                    }
                }
            """
    
            file("testlib/build.gradle") << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. android/pom.xml

      <ciManagement>
        <system>GitHub Actions</system>
        <url>https://github.com/google/guava/actions</url>
      </ciManagement>
      <modules>
        <module>guava</module>
        <module>guava-bom</module>
        <module>guava-testlib</module>
        <module>guava-tests</module>
      </modules>
      <build>
        <!-- Handle where Guava deviates from Maven defaults -->
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top