Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 194 for SAME (0.2 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			// pkg is a root of the package-import graph. (Generally this means that
    			// it matches a command-line argument.) We want future invocations of the
    			// 'go' command — such as 'go test' on the same package — to continue to
    			// use the same versions of its dependencies that we are using right now.
    			// So we need to bring this package's dependencies inside the pruned
    			// module graph.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              << "embedding backwards pass op with no forwards pass ops.";
          return signalPassFailure();
        }
      }
    
      // Ensure that all ops are in the same region, and have the same replication
      // info.
      // TODO(bfontain): Allow for multiple regions/loops in one module.
      // TODO(patn): move this pass after cluster formation to remove the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    // If the test file is in the same package, it may refer to unexported
    // identifiers within the package, as in this example:
    //
    //	package abs
    //
    //	import "testing"
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (Operation* op : cluster_ops) {
        llvm::SmallDenseSet<Operation*, 4> user_set;
        for (Operation* user : op->getUsers()) {
          // We skip any operations that are in the same outside compilation
          // cluster that will be moved to the host at the same time since both
          // defining op and user op will be moved to host.
          if (cluster_ops.count(user)) {
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // CHECK: %[[CALL_0:.+]] = call @quantized_conv_fn(%[[UNIFORM_QUANTIZE_0]], %[[CONST_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  6. src/time/time.go

    // use monotonic clocks, but understanding those details is not required
    // to use this package.
    //
    // The Time returned by time.Now contains a monotonic clock reading.
    // If Time t has a monotonic clock reading, t.Add adds the same duration to
    // both the wall clock and monotonic clock readings to compute the result.
    // Because t.AddDate(y, m, d), t.Round(d), and t.Truncate(d) are wall time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    //
    // If a vendoring configuration file is present, CreateModFile will attempt to
    // translate it to go.mod directives. The resulting build list may not be
    // exactly the same as in the legacy configuration (for example, we can't get
    // packages at multiple versions from the same module).
    func CreateModFile(ctx context.Context, modPath string) {
    	modRoot := base.Cwd()
    	modRoots = []string{modRoot}
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    				},
    			},
    			allowed:     true,
    			allowedEver: true,
    		},
    		{
    			// TODO: Do we want to allow a non-static pod with the same full name
    			// as the started static pod?
    			desc: "non-static pod when there is a started static pod with the same full name",
    			pod:  newNamedPod("uid-0", "ns", "test", false),
    			podSyncStatuses: map[types.UID]*podSyncStatus{
    				"uid-0": {
    					fullname: "test_",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. .bazelrc

    # See https://github.com/protocolbuffers/upb/blob/9effcbcb27f0a665f9f345030188c0b291e32482/upb/upb.c#L183.
    build:rbe_linux_cpu --copt=-Wno-gnu-offsetof-extensions
    # Python config is the same across all containers because the binary is the same
    build:rbe_linux_cpu --repo_env=TF_PYTHON_CONFIG_REPO="@sigbuild-r2.17-clang_config_python"
    build:rbe_linux_cpu --python_path="/usr/bin/python3"
    # These you may need to change for your own GCP project.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    // buildSidecarOutboundListener builds a single listener and
    // adds it to the listenerMap provided by the caller.  Listeners are added
    // if one doesn't already exist. HTTP listeners on same port are ignored
    // (as vhosts are shipped through RDS).  TCP listeners on same port are
    // allowed only if they have different CIDR matches.
    func (lb *ListenerBuilder) buildSidecarOutboundListener(listenerOpts outboundListenerOpts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top