Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for setchl (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

        }
        tf_executor.fetch %island : !tf_executor.control
        // expected-remark@above {{ID: 4}}
        // expected-remark@above {{Predecessors: {3}}}
      }
      func.return
      // expected-remark@above {{ID: 6}}
      // expected-remark@above {{Sinks: {5}}}
    }
    
    // -----
    
    // Tests that we create dependencies to a fetch op, even if the fetch op has
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	shouldPanic("SetCap", func() { vs.SetCap(10) })
    	shouldPanic("SetLen", func() { vs.SetLen(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(6) }) // smaller than len
    	vs.SetLen(5)
    	if len(xs) != 5 || cap(xs) != 8 {
    		t.Errorf("after SetLen(5), len, cap = %d, %d, want 5, 8", len(xs), cap(xs))
    	}
    	vs.SetCap(6)
    	if len(xs) != 5 || cap(xs) != 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	TranslateInTreeInlineVolumeToCSI(volume *v1.Volume, podNamespace string) (*v1.PersistentVolume, error)
    }
    
    var _ OperationGenerator = &operationGenerator{}
    
    type operationGenerator struct {
    	// Used to fetch objects from the API server like Node in the
    	// VerifyControllerAttachedVolume operation.
    	kubeClient clientset.Interface
    
    	// volumePluginMgr is the volume plugin manager used to create volume
    	// plugin objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	}
    	s.Len = n
    }
    
    // SetCap sets v's capacity to n.
    // It panics if v's Kind is not [Slice] or if n is smaller than the length or
    // greater than the capacity of the slice.
    func (v Value) SetCap(n int) {
    	v.mustBeAssignable()
    	v.mustBe(Slice)
    	s := (*unsafeheader.Slice)(v.ptr)
    	if n < s.Len || n > s.Cap {
    		panic("reflect: slice capacity out of range in SetCap")
    	}
    	s.Cap = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // TODO(jpienaar): Update post removing shape_refinier_.
      if (!specs_.enable_shape_inference) {
        // Refine graph's type given more precise fetch.
        auto fetch = graph.GetFetch();
        bool all_equal = true;
        for (auto it :
             llvm::zip_first(graph.getResults(), fetch.getOperandTypes())) {
          auto rt = std::get<1>(it);
          if (rt == std::get<0>(it).getType()) continue;
          std::get<0>(it).setType(rt);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        }
    
        if (require_use_buffer_offset_) return std::nullopt;
    
        // Skip constant ops as they don't represent a TFLite operator.
        if (IsConst(&inst)) continue;
    
        // Fetch operand and result tensor indices.
        std::vector<int32_t> results;
        results.reserve(inst.getNumResults());
        for (auto result : inst.getResults()) {
          results.push_back(tensor_index_map.lookup(result));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    The Mouse did not answer, so Alice went on eagerly:  `There is
    such a nice little dog near our house I should like to show you!
    A little bright-eyed terrier, you know, with oh, such long curly
    brown hair!  And it'll fetch things when you throw them, and
    it'll sit up and beg for its dinner, and all sorts of things--I
    can't remember half of them--and it belongs to a farmer, you
    know, and he says it's so useful, it's worth a hundred pounds!
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Add get/delete cluster, delete context to kubectl config ([#29821](https://github.com/kubernetes/kubernetes/pull/29821), [@alexbrand](https://github.com/alexbrand))
    * rkt: Force `rkt fetch` to fetch from remote to conform the image pull policy. ([#31378](https://github.com/kubernetes/kubernetes/pull/31378), [@yifan-gu](https://github.com/yifan-gu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

    * Add get/delete cluster, delete context to kubectl config ([#29821](https://github.com/kubernetes/kubernetes/pull/29821), [@alexbrand](https://github.com/alexbrand))
    * rkt: Force `rkt fetch` to fetch from remote to conform the image pull policy. ([#31378](https://github.com/kubernetes/kubernetes/pull/31378), [@yifan-gu](https://github.com/yifan-gu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    			// Send the token back to client.
    			writeSuccessResponseJSON(w, b)
    			return
    		}
    	}
    
    	if hip.clientToken != "" && !hip.forceStart && !hip.forceStop {
    		// Since clientToken is given, fetch heal status from running
    		// heal sequence.
    		respBytes, errCode := globalAllHealState.PopHealStatusJSON(
    			healPath, hip.clientToken)
    		if errCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top