Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for outputPath (0.24 sec)

  1. tensorflow/cc/framework/gradients.cc

    #include "tensorflow/core/graph/while_context.h"
    #include "tensorflow/core/lib/gtl/map_util.h"
    #include "tensorflow/core/platform/macros.h"
    
    namespace tensorflow {
    namespace {
    
    struct OutputHash {
      uint64 operator()(const Output& x) const { return x.hash(); }
    };
    
    struct OutputEq {
      bool operator()(const Output& x, const Output& y) const {
        return (x.node() == y.node()) && (x.index() == y.index());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    authorization.AuthorizationExcepti; public boolean resourceExists(String) throws TransferFailedExcept, authorization.AuthorizationExcepti; } org/apache/maven/wagon/OutputData.class package org.apache.maven.wagon; public synchronized class OutputData { private java.io.OutputStream outputStream; private resource.Resource resource; public void OutputData(); public java.io.OutputStream getOutputStream(); public void setOutputStream(java.io.OutputStream); public resource.Resource getResource(); public void se...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 45.2K bytes
    - Viewed (1)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    authorization.AuthorizationExcepti; public boolean resourceExists(String) throws TransferFailedExcept, authorization.AuthorizationExcepti; } org/apache/maven/wagon/OutputData.class package org.apache.maven.wagon; public synchronized class OutputData { private java.io.OutputStream outputStream; private resource.Resource resource; public void OutputData(); public java.io.OutputStream getOutputStream(); public void setOutputStream(java.io.OutputStream); public resource.Resource getResource(); public void se...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 45.2K bytes
    - Viewed (1)
  4. hack/lib/golang.sh

    kube::golang::outfile_for_binary() {
      local binary=$1
      local platform=$2
      local output_path="${KUBE_GOPATH}/bin"
      local bin
      bin=$(basename "${binary}")
      if [[ "${platform}" != "${host_platform}" ]]; then
        output_path="${output_path}/${platform//\//_}"
      fi
      if [[ ${GOOS} == "windows" ]]; then
        bin="${bin}.exe"
      fi
      echo "${output_path}/${bin}"
    }
    
    # Argument: the name of a Kubernetes package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/ops.h

      uint64 hash() const { return op_.hash(index_); }
    
     private:
      Operation op_ = Operation(nullptr);
      int32 index_ = 0;
    };
    
    /// Hash class that can be used for e.g. storing Outputs in an unordered_map
    struct OutputHash {
      std::size_t operator()(const Output& output) const {
        return Hash64Combine(std::hash<Node*>()(output.node()),
                             std::hash<int32>()(output.index()));
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    Once you have a converted TfLite model ready, you can use the following command
    to use TAC to optimize for your model:
    
    ```
    bazel run -c opt //tensorflow/compiler/mlir/lite/experimental/tac:tac-translate -- <PATH_TO_YOUR_MODEL> -o=<OUTPUT_PATH> -device-specs=<HARDWARE_BACKENDS>
    ```
    
    The devices_specs is a list of the names of the desired hardware backends,
    separated by comma, e.g., "GPU,CPU".
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin.go

    		}
    	}
    	// End previous result parsing
    
    	return &conf, nil
    }
    
    func GetLoggingOptions(cfg *Config) *log.Options {
    	loggingOptions := log.DefaultOptions()
    	loggingOptions.OutputPaths = []string{"stderr"}
    	loggingOptions.JSONEncoding = true
    	if cfg != nil {
    		// Tee all logs to UDS. Stdout will go to kubelet (hard to access, UDS will be read by the CNI DaemonSet and exposed
    		// by normal `kubectl logs`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/log/scope_test.go

    	defaultScope.Error("TestBadWriter")
    }
    
    func BenchmarkLog(b *testing.B) {
    	run := func(name string, f func()) {
    		b.Run(name, func(b *testing.B) {
    			o := testOptions()
    			o.OutputPaths = []string{"/dev/null"}
    			if err := Configure(o); err != nil {
    				b.Fatalf("Got err '%v', expecting success", err)
    			}
    			for n := 0; n < b.N; n++ {
    				f()
    			}
    		})
    	}
    	run("default", func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            } else {
                return !invalidNodeRunning;
            }
        }
    
        private boolean mutationConflictsWithOtherNodes(Node node, MutationInfo mutations) {
            Set<String> nodeOutputPaths = mutations.outputPaths;
            Set<String> nodeDestroysPaths = mutations.destroyablePaths;
            if (nodeOutputPaths.isEmpty() && nodeDestroysPaths.isEmpty()) {
                return false;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/bugreport/bugreport.go

    	mkdirOrExit(logDir)
    	f, err := os.Create(logDir)
    	if err != nil {
    		return err
    	}
    	f.Close()
    	op := []string{logDir}
    	opt2 := *opt
    	opt2.OutputPaths = op
    	opt2.ErrorOutputPaths = op
    	opt2.SetDefaultOutputLevel("default", log.InfoLevel)
    
    	return log.Configure(&opt2)
    }
    
    func logRuntime(start time.Time, format string, args ...any) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top