Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,686 for applyTo (0.14 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

    # If the patch operation is REPLACE but the applyTo is not HTTP_FILTER or NETWORK_FILTER, then an error will occur
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-patch-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      priority: 10
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-cluster1"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_EXTENSION_CONFIG,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"add-extension-config1"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_EXTENSION_CONFIG,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeProjectIntegrationTest.groovy

        }
    
        Project project(String projectName, boolean allProjects = true, Closure configClosure) {
            String applyTo = allProjects ? "allprojects" : "subprojects"
            buildFile.createFile().text = """
    $applyTo {
        apply plugin:'java'
        apply plugin:'$ideName'
    }
    """
            settingsFile.createFile().text = "rootProject.name='$projectName'\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensionsTest.kt

        fun `non reified apply extension on Gradle`() {
            assertNonReifiedApplyExtension<Gradle>()
        }
    
        @Test
        fun `reified apply extension`() {
    
            newPluginAwareMock<PluginAware>().run {
                target.apply<AnyPlugin>()
                verify(configurationAction).plugin(AnyPlugin::class.java)
            }
            newPluginAwareMock<Gradle>().run {
                target.apply<GradlePlugin>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResult.java

        }
    
        public void applyTo(BuildableComponentIdResolveResult idResolve) {
            super.applyTo(idResolve);
            if (failure != null) {
                idResolve.failed(failure);
            }
            if (state != null) {
                idResolve.resolved(state, graphState);
            }
        }
    
        @Override
        public void applyTo(BuildableComponentResolveResult target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/BuildLayoutResult.java

    import java.io.File;
    
    /**
     * Immutable build layout parameters, calculated from the command-line options and environment.
     */
    public interface BuildLayoutResult {
        void applyTo(BuildLayoutParameters buildLayout);
    
        void applyTo(StartParameterInternal startParameter);
    
        BuildLayoutConfiguration toLayoutConfiguration();
    
        File getGradleInstallationHomeDir();
    
        File getGradleUserHomeDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/daemonsetcontroller.go

    func (o *DaemonSetControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    }
    
    // ApplyTo fills up DaemonSetController config with options.
    func (o *DaemonSetControllerOptions) ApplyTo(cfg *daemonconfig.DaemonSetControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentDaemonSetSyncs = o.ConcurrentDaemonSetSyncs
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                skipsPlatformMetadata << "$group:$name:$version"
            }
    
            void applyTo(RemoteRepositorySpec spec) {
                Set<String> virtualPlatforms = [] as Set
                Set<String> publishedPlatforms = [] as Set
                Set<String> resolvesToVirtual = [] as Set
    
                specs.each {
                    it.applyTo(spec)
                    if (it.virtualPlatforms) {
                        it.seenVersions.each { v ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/config.go

    	if lastErr = s.Features.ApplyTo(genericConfig, clientgoExternalClient, versionedInformers); lastErr != nil {
    		return
    	}
    	if lastErr = s.APIEnablement.ApplyTo(genericConfig, resourceConfig, legacyscheme.Scheme); lastErr != nil {
    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top