Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ctan (0.06 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    	cl.handlers[kind] = append(cl.handlers[kind], handler)
    }
    
    // Run the queue and all informers. Callers should  wait for HasSynced() before depending on results.
    func (cl *Client) Run(stop <-chan struct{}) {
    	if cl.started.Swap(true) {
    		// was already started by other thread
    		return
    	}
    
    	t0 := time.Now()
    	cl.logger.Infof("Starting Pilot K8S CRD controller")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    // Gateways directly referencing a Service, rather than label selectors. Warning: this label is
    // intended solely for as a workaround for Knative's Istio integration, and not intended for any
    // other usage. It can, and will, be removed immediately after the new direct reference is ready for
    // use.
    const DisableGatewayPortTranslationLabel = "experimental.istio.io/disable-gateway-port-translation"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    }
    
    func newDeltaConnection(peerAddr string, stream DeltaDiscoveryStream) *Connection {
    	return &Connection{
    		Connection:   xds.NewConnection(peerAddr, nil),
    		deltaStream:  stream,
    		deltaReqChan: make(chan *discovery.DeltaDiscoveryRequest, 1),
    	}
    }
    
    // To satisfy methods that need DiscoveryRequest. Not suitable for real usage
    func deltaToSotwRequest(request *discovery.DeltaDiscoveryRequest) *discovery.DiscoveryRequest {
    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. pilot/pkg/networking/core/listener_waypoint.go

    			}
    			// This is a catchall route, so we can stop processing the rest of the routes.
    			break
    		}
    		for _, match := range http.Match {
    			if r := lb.translateRoute(virtualService, http, match, listenPort); r != nil {
    				out = append(out, r)
    				// This is a catch all path. Routes are matched in order, so we will never go beyond this match
    				// As an optimization, we can just stop sending any more routes here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // shardRegistry is a simplified interface for registries that can produce a shard key
    type shardRegistry interface {
    	Cluster() cluster.ID
    	Provider() provider.ID
    }
    
    // ShardKeyFromRegistry computes the shard key based on provider type and cluster id.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. cmd/object-multipart-handlers.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    	// We need to propagate these as part of access log service stream
    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    	if err != nil {
    		return nil, fmt.Errorf("error adding default resources: %v", err)
    	}
    
    	return sa, nil
    }
    
    func runAnalyzer(sa *local.IstiodAnalyzer) (local.AnalysisResult, error) {
    	cancel := make(chan struct{})
    	result, err := sa.Analyze(cancel)
    	if err != nil {
    		return local.AnalysisResult{}, err
    	}
    	return result, err
    }
    
    // Pull just the fields we want to check out of diag.Message
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top