Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for build (0.35 sec)

  1. tensorflow/BUILD

            "//tensorflow/core/platform:build_config_root_bzl",
            "//tensorflow/core/platform:rules_cc_bzl",
            "//third_party/compute_library:build_defs_bzl",
            "//third_party/llvm_openmp:openmp_bzl",
            "//third_party/mkl_dnn:build_defs_bzl",
            "@bazel_skylib//lib:new_sets",
            "@bazel_skylib//rules:common_settings",
            "@local_config_cuda//cuda:build_defs_bzl",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  2. .teamcity/test-buckets.json

    					"jacoco",
    					"launcher",
    					"plugins-java",
    					"antlr",
    					"base-services",
    					"build-cache",
    					"build-cache-http",
    					"build-cache-local",
    					"build-cache-spi",
    					"build-configuration",
    					"build-events",
    					"build-init",
    					"build-profile",
    					"composite-builds",
    					"configuration-cache",
    					"core",
    					"core-api",
    					"declarative-dsl-core",
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed May 01 00:36:47 GMT 2024
    - 50.1K bytes
    - Viewed (0)
  3. .bazelrc

    build:ios --apple_platform_type=ios
    build:ios --apple_bitcode=embedded --copt=-fembed-bitcode
    build:ios --copt=-Wno-c++11-narrowing
    build:ios_armv7 --config=ios
    build:ios_armv7 --cpu=ios_armv7
    build:ios_arm64 --config=ios
    build:ios_arm64 --cpu=ios_arm64
    build:ios_arm64e --config=ios
    build:ios_arm64e --cpu=ios_arm64e
    build:ios_sim_arm64 --config=ios
    build:ios_sim_arm64 --cpu=ios_sim_arm64
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        server.enqueue(
          MockResponse.Builder()
            .body("abc")
            .build(),
        )
        val ipAddress = InetAddress.getLoopbackAddress().hostAddress
        val call =
          client.newCall(
            Request.Builder()
              .url(server.url("/").newBuilder().host(ipAddress!!).build())
              .build(),
          )
        val response = call.execute()
        assertThat(response.code).isEqualTo(200)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                if (project.getFile() != null) {
                    Build build = project.getBuild().getDelegate();
                    project.addScriptSourceRoot(build.getScriptSourceDirectory());
                    project.addCompileSourceRoot(build.getSourceDirectory());
                    project.addTestCompileSourceRoot(build.getTestSourceDirectory());
                }
    
                project.setActiveProfiles(Stream.concat(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(base.newBuilder("https://host2")!!.build())
          .isEqualTo(parse("https://host2/"))
        assertThat(base.newBuilder("//host2")!!.build())
          .isEqualTo(parse("http://host2/"))
        assertThat(base.newBuilder("/path")!!.build())
          .isEqualTo(parse("http://host/path"))
        assertThat(base.newBuilder("path")!!.build())
          .isEqualTo(parse("http://host/a/path"))
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("test", pom.getValue("build/defaultGoal"));
            assertEquals("coreit", pom.getValue("build/finalName"));
    
            assertPathSuffixEquals("build", pom.getValue("build/directory"));
            assertPathSuffixEquals("build/main", pom.getValue("build/outputDirectory"));
            assertPathSuffixEquals("build/test", pom.getValue("build/testOutputDirectory"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .body("A")
            .bodyDelay(1, TimeUnit.SECONDS)
            .build(),
        )
        val client1 =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(2))
            .build()
        val call1 =
          client1
            .newCall(
              Request.Builder()
                .url(server.url("/"))
                .build(),
            )
        val client2 =
          client.newBuilder()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  9. configure.py

      build_tools = os.path.join(android_sdk_home_path, 'build-tools')
      versions = sorted(os.listdir(build_tools))
    
      def valid_build_tools(version):
        return os.path.exists(
            os.path.join(android_sdk_home_path, 'build-tools', version))
    
      android_build_tools_version = prompt_loop_or_load_from_env(
          environ_cp,
          var_name='ANDROID_BUILD_TOOLS_VERSION',
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        final ExecutionException ee = new ExecutionException(cause);
    
        LoadingCache<Object, Object> cacheUnchecked =
            CacheBuilder.newBuilder().build(exceptionLoader(uee));
        LoadingCache<Object, Object> cacheChecked =
            CacheBuilder.newBuilder().build(exceptionLoader(ee));
    
        try {
          cacheUnchecked.get(new Object());
          fail();
        } catch (ExecutionException e) {
          fail();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 86.2K bytes
    - Viewed (0)
Back to top