Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for outputDir (0.14 sec)

  1. src/cmd/go/internal/test/test.go

    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    	-trace trace.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

            assertThat(helpResult.output, containsString(outputFor(supportedKotlinJavaVersion(newerJvm.javaVersion!!))))
        }
    
        private
        val printScriptJavaClassFileMajorVersion = """
            println("Java Class Major Version = ${'$'}{org.gradle.internal.serialize.JavaClassUtil.getClassMajorVersion(this::class.java)}")
        """
    
        private
        fun outputFor(javaVersion: JavaVersion) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/path_config.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    PathConfig::PathConfig(const string& output_dir, const string& source_dir,
                           const string& api_dir_list,
                           const std::vector<string> op_names)
        : output_path(output_dir), op_names(op_names) {
      api_dirs = str_util::Split(api_dir_list, ",", str_util::SkipEmpty());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/build.gradle.kts

    val copyGr8OutputJarAsGradleWrapperJar by tasks.registering(Copy::class) {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        into(layout.buildDirectory.dir("libs"))
    }
    
    tasks.jar {
        from(tasks.named<Gr8Task>("gr8R8Jar").flatMap { it.outputJar() })
        dependsOn(copyGr8OutputJarAsGradleWrapperJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

          directory.
    
      Raises:
        ValueError iff the graph does not contain a valid signature or the file
        prefix tensor is not found in the graph.
      """
      create_empty_output_dir(output_dir)
      v1_builder = builder.SavedModelBuilder(output_dir)
    
      graph_def = _restore_output_tensor_names(graph_def)
      with session.Session(graph=ops.Graph()) as sess:
        importer.import_graph_def(graph_def, name='')
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          function.
    
      Raises:
        FileExistsError: Iff `output_dir` is not empty and `overwrite` is false.
      """
      dir_not_empty = (
          output_dir is not None
          and file_io.file_exists_v2(output_dir)
          and file_io.list_directory_v2(output_dir)
      )
    
      if dir_not_empty and not overwrite:
        raise FileExistsError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //	    when all tests are complete.
    //	    Writes test binary as -c would.
    //
    //	-mutexprofilefraction n
    //	    Sample 1 in n stack traces of goroutines holding a
    //	    contended mutex.
    //
    //	-outputdir directory
    //	    Place output files from profiling in the specified directory,
    //	    by default the directory in which "go test" is running.
    //
    //	-trace trace.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // [(replica:0,core:0), (replica:1,core:0), ...,
            //  (replica:0,core:1), (replica:1,core:1), ...]
            uint64_t output_id =
                core_id * num_replicas + replica_id + results.size();
            result.replaceAllUsesWith(replicate_op.getResult(output_id));
          }
        }
    
        // Assume all the replicas have the same structure.
        mlir::TF::TPUPartitionedOutputV2Op first_op = *(ops.begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    				panic("internal error: a.output not set")
    			}
    			outputID, _, err := c.Put(a.actionID, r)
    			r.Close()
    			if err == nil && cfg.BuildX {
    				sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", target, c.OutputFile(outputID))))
    			}
    			if b.NeedExport {
    				if err != nil {
    					return err
    				}
    				a.Package.Export = c.OutputFile(outputID)
    				a.Package.BuildID = a.buildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. tensorflow/BUILD

        compat_api_versions = [
            1,
            2,
        ],
        compat_init_templates = [
            "compat_template_v1.__init__.py",
            "compat_template.__init__.py",
        ],
        output_dir = "_api/v1/",
        output_files = TENSORFLOW_API_INIT_FILES_V1,
        output_package = "tensorflow._api.v1",
        packages_to_ignore = ["tensorflow.python.framework.test_ops"],
        root_file_name = "v1.py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top