Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for inspection (0.35 sec)

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

    		if needHTTP {
    			needHTTPInspector = true
    		}
    	}
    
    	// We add a TLS inspector when http inspector is needed for outbound only. This
    	// is because if we ever set ALPN in the match without
    	// transport_protocol=raw_buffer, Envoy will automatically inject a tls
    	// inspector: https://github.com/envoyproxy/envoy/issues/13601. This leads to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.jvm.JavaHomeException;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.logging.services.DefaultLoggingManagerFactory;
    import org.gradle.internal.logging.services.LoggingServiceRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			config := kubeletServer.KubeletConfiguration.DeepCopy()
    			for k := range config.StaticPodURLHeader {
    				config.StaticPodURLHeader[k] = []string{"<masked>"}
    			}
    			// log the kubelet's config for inspection
    			klog.V(5).InfoS("KubeletConfiguration", "configuration", klog.Format(config))
    
    			// set up signal context for kubelet shutdown
    			ctx := genericapiserver.SetupSignalContext()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `dryRun` — default: false::
    If this property is `true`, Gradle will simulate the execution of the tests without actually running them. This will still generate reports, allowing for inspection of what tests were selected. This can be used to verify that your test filtering configuration is correct without actually running the tests.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		"type:runtime.sudog":             nil,
    		"type:runtime.waitq":             nil,
    		"type:runtime.hchan":             nil,
    	}
    
    	// Needed by the prettyprinter code for interface inspection.
    	for _, typ := range []string{
    		"type:internal/abi.Type",
    		"type:internal/abi.ArrayType",
    		"type:internal/abi.ChanType",
    		"type:internal/abi.FuncType",
    		"type:internal/abi.MapType",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                }
            }
        }
    
        private val KtElement.inSelection: Boolean
            get() = when (this) {
                is KtUserType -> inSelection
                is KtDotQualifiedExpression -> inSelection
                is KtThisExpression -> inSelection
    
                else -> error("Unexpected ${this::class}")
            }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                this.allServices = ownServices;
                this.inspector = new ClassInspector();
            } else {
                this.parentServices = setupParentServices(parents);
                this.allServices = new CompositeServiceProvider(ownServices, parentServices);
                this.inspector = parents[0] instanceof DefaultServiceRegistry ? ((DefaultServiceRegistry) parents[0]).inspector : new ClassInspector();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	dsStoreSynced cache.InformerSynced
    	// historyLister get list/get history from the shared informers's store
    	historyLister appslisters.ControllerRevisionLister
    	// historyStoreSynced returns true if the history store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	historyStoreSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      repeated google.protobuf.Struct configVolumes = 23;
    
      repeated google.protobuf.Struct additionalContainers = 24;
    
      google.protobuf.BoolValue runAsRoot = 26;
    
      // The injection template to use for the gateway. If not set, no injection will be performed.
      string injectionTemplate = 27;
    
      ServiceAccount serviceAccount = 28;
    
      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            outputDoesNotContain "'Task#usesService'"
            outputContains """
    service: created with value = 10
    service: value is 11
    service: closed with value 11
            """
        }
    
        def "injection by name can be overridden by explicit convention"() {
            given:
            serviceImplementation()
            customTaskUsingServiceViaProperty("@${ServiceReference.name}('counter')")
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top