Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 195 for Enabled (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    To enable the cache at build time, use the `configuration-cache` flag:
    
    ----
    ❯ gradle --configuration-cache
    ----
    
    You can also enable the cache persistently in a `gradle.properties` file using the `org.gradle.configuration-cache` property:
    
    [source,properties]
    ----
    org.gradle.configuration-cache=true
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. cmd/iam.go

    		NewHTTPTransport(), xhttp.DrainBody, globalSite.Region())
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to initialize OpenID: %w", err), logger.WarningKind)
    	}
    
    	// Initialize if LDAP is enabled
    	ldapConfig, err := xldap.Lookup(s, globalRootCAs)
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to load LDAP configuration (LDAP configuration will be disabled!): %w", err), logger.WarningKind)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		newValue       *bool
    		expectError    bool
    	}{{
    		name:           "feature enabled, nil->nil",
    		featureEnabled: true,
    		oldValue:       nil,
    		newValue:       nil,
    		expectError:    true, // populated by defaulting and required when feature is enabled
    	}, {
    		name:           "feature enabled, nil->set",
    		featureEnabled: true,
    		oldValue:       nil,
    		newValue:       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    
    		if idx == 0 && utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    			if resp.Timestamp == 0 {
    				// If the Evented PLEG is enabled in the kubelet, but not in the runtime
    				// then the pod status we get will not have the timestamp set.
    				// e.g. CI job 'pull-kubernetes-e2e-gce-alpha-features' will runs with
    				// features gate enabled, which includes Evented PLEG, but uses the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		Code:           "RemoteTargetNotVersionedError",
    		Description:    "The remote target does not have versioning enabled",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationSourceNotVersionedError: {
    		Code:           "ReplicationSourceNotVersionedError",
    		Description:    "The replication source does not have versioning enabled",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrReplicationNeedsVersioningError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    func gcDrain(gcw *gcWork, flags gcDrainFlags) {
    	if !writeBarrier.enabled {
    		throw("gcDrain phase incorrect")
    	}
    
    	// N.B. We must be running in a non-preemptible context, so it's
    	// safe to hold a reference to our P here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      # to use docker installed containerd as kubelet container runtime
      # we need to enable cri and install cni
      # install cni for docker in docker
      install_cni 
    
      # If we are running in a cgroups v2 environment
      # we need to enable nesting
      tolerate_cgroups_v2
    
      # enable cri for docker in docker
      echo "enable cri"
      # shellcheck disable=SC2129
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(null)
    
            when:
            succeeds 'broken'
    
            then:
            outputDoesNotContain "'Task#usesService'"
        }
    
        def "does nag when service is used by task without a corresponding usesService call and feature preview is enabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       <configuration>
          <key-servers enabled="false"/>
          ...
       </configuration>
       ...
    </verification-metadata>
    ----
    
    NOTE: If you are asking Gradle to <<sec:bootstrapping-verification,generate a verification metadata file>> and that an existing verification metadata file sets `enabled` to `false`, then this flag will be ignored, so that potentially missing keys are downloaded.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    		requireRecognizedAdmissionReviewVersion: true,
    		requireUniqueWebhookNames:               true,
    		allowInvalidLabelValueInSelector:        false,
    		strictCostEnforcement:                   utilfeature.DefaultFeatureGate.Enabled(features.StrictCostEnforcementForWebhooks),
    	})
    }
    
    func validateValidatingWebhookConfiguration(e *admissionregistration.ValidatingWebhookConfiguration, opts validationOptions) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top