Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for Shardz (1.37 sec)

  1. src/testing/testing.go

    		// a very clear signal. Making the two files the same may cause
    		// surprises if programs close os.Stdout but expect to be able
    		// to continue to write to os.Stderr, but it's hard to see why a
    		// test would think it could take over global state that way.
    		//
    		// This fix only helps programs where the output is coming directly
    		// from Go code. It does not help programs in which a subprocess is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    		if wd := testTimeout / 10; wd < 5*time.Second {
    			testWaitDelay = 5 * time.Second
    		} else {
    			testWaitDelay = wd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This means that tasks and operations should be deferred until they are actually needed rather than executed eagerly.
    
    Many examples in this chapter use hard-coded paths as string literals.
    This makes them easy to understand, but it is not good practice.
    The problem is that paths often change, and the more places you need to change them, the more likely you will miss one and break the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        graph_.reset(new Graph(graph_in->op_registry()));
        graph_->set_versions(graph_in->versions());
      }
    
      // TODO(b/116981129): Enhance how the device for the encapsulated subgraph is
      // determined. In case of hard placement, ensure all the encapsulated nodes
      // have the same requested device, which in turn will be the requested device
      // for the entire encapsulated subgraph. In case of soft placement, use a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                    Version.V20,
                                    prefix + prefix2 + "systemPath",
                                    key,
                                    "should use a variable instead of a hard-coded path " + sysPath,
                                    dependency);
                        } else if (sysPath.contains("${basedir}") || sysPath.contains("${project.basedir}")) {
                            addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    func (Issue7379) SomeMethod(x int) string {
    	return fmt.Sprintf("<%d>", x)
    }
    
    // This is a test for issue 7379: type assertion error caused panic, and then
    // the code to handle the panic breaks escaping. It's hard to see the second
    // problem once the first is fixed, but its fix is trivial so we let that go. See
    // the discussion for issue 7379.
    func TestPipeToMethodIsEscaped(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      template <typename PredicateT, typename... Args>
      std::unique_ptr<Predicate> Make(Args&&... args) {
        // If we ever expose the Predicate class outside this .cc file then we may
        // want to make this hard to misuse (by accidentally passing in an arbitrary
        // integer to the Predicate constructor for instance).
        return std::unique_ptr<PredicateT>(
            new PredicateT(id_counter_++, std::forward<Args>(args)...));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    		services: []*Service{svc5_1, svc5_2},
    	}
    
    	env.EndpointIndex.shardsBySvc = map[string]map[string]*EndpointShards{
    		svc5_1.Hostname.String(): {
    			svc5_1.Attributes.Namespace: {
    				Shards: map[ShardKey][]*IstioEndpoint{
    					{Cluster: "Kubernets", Provider: provider.External}: {
    						&IstioEndpoint{
    							Address:         "1.1.1.1",
    							EndpointPort:    7000,
    							ServicePortName: "uds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        }
      }];
    
      let hasVerifier = 1;
    }
    
    def TF_XlaShardingOp : TF_Op<"XlaSharding", [Pure, TF_NoConstantFold]> {
      let summary = [{
    An op which shards the input based on the given sharding attribute.
      }];
    
      let arguments = (ins
        TF_Tensor:$input,
    
        DefaultValuedStrAttr<StrAttr, "">:$sharding,
        OptionalAttr<StrAttr>:$_XlaSharding
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top