Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for gather (0.38 sec)

  1. cmd/metrics-v2.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    // Since tflite doesn't support unsigned for other types, returns error if
    // `isSigned` is set to false for other types.
    static StatusOr<tflite::TensorType> GetTFLiteType(Type type,
                                                      bool is_signed = true) {
      if (!is_signed) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		// (https://go.dev/issue/62047).
    		// TODO(bcmills): Figure out whether this behavior is still useful.
    		//
    		// b.WorkDir is always either trimmed or rewritten to
    		// the literal string "/tmp/go-build".
    	} else if !strings.HasPrefix(p.Dir, b.WorkDir) {
    		// -trimpath is not set and no other rewrite rules apply,
    		// so the object file may refer to the absolute directory
    		// containing the package.
    		fmt.Fprintf(h, "dir %s\n", p.Dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	podCache kubecontainer.Cache
    
    	// os is a facade for various syscalls that need to be mocked during testing.
    	os kubecontainer.OSInterface
    
    	// Watcher of out of memory events.
    	oomWatcher oomwatcher.Watcher
    
    	// Monitor resource usage
    	resourceAnalyzer serverstats.ResourceAnalyzer
    
    	// Whether or not we should have the QOS cgroup hierarchy for resource management
    	cgroupsPerQOS bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			// To avoid rewriting all tests, we wait for watchcache to initialize.
    			if err := cacher.Wait(context.Background()); err != nil {
    				t.Fatal(err)
    			}
    		}
    		d := destroyFunc
    		s = cacher
    		destroyFunc = func() {
    			cacher.Stop()
    			d()
    		}
    	}
    
    	return destroyFunc, &Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        read/assign ops on local variables. A later resource lifting pass can further
        remove the local variables.
    
        This pass requires that the full shape of the tensor array can be inferred:
        1) the size needs to be a constant, 2) it specifies the full element shape,
        or that can be inferred from a later write, and 3) all elements have the same
        shape.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

          params+=("--feature-gates=${safe_feature_gates}")
          echo "Computing unsafe feature gates for cloud provider controller-manager from ${CCM_FEATURE_GATES_FILTER}"
          local filtered_feature_gates
          filtered_feature_gates=$(echo "${FEATURE_GATES}" | sed "s/,/\n/g" | { grep -E -v "(${CCM_FEATURE_GATES_FILTER})" || true; } | sed -z "s/\n/,/g;s/,$/\n/")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // The editing flags specify a sequence of editing operations.
    //
    // The -fmt flag reformats the go.mod file without making other changes.
    // This reformatting is also implied by any other modifications that use or
    // rewrite the go.mod file. The only time this flag is needed is if no other
    // flags are specified, as in 'go mod edit -fmt'.
    //
    // The -module flag changes the module's path (the go.mod file's module line).
    //
    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. pilot/pkg/networking/core/cluster_builder_test.go

    		if found {
    			if alpnOverride.GetStringValue() != "false" {
    				t.Errorf("alpn_override:%s tlsMode:%s, should be false for either TLS mode SIMPLE or MUTUAL", alpnOverride, tlsMode)
    			}
    		} else {
    			t.Errorf("alpn_override metadata should be written for either TLS mode SIMPLE or MUTUAL")
    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // scalar value).
    struct ValuePort {
      PointerUnion<Operation*, BlockArgument> producer;
      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    
      // Convert output value to ValuePort.
      explicit ValuePort(Value v) {
        OpResult opr = mlir::dyn_cast<OpResult>(v);
        if (opr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top