Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ARE (0.06 sec)

  1. pilot/pkg/model/gateway.go

    	// These are considered "verified", since there is mutually agreement from the pod, Secret, and Gateway, as all
    	// reside in the same namespace and trust boundary.
    	// Note: Secrets that are not referenced by any Gateway, but are in the same namespace as the pod, are explicitly *not*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    		AllowConnect: true,
    		// TODO(https://github.com/istio/istio/issues/43443)
    		// All streams are bound to the same worker. Therefore, we need to limit for better fairness.
    		MaxConcurrentStreams: &wrappers.UInt32Value{Value: 100},
    		// well behaved clients should close connections.
    		// not all clients are well-behaved. This will prune
    		// connections when the client is not responding, to keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    // individual shards incrementally. The shards are aggregated and split into
    // clusters when a push for the specific cluster is needed.
    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	// initialization is complete.
    	<-con.InitializedCh()
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    		// For requests, these are higher priority (client may be blocked on startup until these are done)
    		// and often very cheap to handle (simple ACK), so we check it first.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    				"Metadata inputs for analyzer %q don't match actual collections accessed during testing. "+
    					"Either the metadata is wrong or the test cases for the analyzer are insufficient.", analyzerName))
    		}
    	})
    }
    
    // Verify that all of the analyzers tested here are also registered in All()
    func TestAnalyzersInAll(t *testing.T) {
    	g := NewWithT(t)
    
    	var allNames []string
    	for _, a := range All() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Patch applies only the modifications made in the PatchFunc rather than doing a full replace. Useful to avoid
    // read-modify-write conflicts when there are many concurrent-writers to the same resource.
    func (cl *Client) Patch(orig config.Config, patchFn config.PatchFunc) (string, error) {
    	modified, patchType := patchFn(orig.DeepCopy())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		TypedConfig: protoconv.MessageToAny(&celformatter.Cel{}),
    	}
    )
    
    // configureFromProviderConfigHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    // STOP. DO NOT UPDATE THIS WITHOUT UPDATING telemetryAccessLog.
    const telemetryAccessLogHandled = 14
    
    func telemetryAccessLog(push *PushContext, fp *meshconfig.MeshConfig_ExtensionProvider) *accesslog.AccessLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_test.go

    				ct:   &computedTelemetries{},
    				tel:  Telemetry{},
    				spec: &tpb.Telemetry{},
    			},
    			want: &computedTelemetries{},
    		},
    		{
    			name: "targetRef is defined, telemetry configurations are added to empty computed telemetries",
    			args: args{
    				ct: &computedTelemetries{},
    				tel: Telemetry{
    					Name:      "my-telemetry",
    					Namespace: "my-namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. cmd/object-multipart-handlers.go

    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    // the handler should ensure to remove these keys before sending them to the object layer.
    // Currently these keys are:
    //   - X-Amz-Server-Side-Encryption-Customer-Key
    //   - X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key
    func (api objectAPIHandlers) NewMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top