Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 378 for gStates (0.2 sec)

  1. pkg/controller/volume/attachdetach/config/types.go

    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/features/features.go

    	EtcdLearnerMode = "EtcdLearnerMode"
    	// WaitForAllControlPlaneComponents is expected to be alpha in v1.30
    	WaitForAllControlPlaneComponents = "WaitForAllControlPlaneComponents"
    )
    
    // InitFeatureGates are the default feature gates for the init command
    var InitFeatureGates = FeatureList{
    	PublicKeysECDSA: {
    		FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Deprecated},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * some implementations retry the failed calculation.
     * </p>
     *
     * <p>Currently the "fixed" and "changing" states have definitions that refer to configuration time and execution time.
     * As these phases gradually become more interleaved, we might generalize these states so that the value is "changing" only until its inputs are known and all such inputs have a "fixed" value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

      // If there are no immutable states, use the operand's state if it is the
      // only one operand and has parameters propagated.
      if (op->getNumOperands() == 1 && mutable_operands_num == 1) {
        return mutable_states.front()->params;
      }
    
      // If there are no immutable states, use the result's state if it is the
      // only one result and has parameters propagated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/TokenLookup.java

    import org.gradle.language.nativeplatform.internal.Expression;
    
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Captures the intermediate states during the resolution of macro #include directives, to short-circuit work that has already been done.
     */
    class TokenLookup {
        private Set<Expression> broken;
        private Multimap<Expression, Expression> tokensFor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager_test.go

    	if diff := cmp.Diff(controllersWithoutFeatureGates, controllersWithFeatureGates); diff != "" {
    		t.Errorf("unexpected controllers after enabling feature gates, NewControllerDescriptors should always return all controller descriptors. Controllers should define required feature gates in ControllerDescriptor.requiredFeatureGates. Diff of returned controllers:\n%s", diff)
    	}
    }
    
    func TestFeatureGatedControllersShouldNotDefineAliases(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      none_ = CreateNoneValue(&builder_, fused_func_op_.getLoc());
      // Extract input to cifg gates via slicing the weight tensor
      SetWeightForInputToCellGate();
      SetWeightForInputToInputGate();
      SetWeightForInputToForgetGate();
      SetWeightForInputToOutputGate();
    
      // Extract recurrent to cifg gates via slicing the weight tensor
      SetWeightForRecurrentToCellGate();
      SetWeightForRecurrentToInputGate();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. src/runtime/lock_futex.go

    	mutex_sleeping = 2
    
    	active_spin     = 4
    	active_spin_cnt = 30
    	passive_spin    = 1
    )
    
    // Possible lock states are mutex_unlocked, mutex_locked and mutex_sleeping.
    // mutex_sleeping means that there is presumably at least one sleeping thread.
    // Note that there can be spinning threads during all states - they do not
    // affect mutex's state.
    
    // We use the uintptr mutex.key and note.key as a uint32.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	rootCert := rotator.ca.keyCertBundle.GetRootCertPem()
    	return rootCertItem{caSecret: caSecret, rootCertInKeyCertBundle: rootCert}
    }
    
    // TestRootCertRotatorForSigningCitadel verifies that rotator rotates root cert,
    // updates key cert bundle and config map.
    func TestRootCertRotatorForSigningCitadel(t *testing.T) {
    	rotator := getRootCertRotator(getDefaultSelfSignedIstioCAOptions(nil))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. src/net/http/export_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func (s *Server) ExportAllConnsByState() map[ConnState]int {
    	states := map[ConnState]int{}
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	for c := range s.activeConn {
    		st, _ := c.getState()
    		states[st] += 1
    	}
    	return states
    }
    
    func (r *Request) WithT(t *testing.T) *Request {
    	return r.WithContext(context.WithValue(r.Context(), tLogKey{}, t.Logf))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top