Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 470 for gStates (0.37 sec)

  1. security/pkg/cmd/constants.go

    	DefaultSelfSignedCACertTTL = 3650 * 24 * time.Hour
    
    	// DefaultSelfSignedRootCertCheckInterval is the default interval a self-signed
    	// CA checks and rotates its root certificate.
    	DefaultSelfSignedRootCertCheckInterval = 1 * time.Hour
    
    	// DefaultRootCertGracePeriodPercentile is the default length of root certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 07 03:27:36 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. pkg/ledger/ledger.go

    // limitations under the License.
    
    // Package ledger implements a modified map with three unique characteristics:
    // 1. every unique state of the map is given a unique hash
    // 2. prior states of the map are retained for a fixed period of time
    // 2. given a previous hash, we can retrieve a previous state from the map, if it is still retained.
    package ledger
    
    import (
    	"encoding/base64"
    	"time"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/script/conds.go

    // evaluated. Future calls reuse the same result.
    //
    // The eval function is not passed a *State because the condition is cached
    // across all execution states and must not vary by state.
    func OnceCondition(summary string, eval func() (bool, error)) Cond {
    	return &onceCond{eval: eval, usage: CondUsage{Summary: summary}}
    }
    
    type onceCond struct {
    	once  sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFilesCleanupProjectState.kt

    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.provider.Property
    
    
    /**
     * Works with {@see TestFilesCleanupService} and {@see TestFilesCleanupServiceRootExtension}.
     * It collects states to be used in the build service for each project.
     */
    interface TestFilesCleanupProjectState : TestFileCleanUpExtension {
        val projectPath: Property<String>
        val projectBuildDir: DirectoryProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 18 02:11:12 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    
    // CHECK-LABEL: @resource_output_gets_control_node
    func.func @resource_output_gets_control_node() -> tensor<!tf_type.resource<tensor<1xf32>>> {
      %var = "tfl.var_handle"() {container = "", shared_name = "states"} : () -> tensor<!tf_type.resource<tensor<1xf32>>>
      func.return %var : tensor<!tf_type.resource<tensor<1xf32>>>
    }
    // CHECK-NEXT: %[[VAR:.*]], %[[CONTROL:.*]] = tfl.control_node controls "tfl.var_handle"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top