Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for inspectors (0.13 sec)

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

    		inspectors[int(port)] = i
    	}
    
    	// Enable TLS inspector on any ports we need it
    	if needsTLS(inspectors) {
    		lf = append(lf, buildTLSInspector(inspectors))
    	}
    
    	// Note: the HTTP inspector should be after TLS inspector.
    	// If TLS inspector sets transport protocol to tls, the http inspector
    	// won't inspect the packet.
    	if needsHTTP(inspectors) {
    		lf = append(lf, buildHTTPInspector(inspectors))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    	// authzCustomBuilder provides access to CUSTOM authz configuration for the given proxy.
    	authzCustomBuilder *authz.Builder
    }
    
    // enabledInspector captures if for a given listener, listener filter inspectors are added
    type enabledInspector struct {
    	HTTPInspector bool
    	TLSInspector  bool
    }
    
    func NewListenerBuilder(node *model.Proxy, push *model.PushContext) *ListenerBuilder {
    	builder := &ListenerBuilder{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_manager_test.go

    	policy         v1.PullPolicy
    	inspectErr     error
    	pullerErr      error
    	qps            float32
    	burst          int
    	expected       []pullerExpects
    }
    
    func pullerTestCases() []pullerTestCase {
    	return []pullerTestCase{
    		{ // pull missing image
    			testName:       "image missing, pull",
    			containerImage: "missing_image",
    			policy:         v1.PullIfNotPresent,
    			inspectErr:     nil,
    			pullerErr:      nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder_test.go

    				81: true,
    				// Even for passthrough, we do not need HTTP inspector because it is handled by TLS inspector
    				1000: true,
    			},
    			tls: map[int]bool{
    				// strict mode: inspector is set everywhere.
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	Requires:         []*analysis.Analyzer{inspect.Analyzer},
    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.AssignStmt)(nil),
    		(*ast.CallExpr)(nil),
    		(*ast.CompositeLit)(nil),
    		(*ast.FuncDecl)(nil),
    		(*ast.FuncLit)(nil),
    		(*ast.GenDecl)(nil),
    		(*ast.RangeStmt)(nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    		return
    	}
    	result.ListenerMatched = l.Name
    
    	hasTLSInspector := hasFilterOnPort(l, xdsfilters.TLSInspector.Name, input.Port)
    	if !hasTLSInspector {
    		// Without tls inspector, Envoy would not read the ALPN in the TLS handshake
    		// HTTP inspector still may set it though
    		input.Alpn = ""
    	}
    
    	// Apply listener filters
    	if hasFilterOnPort(l, xdsfilters.HTTPInspector.Name, input.Port) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    t-utils.jar:/home/tcagent1/agent/lib/annotations.jar:/home/tcagent1/agent/lib/serviceMessages.jar:/home/tcagent1/agent/lib/util.jar:/home/tcagent1/agent/lib/patches-impl.jar:/home/tcagent1/agent/lib/xml-rpc-wrapper.jar:/home/tcagent1/agent/lib/inspections-util.jar:/home/tcagent1/agent/lib/common.jar:/home/tcagent1/agent/lib/messages.jar:/home/tcagent1/agent/lib/commons-logging.jar:/home/tcagent1/agent/lib/commons-collections-3.2.2.jar:/home/tcagent1/agent/lib/openapi.jar:/home/tcagent1/agent/lib...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Package analysis defines the interface between a modular static
    analysis and an analysis driver program.
    
    # Background
    
    A static analysis is a function that inspects a package of Go code and
    reports a set of diagnostics (typically mistakes in the code), and
    perhaps produces other results as well, such as suggested refactorings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A {@link PayloadClassLoaderRegistry} used in the client JVM that maps classes loaded by application ClassLoaders. Inspects each class to calculate a minimal classpath to send across to the daemon process to recreate the ClassLoaders.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    // For example, consider a finalizer that inspects a mutable field in x
    // that is modified from time to time in the main program before x
    // becomes unreachable and the finalizer is invoked.
    // The modifications in the main program and the inspection in the finalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top