Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for expandKey (0.17 sec)

  1. internal/event/name.go

    	ObjectScannerAll
    	Everything
    )
    
    // The number of single names should not exceed 64.
    // This will break masking. Use bit 63 as extension.
    var _ = uint64(1 << objectSingleTypesEnd)
    
    // Expand - returns expanded values of abbreviated event type.
    func (name Name) Expand() []Name {
    	switch name {
    
    	case ObjectAccessedAll:
    		return []Name{
    			ObjectAccessedGet, ObjectAccessedHead,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/go/types/subst.go

    // incoming type. If a substitution took place, the result type is different
    // from the incoming type.
    //
    // If expanding is non-nil, it is the instance type currently being expanded.
    // One of expanding or ctxt must be non-nil.
    func (check *Checker) subst(pos token.Pos, typ Type, smap substMap, expanding *Named, ctxt *Context) Type {
    	assert(expanding != nil || ctxt != nil)
    
    	if smap.empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. docs/distributed/decom-encrypted-kes.sh

    expanded_policy_count=$(./mc admin policy list myminio/ | wc -l)
    
    if [ "$user_count" -ne "$expanded_user_count" ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ "$policy_count" -ne "$expanded_policy_count" ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

    namespace tensorflow {
    namespace {
    
    auto* tf_core_op_expansion_node_counter =
        monitoring::Counter<0>::New("/tensorflow/core/op_expansion/node_counter",
                                    "The number of nodes being op expanded.");
    }  // namespace
    
    namespace tfr {
    
    Status CompositeOpExpansion::Run(EagerOperation* orig_op,
                                     std::unique_ptr<EagerOperation>* out_op) {
      if (!IsEnabled()) return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/under.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    func under(t Type) Type {
    	if t := asNamed(t); t != nil {
    		return t.under()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/expand/expand_controller.go

    			newCap := newPVC.Status.Capacity[v1.ResourceStorage]
    			// PVC will be enqueued under 2 circumstances
    			// 1. User has increased PVC's request capacity --> volume needs to be expanded
    			// 2. PVC status capacity has been expanded --> claim's bound PV has likely recently gone through filesystem resize, so remove AnnPreResizeCapacity annotation from PV
    			if newReq.Cmp(oldReq) > 0 || newCap.Cmp(oldCap) > 0 {
    				expc.enqueuePVC(new)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/go/types/under.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    func under(t Type) Type {
    	if t := asNamed(t); t != nil {
    		return t.under()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/reflect/export_test.go

    func IsRO(v Value) bool {
    	return v.flag&flagStickyRO != 0
    }
    
    var CallGC = &callGC
    
    // FuncLayout calls funcLayout and returns a subset of the results for testing.
    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    // takes up one byte, so that writing out test cases is a little clearer.
    // If ptrs is false, gc will be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Striped64.java

       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/names/controller_names.go

    	PersistentVolumeAttachDetachController       = "persistentvolume-attach-detach-controller"
    	PersistentVolumeExpanderController           = "persistentvolume-expander-controller"
    	ClusterRoleAggregationController             = "clusterrole-aggregation-controller"
    	PersistentVolumeClaimProtectionController    = "persistentvolumeclaim-protection-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top