Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for outputDir (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The deprecated `binResultsDir` property of the `AbstractTestTask` task type has been removed.
    Use the `binaryResultsDirectory` property instead.
    
    ==== SourceDirectorySet API Cleanup
    
    The deprecated `outputDir` property of the `SourceDirectorySet` type has been removed.
    Use the `destinationDirectory` property instead.
    
    ==== VersionCatalog API Cleanup
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K 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. src/cmd/go/internal/cache/cache.go

    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    type Cache interface {
    	// Get returns the cache entry for the provided ActionID.
    	// On miss, the error type should be of type *entryNotFoundError.
    	//
    	// After a success call to Get, OutputFile(Entry.OutputID) must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/cmd/certs_test.go

    				}
    			}
    		default:
    			outputStr := output.String()
    			if tc.brokenCertName != "" {
    				assert.Contains(t, outputStr, "!MISSING!")
    			} else {
    				assert.NotContains(t, outputStr, "!MISSING!")
    			}
    
    			var lines []string
    			for _, line := range strings.SplitAfter(outputStr, "\n") {
    				if strings.TrimSpace(line) != "" {
    					lines = append(lines, line)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top