Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for Enabled (0.21 sec)

  1. pilot/pkg/networking/core/cluster_builder.go

    		// https://github.com/envoyproxy/envoy/issues/9811
    		// https://github.com/envoyproxy/envoy/pull/22639.
    		// The extra source address for UpstreamBindConfig should be added if dual stack is enabled and there is
    		// more than one IP for the proxy.
    		if features.EnableDualStack && len(cb.passThroughBindIPs) > 1 {
    			// add extra source addresses to cluster builder
    			var extraSrcAddrs []*core.ExtraSourceAddress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. cmd/object-api-options.go

    		if err != nil {
    			return opts, fmt.Errorf("Unable to parse %s, failed with %w", xhttp.MinIOSourceMTime, err)
    		}
    	}
    	retaintimeStr := strings.TrimSpace(hdr.Get(xhttp.MinIOSourceObjectRetentionTimestamp))
    	var retaintimestmp time.Time
    	if retaintimeStr != "" {
    		retaintimestmp, err = time.Parse(time.RFC3339, retaintimeStr)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    	if knativeEnv != "" && firstRequest.Load() {
    		// How scaling works in knative is the first request is the "loading" request. During
    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	requestWatchProgressSupported := etcdfeature.DefaultFeatureSupportChecker.Supports(storage.RequestWatchProgress)
    	if utilfeature.DefaultFeatureGate.Enabled(features.ConsistentListFromCache) && requestWatchProgressSupported && w.notFresh(resourceVersion) {
    		w.waitingUntilFresh.Add()
    		err = w.waitUntilFreshAndBlock(ctx, resourceVersion)
    		w.waitingUntilFresh.Remove()
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. cmd/handler-utils.go

    func getResource(path string, host string, domains []string) (string, error) {
    	if len(domains) == 0 {
    		return path, nil
    	}
    
    	// If virtual-host-style is enabled construct the "resource" properly.
    	xhost, err := xnet.ParseHost(host)
    	if err != nil {
    		return "", err
    	}
    
    	for _, domain := range domains {
    		if xhost.Name == minioReservedBucket+"."+domain {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. cmd/sts-handlers.go

    	stsToken                  = "Token"
    	stsRoleArn                = "RoleArn"
    	stsWebIdentityToken       = "WebIdentityToken"
    	stsWebIdentityAccessToken = "WebIdentityAccessToken" // only valid if UserInfo is enabled.
    	stsDurationSeconds        = "DurationSeconds"
    	stsLDAPUsername           = "LDAPUsername"
    	stsLDAPPassword           = "LDAPPassword"
    
    	// STS API action constants
    	clientGrants        = "AssumeRoleWithClientGrants"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux.go

    			encounteredError = ipvs.CleanupLeftovers(ctx, ipvsInterface, ipt, ipsetInterface) || encounteredError
    		}
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.NFTablesProxyMode) {
    		// Clean up nftables rules when switching to iptables or ipvs, or if cleanupAndExit
    		if isIPTablesBased(mode) || cleanupAndExit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    		}
    	}
    
    	// Add the messages from PostFilter plugins to reasonMsg.
    	// We can add this message regardless of whether the scheduling cycle fails at PreFilter or Filter
    	// since we may run PostFilter (if enabled) in both cases.
    	postFilterMsg := f.Diagnosis.PostFilterMsg
    	if postFilterMsg != "" {
    		reasonMsg += fmt.Sprintf(" %v", postFilterMsg)
    	}
    	return reasonMsg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    				return -1, errObjectTampered
    			}
    			return size, nil
    		}
    		return o.DecryptedSize()
    	}
    
    	return o.Size, nil
    }
    
    // Disabling compression for encrypted enabled requests.
    // Using compression and encryption together enables room for side channel attacks.
    // Eliminate non-compressible objects by extensions/content-types.
    func isCompressible(header http.Header, object string) bool {
    	globalCompressConfigMu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/istio_ca.go

    // initCAServer create a CA Server. The CA API uses cert with the max workload cert TTL.
    // 'hostlist' must be non-empty - but is not used since CA Server will start on existing
    // grpc server. Adds client cert auth and kube (sds enabled)
    func (s *Server) initCAServer(ca caserver.CertificateAuthority, opts *caOptions) {
    	caServer, startErr := caserver.New(ca, maxWorkloadCertTTL.Get(), opts.Authenticators, s.multiclusterController)
    	if startErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top