Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for deps (0.21 sec)

  1. tensorflow/BUILD

    # bool_flag(
    #     name = "tf_no_prod_deps",
    #     build_setting_default = False,
    # )
    #
    # config_setting(
    #     name = "no_prod_deps_define",
    #     define_values = {"tf_no_prod_deps": "1"},
    # )
    #
    # config_setting(
    #     name = "no_prod_deps_flag",
    #     flag_values = {":tf_no_prod_deps": "True"},
    # )
    #
    # selects.config_setting_group(
    #     name = "no_prod_deps",
    #     match_any = [
    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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
            for (Iterator<Dependency> it = deps.iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    "excluded-managed-dep", pom.getValue("dependencyManagement/dependencies[1]/exclusions[1]/artifactId"));
    
            assertEquals(1, ((List<?>) pom.getValue("dependencies")).size());
            assertEquals("org.apache.maven.its", pom.getValue("dependencies[1]/groupId"));
            assertEquals("dep", pom.getValue("dependencies[1]/artifactId"));
    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)
  4. .bazelrc

    build:release_cpu_windows --config=release_base
    
    # TODO(kanglan): Update windows configs after b/289091160 is fixed
    build:release_cpu_windows --config=avx_win
    build:release_cpu_windows --define=no_tensorflow_py_deps=true
    
    # Exclude TFRT integration for anything but Linux.
    build:android --config=no_tfrt
    build:macos   --config=no_tfrt
    build:windows --config=no_tfrt
    build:rocm --config=no_tfrt
    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)
  5. tensorflow/c/c_api_test.cc

      TF_Operation* feed4 =
          TF_GraphOperationByName(graph, "imported4/imported2/feed");
    
      // Check that imported `imported3/scalar` has remapped control dep from
      // original graph and imported control dep
      num_control_inputs = TF_OperationGetControlInputs(
          scalar4, control_inputs, TF_OperationNumControlInputs(scalar4));
      ASSERT_EQ(2, num_control_inputs);
      EXPECT_EQ(feed, control_inputs[0]);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  6. okhttp/api/okhttp.api

    	public static final field TLS_FALLBACK_SCSV Lokhttp3/CipherSuite;
    	public static final field TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 Lokhttp3/CipherSuite;
    	public static final field TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA Lokhttp3/CipherSuite;
    	public static final field TLS_KRB5_EXPORT_WITH_RC4_40_MD5 Lokhttp3/CipherSuite;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  7. kotlin-js-store/yarn.lock

      integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
    
    depd@2.0.0:
      version "2.0.0"
      resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
      integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
    
    destroy@1.2.0:
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test.cc

      server_def_0.mutable_default_session_config()->set_isolate_session_state(
          false);
      tensorflow::ServerDef server_def_1 =
          ReplaceTaskInServerDef(server_def_0, /*task_index=*/0);
    
      // These server defs have task index set to 0.
      string serialized_server_def_0 = server_def_0.SerializeAsString();
      string serialized_server_def_1 = server_def_1.SerializeAsString();
    
      // Create two worker tasks.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
Back to top