Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 276 for practice (0.15 sec)

  1. pkg/controller/garbagecollector/garbagecollector.go

    	}
    
    	// TODO: It's only necessary to talk to the API server if the owner node
    	// is a "virtual" node. The local graph could lag behind the real
    	// status, but in practice, the difference is small.
    	owner, err = gc.metadataClient.Resource(resource).Namespace(resourceDefaultNamespace(namespaced, item.identity.Namespace)).Get(ctx, reference.Name, metav1.GetOptions{})
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_tpu_device.cc

            static_cast<tpu::TpuStreamInterface*>(dst_compute_stream);
    
        if (src_compute_stream_impl->IsSameSharedMemoryLocation(
                dst_compute_stream_impl)) {
          // Surprisingly, this path does get triggered in practice.
          *output = *input;
          done(absl::OkStatus());
          return absl::OkStatus();
        }
    
        // To avoid stream exhaustion, we pick a substream from a pool if enabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/https.md

    * **After** obtaining a secure connection, the communication protocol is **still HTTP**.
        * The contents are **encrypted**, even though they are being sent with the **HTTP protocol**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/prog.go

    	// This is effectively the versioning mechanism.
    	can map[ProgCmd]bool
    
    	// fuzzDirCache is another Cache implementation to use for the FuzzDir
    	// method. In practice this is the default GOCACHE disk-based
    	// implementation.
    	//
    	// TODO(bradfitz): maybe this isn't ideal. But we'd need to extend the Cache
    	// interface and the fuzzing callers to be less disk-y to do more here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/html/template/js.go

    	// are handled in the default except for '}' which can precede a
    	// division op as in
    	//    ({ valueOf: function () { return 42 } } / 2
    	// which is valid, but, in practice, developers don't divide object
    	// literals, so our heuristic works well for code like
    	//    function () { ... }  /foo/.test(x) && sideEffect();
    	// The ')' punctuator can precede a regular expression as in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    		name:   groupName,
    	}
    
    	if existing, groupExists := rdm.apiGroups[key]; groupExists {
    		// If this version already exists, replace it
    		versionExists := false
    
    		// Not very efficient, but in practice there are generally not many versions
    		for i := range existing.Versions {
    			if existing.Versions[i].Version == value.Version {
    				// The new gv is the exact same as what is already in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

          // Expected.
        }
        assertInvariants(map);
      }
    
      public void testEntrySetSetValue() {
        // TODO: Investigate the extent to which, in practice, maps that support
        // put() also support Entry.setValue().
        if (!supportsPut) {
          return;
        }
    
        Map<K, V> map;
        V valueToSet;
        try {
          map = makePopulatedMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In summary, using a catalog is always a good engineering practice as it centralizes common definitions, allows sharing of dependency versions or plugin versions, but it is an "implementation detail" of the build: it will not be visible to consumers and unused elements of a catalog are just ignored.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Instead of relying on the `-x` parameter, defining a suitable lifecycle task for the desired action is recommended.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top