Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for biases (0.15 sec)

  1. cluster/gce/util.sh

      local zone="${2}"
      local ip="${3}"
    
      local aliases
      aliases=$(gcloud compute instances describe "${name}" --project "${PROJECT}" --zone "${zone}" --flatten='networkInterfaces[0].aliasIpRanges[]' --format='value[separator=':'](networkInterfaces[0].aliasIpRanges.subnetworkRangeName,networkInterfaces[0].aliasIpRanges.ipCidrRange)' | sed 's/^://' | paste -s -d';' -)
      aliases="${aliases:+${aliases};}${ip}/32"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def MarkInputOutputAliasesPass : Pass<"tf-device-mark-input-output-aliases", "ModuleOp"> {
      let summary = "Marks device cluster inputs-output pairs that read/write to the same variable as aliases";
    
      let description = [{
        This pass analyzes the inputs and outputs to device cluster and marks those
        input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		// updated during the eviciton (due to either node resource pressure or
    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    		if _, condition := podutil.GetPodConditionFromList(oldPodStatus.Conditions, cType); condition != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    //	//go:generate -command xxx args...
    //
    // specifies, for the remainder of this source file only, that the
    // string xxx represents the command identified by the arguments. This
    // can be used to create aliases or to handle multiword generators.
    // For example,
    //
    //	//go:generate -command foo go tool foo
    //
    // specifies that the command "foo" represents the generator
    // "go tool foo".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top