Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for lease (0.09 sec)

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

    This type had a number of drawbacks.
    In particular using this type it was not possible to determine what input a change was associated with.
    
    You should now use the `InputChanges` type instead.
    Please refer to the <<custom_tasks.adoc#sec:implementing_an_incremental_task, userguide section about implementing incremental tasks for more details>>.
    
    === Potential breaking changes
    
    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. src/runtime/pprof/pprof_test.go

    	// We used to always require at least ideal/4 samples,
    	// but that is too hard to guarantee on a loaded system.
    	// Now we accept 10 or more samples, which we take to be
    	// enough to show that at least some profiling is occurring.
    	if ideal := uintptr(duration * 100 / time.Second); samples == 0 || (samples < ideal/4 && samples < 10) {
    		t.Logf("too few samples; got %d, want at least %d, ideally %d", samples, ideal/4, ideal)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// data in the structures here to prevent cases when padding/packing enabled by
    /// different compiler options breaks compatibility. For more details about how
    /// this is used, please consult next sections. Here we just wrap these tables
    /// in lint warnings so that changes here cause changes to the versioning data
    /// as well. Here is a short summary of what changes are allowed:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Finds a path in `cycles_graph_` from `from` to `to` that is not a direct
      // edge from `from` to `to`.
      //
      // Tries to find a path that contains at least one unclusterable node.
      std::vector<int> FindAlternatePathForDebugging(int from, int to);
    
      // Returns a string representing `cycles_graph_node_id`.  If the node is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		return c.in.setErrorLocked(errors.New("tls: too many ignored records"))
    	}
    	return c.readRecordOrCCS(expectChangeCipherSpec)
    }
    
    // atLeastReader reads from R, stopping with EOF once at least N bytes have been
    // read. It is different from an io.LimitedReader in that it doesn't cut short
    // the last Read call, and in that it considers an early EOF an error.
    type atLeastReader struct {
    	R io.Reader
    	N int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/types.go

    	// auditAnnotations contains CEL expressions which are used to produce audit
    	// annotations for the audit event of the API request.
    	// validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is
    	// required.
    	// A maximum of 20 auditAnnotation are allowed per ValidatingAdmissionPolicy.
    	// +optional
    	AuditAnnotations []AuditAnnotation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    		var maxUsedPct int
    		for _, disk := range zinfo {
    			if disk == nil || disk.Total == 0 {
    				continue
    			}
    			available += disk.Total - disk.Used
    
    			// set maxUsedPct to the value from the disk with the least space percentage.
    			if pctUsed := int(disk.Used * 100 / disk.Total); pctUsed > maxUsedPct {
    				maxUsedPct = pctUsed
    			}
    		}
    
    		// Since we are comparing pools that may have a different number of sets
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    			if x.StructType().Map.MapType().Bucket != x {
    				return CMPlt // bucket maps are least
    			}
    			return t.StructType().Map.cmp(x.StructType().Map)
    		} else if x.StructType().Map.MapType().Bucket == x {
    			return CMPgt // bucket maps are least
    		} // If t != t.Map.Bucket, fall through to general case
    
    		tfs := t.Fields()
    		xfs := x.Fields()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                             TF::StatefulPartitionedCallOp& caller) {
      const std::string name = "start_step_0";
    
      AddAssertion(builder, loc, cond_value,
                   "[StartStep0] Auto-pipelining requires at least two steps.");
      auto insertion_point = builder.saveInsertionPoint();
    
      func::FuncOp orig_parent_func =
          callers.backward->getParentOfType<func::FuncOp>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      # the packet gets replaced from the pod IP to the service VIP. The packet
      # will then leave the VM and return back through hairpinning.
      #
      # When IP alias is enabled, IP forwarding is disabled for anti-spoofing;
      # the packet with the service VIP will get blocked and be lost. With this
      # route, the packet will be routed to the pod subnetwork, and not leave the
      # VM.
      $mgmt_net_adapter = Get_MgmtNetAdapter
      New-NetRoute `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top