Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for patching (0.21 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    if (!containsModule(moduleName)) {
                        /*
                         * Not patching an existing module. This case should be unusual. If it nevertheless
                         * happens, add on class-path or module-path if allowed, or keep patching otherwise.
                         * The latter case (keep patching) is okay if the main module will be defined later.
                         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    	// client interface
    	kubeClient clientset.Interface
    	// control returns an interface capable of syncing a stateful set.
    	// Abstracted out for testing.
    	control StatefulSetControlInterface
    	// podControl is used for patching pods.
    	podControl controller.PodControlInterface
    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                /**
                 * IR for code fragment is not fully correct until `patchCodeFragmentIr` is over.
                 * Because of that we run IR plugins manually after patching and don't pass any extension to fir2ir conversion in `runFir2Ir` method
                 */
                irGeneratorExtensions = emptyList()
            )
    
            patchCodeFragmentIr(targetFir2IrResult)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    			server.Port.Name + "." + cfg.Name + "." + cfg.Namespace + bind // Format: https.%d.%s.%s.%s.%s
    	}
    
    	return ""
    }
    
    // ParseGatewayRDSRouteName is used by the EnvoyFilter patching logic to match
    // a specific route configuration to patch.
    func ParseGatewayRDSRouteName(name string) (portNumber int, portName, gatewayName string) {
    	if strings.HasPrefix(name, "http.") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            """
    
            when: "fetching without Isolated Projects"
            def originalIdeaModel = fetchModel(IdeaProject)
    
            then:
            fixture.assertNoConfigurationCache()
            originalIdeaModel.modules.size() == 3
            originalIdeaModel.modules.every { it.children.isEmpty() } // IdeaModules are always flattened
    
            when: "fetching with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

    import org.gradle.kotlin.dsl.caching.fixtures.cachedProjectScript
    import org.gradle.kotlin.dsl.caching.fixtures.cachedSettingsFile
    import org.gradle.kotlin.dsl.caching.fixtures.cachedSettingsScript
    import org.gradle.kotlin.dsl.caching.fixtures.classLoadingCache
    import org.gradle.kotlin.dsl.caching.fixtures.compilationCache
    import org.gradle.kotlin.dsl.caching.fixtures.compilationTrace
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	).Get()
    
    	JwksFetchMode = func() jwt.JwksFetchMode {
    		v := env.Register(
    			"PILOT_JWT_ENABLE_REMOTE_JWKS",
    			"false",
    			"Mode of fetching JWKs from JwksUri in RequestAuthentication. Supported value: "+
    				"istiod, false, hybrid, true, envoy. The client fetching JWKs is as following: "+
    				"istiod/false - Istiod; hybrid/true - Envoy and fallback to Istiod if JWKs server is external; "+
    				"envoy - Envoy.",
    		).Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/eviction_test.go

    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

        // For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
        // 1. Endpoints matching `[NETWORK, REGION, ZONE]`
        // 2. Endpoints matching `[NETWORK, REGION]`
        // 3. Endpoints matching `[NETWORK]`
        // 4. Any endpoints
        FAILOVER = 2;
      }
    
      // routing_preference defines what scopes we want to keep traffic within.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/kubelet.go

    	return m.currentTLSCertificate.Load()
    }
    
    // Start starts watching the certificate and key files
    func (m *kubeletServerCertificateDynamicFileManager) Start() {
    	var ctx context.Context
    	ctx, m.cancelFn = context.WithCancel(context.Background())
    	go m.dynamicCertificateContent.Run(ctx, 1)
    }
    
    // Stop stops watching the certificate and key files
    func (m *kubeletServerCertificateDynamicFileManager) Stop() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top