Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for Enabled (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

    abstract class AbstractTransformExecution implements UnitOfWork {
        private static final CachingDisabledReason NOT_CACHEABLE = new CachingDisabledReason(CachingDisabledReasonCategory.NOT_CACHEABLE, "Caching not enabled.");
        private static final CachingDisabledReason CACHING_DISABLED_REASON = new CachingDisabledReason(CachingDisabledReasonCategory.NOT_CACHEABLE, "Caching disabled by property ('org.gradle.internal.transform-caching-disabled')");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/log/options.go

    type Level int
    
    const (
    	// NoneLevel disables logging
    	NoneLevel Level = iota
    	// FatalLevel enables fatal level logging
    	FatalLevel
    	// ErrorLevel enables error level logging
    	ErrorLevel
    	// WarnLevel enables warn level logging
    	WarnLevel
    	// InfoLevel enables info level logging
    	InfoLevel
    	// DebugLevel enables debug level logging
    	DebugLevel
    )
    
    var levelToString = map[Level]string{
    	DebugLevel: "debug",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. cmd/object-multipart-handlers.go

    	if s3Error := checkRequestAuthType(ctx, r, policy.PutObjectAction, bucket, object); s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    	// Check if bucket encryption is enabled
    	sseConfig, _ := globalBucketSSEConfigSys.Get(bucket)
    	sseConfig.Apply(r.Header, sse.ApplyOptions{
    		AutoEncrypt: globalAutoEncryption,
    	})
    
    	// Validate storage class metadata if present
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

      # kubeconfig:username, and then under kubeconfig:username-basic-auth.
      # TODO: KUBE_USER is used in generating ABAC policy which the
      # apiserver may not have enabled. If it's enabled, we must have a user
      # to generate a valid ABAC policy. If the username changes, should
      # the script fail? Should we generate a default username and password
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    			istioGenerated = true
    		}
    	}
    
    	// check if signing key file exists the cert dir and if the istio-generated file
    	// exists (only if USE_CACERTS_FOR_SELF_SIGNED_CA is enabled)
    	if !detectedSigningCABundle {
    		log.Infof("Use roots from istio-ca-secret")
    
    		caBundle = s.CA.GetCAKeyCertBundle().GetRootCertPem()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. cmd/object_api_suite_test.go

    	}
    }
    
    func enableCompression(t *testing.T, encrypt bool, mimeTypes []string, extensions []string) {
    	// Enable compression and exec...
    	globalCompressConfigMu.Lock()
    	globalCompressConfig.Enabled = true
    	globalCompressConfig.MimeTypes = mimeTypes
    	globalCompressConfig.Extensions = extensions
    	globalCompressConfig.AllowEncrypted = encrypt
    	globalCompressConfigMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    		The value can be followed by an option specifying extensions implemented by target hardware.
    		Valid options are ,lse and ,crypto.
    		Note that some extensions are enabled by default starting from a certain GOARM64 version;
    		for example, lse is enabled by default starting from v8.1.
    	GO386
    		For GOARCH=386, how to implement floating point instructions.
    		Valid values are sse2 (default), softfloat.
    	GOAMD64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/main_test.go

        # and it is important to catch issues that might otherwise be automatically fixed.
        # Refer to issue #49207 for more context.
        repair:
          enabled: false
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
          SECRET_TTL: 5m
    `
    		}, cert.CreateCASecretAlt)).
    		Setup(func(t resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                    }
    
                     static def getInstance(File gradleUserHome) {
                        if (instance == null) {
                            NativeServices.initializeOnWorker(gradleUserHome, NativeServicesMode.ENABLED)
                            def global = new ZincCompilerServices(gradleUserHome)
                            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder()
                            builder.parent(global)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. pkg/config/constants/constants.go

    	//
    	// The presence of this annotation with this specific value indicates the pod is captured.
    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    	// AmbientUseWaypointLabelLabel is the label used to specify which waypoint should be used for a given pod, service, etc...
    	AmbientUseWaypointLabel = "istio.io/use-waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top