Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for sig2 (0.07 sec)

  1. configure.py

        # maximum performance should compile TF in their environment and can pass
        # `-march=native` there.
        # See https://github.com/tensorflow/tensorflow/issues/45744 and duplicates
        default_cc_opt_flags = '-Wno-sign-compare'
      question = ('Please specify optimization flags to use during compilation when'
                  ' bazel option "--config=opt" is specified [Default is %s]: '
                 ) % default_cc_opt_flags
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        }
      }];
    }
    
    def TF_SignOp : TF_Op<"Sign", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Returns an element-wise indication of the sign of a number.";
    
      let description = [{
    `y = sign(x) = -1` if `x < 0`; 0 if `x == 0`; 1 if `x > 0`.
    
    For complex numbers, `y = sign(x) = x / |x|` if `x != 0`, otherwise `y = 0`.
    
    Example usage:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	"k8s.io/kubernetes/pkg/proxy/metrics"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	"k8s.io/kubernetes/pkg/util/async"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    	"sigs.k8s.io/knftables"
    )
    
    const (
    	// Our nftables table. All of our chains/sets/maps are created inside this table,
    	// so they don't need any "kube-" or "kube-proxy-" prefix of their own.
    	kubeProxyTable = "kube-proxy"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			case 82:
    				op = ssa.OpTrunc64to16
    			case 84:
    				op = ssa.OpTrunc64to32
    			default:
    				s.Fatalf("weird integer truncation %v -> %v", ft, tt)
    			}
    		} else if ft.IsSigned() {
    			// sign extension
    			switch 10*ft.Size() + tt.Size() {
    			case 12:
    				op = ssa.OpSignExt8to16
    			case 14:
    				op = ssa.OpSignExt8to32
    			case 18:
    				op = ssa.OpSignExt8to64
    			case 24:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    # this, but PyYAML isn't shipped by default, and *rant rant rant ... SIGH*
    function yaml-quote {
      echo "${@:-}" | sed -e "s/'/''/g;s/^/'/i;s/$/'/i"
    }
    
    # Writes the cluster location into a temporary file.
    # Assumed vars
    #   ZONE
    function write-cluster-location {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    				return errFileCorrupt
    			}
    			resp, err := disks[index].RenameData(ctx, srcBucket, srcEntry, fi, dstBucket, dstEntry, RenameOptions{})
    			if err != nil {
    				return err
    			}
    			diskVersions[index] = resp.Sign
    			dataDirs[index] = resp.OldDataDir
    			return nil
    		}, index)
    	}
    
    	// Wait for all renames to finish.
    	errs := g.Wait()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		// it heal during the regular scanner cycle.
    		dst := []byte{}
    		for _, ver := range xlMeta.versions {
    			dst = slices.Grow(dst, 16)
    			copy(dst[len(dst):], ver.header.VersionID[:])
    		}
    		res.Sign = dst
    	}
    
    	newDstBuf, err := xlMeta.AppendTo(metaDataPoolGet())
    	defer metaDataPoolPut(newDstBuf)
    	if err != nil {
    		if legacyPreserved {
    			s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // during the build. To embed spaces in an element in the list, surround
    // it with either single or double quotes. The argument list may be
    // preceded by a package pattern and an equal sign, which restricts
    // the use of that argument list to the building of packages matching
    // that pattern (see 'go help packages' for a description of package
    // patterns). Without a pattern, the argument list applies only to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

         [[ "${ENABLE_CLUSTER_LOGGING:-}" == "true" ]]; then
        echo "fluentd-elasticsearch addon is no longer included here. Terminate cluster initialization."
        echo "The addon can be installed from https://github.com/kubernetes-sigs/instrumentation-addons"
        exit 1
      fi
      if [[ "${ENABLE_NODE_LOGGING:-}" == "true" ]] && \
         [[ "${LOGGING_DESTINATION:-}" == "gcp" ]]; then
        setup-addon-manifests "addons" "fluentd-gcp"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    			// fail at runtime. See https://golang.org/issue/7980.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top