Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 811 for applyTo (0.33 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingConfigurationBuildOptions.java

            }
    
            @Override
            public void applyTo(String value, LoggingConfiguration settings, Origin origin) {
                String consoleValue = TextUtil.capitalize(TextUtil.toLowerCaseLocaleSafe(value));
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-outbound-listener"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        cachedMetadata.putProcessedMetadata(metadataProcessor.getRulesHash(), state);
                        localResult.applyTo(result);
                        result.resolved(state);
                        break;
                    case Failed:
                        localResult.applyTo(result, metadata -> {
                            // should not be called
                            throw new IllegalStateException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    	}
    }
    
    func TestRestOptionsStorageObjectCountTracker(t *testing.T) {
    	serverConfig := server.NewConfig(codecs)
    	etcdOptions := &EtcdOptions{}
    	if err := etcdOptions.ApplyTo(serverConfig); err != nil {
    		t.Fatalf("Failed to apply etcd options error: %v", err)
    	}
    	restOptions, err := serverConfig.RESTOptionsGetter.GetRESTOptions(schema.GroupResource{Group: "", Resource: ""})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            }
            modelRegistry.bind(action.getSubject(), type, action);
        }
    
        @Override
        public void applyTo(NodePredicate predicate, ModelActionRole role, ModelAction action) {
            modelRegistry.configureMatching(predicate.scope(getPath()), role, action);
        }
    
        @Override
        public void applyTo(NodePredicate predicate, Class<? extends RuleSource> rules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        description: "The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE."
        template: "The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE."
    
      - name: "EnvoyFilterUsesRemoveOperationIncorrectly"
        code: IST0154
        level: Error
        description: "The REMOVE operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/CrossBuildSignatureVerificationService.java

                entry = performActualVerification(origin, signature, trustedKeys, ignoredKeys, originHash, signatureHash);
                cache.put(cacheKey, entry);
            }
            entry.applyTo(builder);
        }
    
        private boolean hasExpired(CacheEntry entry) {
            List<String> missingKeys = entry.missingKeys;
            if (missingKeys == null || missingKeys.isEmpty()) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/aggregator.go

    	etcdOptions.SkipHealthEndpoints = true // avoid double wiring of health checks
    	if err := etcdOptions.ApplyTo(&genericConfig); err != nil {
    		return nil, err
    	}
    
    	// override MergedResourceConfig with aggregator defaults and registry
    	if err := commandOptions.APIEnablement.ApplyTo(
    		&genericConfig,
    		aggregatorapiserver.DefaultAPIResourceConfigSource(),
    		aggregatorscheme.Scheme); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tests/integration/helm/util.go

    	if err != nil {
    		ctx.Fatalf("failed to install istio %s chart", DiscoveryChartsDir)
    	}
    
    	err = ctx.ConfigIstio().YAML(IstioNamespace, template).Apply()
    	if err != nil {
    		ctx.Fatalf("failed to apply templated revision tags yaml: %v", err)
    	}
    
    	scopes.Framework.Infof("=== succeeded === ")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// Description: The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE.
    	EnvoyFilterUsesAddOperationIncorrectly = diag.NewMessageType(diag.Error, "IST0153", "The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top