Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for lib3 (0.04 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/graph/graph_node_util.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/lib/hash/hash.h"
    
    // ALGORITHM OVERVIEW
    // ==================
    //
    // We map every output produced by each node in the TensorFlow graph (including
    // control dependence) into an instance of the Predicate class.  Instances of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    				if err := cmd.Run(); err != nil {
    					// Skip these tests
    					staticCheck.skip = func(*distTest) (string, bool) {
    						return "No support for static linking found (lacks libc.a?), skip cgo static linking test.", true
    					}
    				}
    			}
    
    			// Doing a static link with boringcrypto gets
    			// a C linker warning on Linux.
    			// in function `bio_ip_and_port_to_socket_and_addr':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
      string pullPolicy = 5;
    
      // The directory path within the cluster node's filesystem where the CNI binaries are to be installed. Typically /var/lib/cni/bin.
      string cniBinDir = 6;
    
      // The directory path within the cluster node's filesystem where the CNI configuration files are to be installed. Typically /etc/cni/net.d.
      string cniConfDir = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/test.h"
    
    using ::tensorflow::testing::FindNodeByName;
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Declare plugin dependencies in the root build script using the `buildscript {}` block
    ====
    include::sample[dir="snippets/kotlinDsl/androidBuild/kotlin",files="settings.gradle.kts[tags=android];build.gradle.kts[tags=android-buildscript];lib/build.gradle.kts[tags=android];app/build.gradle.kts[tags=android]"]
    ====
    
    This technique is not that different from what Android Studio produces when creating a new build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	}
    	setPkga := func() {
    		switch ctxt.Compiler {
    		case "gccgo":
    			dir, elem := pathpkg.Split(p.ImportPath)
    			pkga = pkgtargetroot + "/" + dir + "lib" + elem + ".a"
    		case "gc":
    			pkga = pkgtargetroot + "/" + p.ImportPath + ".a"
    		}
    	}
    	setPkga()
    
    	binaryOnly := false
    	if IsLocalImport(path) {
    		pkga = "" // local imports have no installed path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * copy the files. Example:
         * <pre>
         * copy {
         *    from configurations.runtimeClasspath
         *    into 'build/deploy/lib'
         * }
         * </pre>
         * Note that CopySpecs can be nested:
         * <pre>
         * copy {
         *    into 'build/webroot'
         *    exclude '**&#47;.svn/**'
         *    from('src/main/webapp') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top