Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ACCEPT (0.08 sec)

  1. pilot/pkg/simulation/traffic.go

    		result.Error = ErrTLSError
    		return
    	}
    
    	mTLSSecretConfigName := "default"
    	if input.MtlsSecretConfigName != "" {
    		mTLSSecretConfigName = input.MtlsSecretConfigName
    	}
    
    	// mTLS listener will only accept mTLS traffic
    	if fc.TransportSocket != nil && sim.requiresMTLS(fc, mTLSSecretConfigName) != (input.TLS == MTLS) {
    		// If there is no tls inspector, then
    		result.Error = ErrMTLSError
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    	}
    	// Check if server is ready to accept clients and process new requests.
    	// Currently ready means caches have been synced and hence can build
    	// clusters correctly. Without this check, InitContext() call below would
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    	hbone bool
    
    	// telemetryMetadata defines additional information about the chain for telemetry purposes.
    	telemetryMetadata telemetry.FilterChainMetadata
    
    	// proxies that accept service-attached policy should include the service for per-service chains
    	// so that those policies can be found
    	policyService *model.Service
    }
    
    // StatPrefix returns the stat prefix for the config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    		lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return ObjectInfo{}, err
    		}
    		ctx = lkctx.Context()
    		defer lk.Unlock(lkctx)
    	}
    
    	// Accept encrypted checksum from incoming request.
    	if opts.UserDefined[ReplicationSsecChecksumHeader] != "" {
    		if v, err := base64.StdEncoding.DecodeString(opts.UserDefined[ReplicationSsecChecksumHeader]); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top