Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 663 for toGetter (0.27 sec)

  1. src/cmd/covdata/doc.go

    	mode: set
    	cov-example/p/p.go:12.22,13.2 0 0
    	cov-example/p/p.go:15.31,16.2 1 0
    	cov-example/p/p.go:16.3,18.3 0 0
    	cov-example/p/p.go:19.3,21.3 0 0
    	...
    	$ go tool cover -html=cov.txt
    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/filename_flags.go

    		flags.SetAnnotation("filename", cobra.BashCompFilenameExt, annotations)
    	}
    	if o.Kustomize != nil {
    		flags.StringVarP(o.Kustomize, "kustomize", "k", *o.Kustomize,
    			"Process a kustomization directory. This flag can't be used together with -f or -R.")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    // Assuming `tf.OpA` and `tf.OpC` are clustered together, the region will be
    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    // `tf.OpB`, which won't dominate the region. This function reorders all users
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"name":  ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source.  Only one "target" type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. src/crypto/rand/util.go

    		bytes[0] &= uint8(int(1<<b) - 1)
    		// Don't let the value be too small, i.e, set the most significant two bits.
    		// Setting the top two bits, rather than just the top bit,
    		// means that when two of these values are multiplied together,
    		// the result isn't ever one bit short.
    		if b >= 2 {
    			bytes[0] |= 3 << (b - 2)
    		} else {
    			// Here b==1, because b cannot be zero.
    			bytes[0] |= 1
    			if len(bytes) > 1 {
    				bytes[1] |= 0x80
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    == Defining and using a composite build
    
    This sample shows how 2 Gradle builds that are normally developed separately and combined using binary integration can be wired together into a composite build with source integration. The `my-utils` multiproject build produces 2 different java libraries, and the `my-app` build produces an executable using functions from those libraries.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/util/cgroups_linux.go

    	if err != nil {
    		return "", err
    	}
    
    	// If the cgroup name/path is absolute do not look relative to the cgroup of the init process.
    	if filepath.IsAbs(cgroupPath) {
    		// Sometimes subsystems can be mounted together as 'cpu,cpuacct'.
    		return filepath.Join(root, mnt, cgroupPath), nil
    	}
    
    	parentPath, err := getCgroupV1ParentPath(mnt, root)
    	if err != nil {
    		return "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/types.go

    	ObjectMetricSourceType MetricSourceType = "Object"
    	// PodsMetricSourceType is a metric describing each pod in the current scale
    	// target (for example, transactions-processed-per-second).  The values
    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is a resource metric known to Kubernetes, as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source.  Only one "target" type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top