Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for Precedence (0.15 sec)

  1. pilot/pkg/model/telemetry.go

    					tpb.WorkloadMode_SERVER: {},
    				}
    			}
    
    			mp := providers[provider]
    			// For each override, we normalize the configuration. The metrics list is an ordered list - latter
    			// elements have precedence. As a result, we will apply updates on top of previous entries.
    			for _, o := range m.Overrides {
    				// if we disable all metrics, we should drop the entire filter
    				if isAllMetrics(o.GetMatch()) && o.Disabled.GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    func ConvertWorkloadEntry(cfg config.Config) *networking.WorkloadEntry {
    	wle := cfg.Spec.(*networking.WorkloadEntry)
    	if wle == nil {
    		return nil
    	}
    
    	// we will merge labels from metadata with spec, with precedence to the metadata
    	labels := maps.MergeCopy(wle.Labels, cfg.Labels)
    	// shallow copy
    	copied := &networking.WorkloadEntry{}
    	protomarshal.ShallowCopy(copied, wle)
    	copied.Labels = labels
    	return copied
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"serviceName":                          "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            run ':a:checkRelease'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkRelease')
        }
    
        def "explicit configuration selection should take precedence"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework_test.go

    				PostBind: config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    			},
    		},
    		{
    			name: "Reorder MultiPoint plugins (specified extension takes precedence)",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: scoreWithNormalizePlugin1},
    						{Name: testPlugin},
    						{Name: scorePlugin1},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    	foldedNameIndex := make(map[string]*field, len(fields))
    	for i, field := range fields {
    		exactNameIndex[field.name] = &fields[i]
    		// For historical reasons, first folded match takes precedence.
    		if _, ok := foldedNameIndex[string(foldName(field.nameBytes))]; !ok {
    			foldedNameIndex[string(foldName(field.nameBytes))] = &fields[i]
    		}
    	}
    	return structFields{fields, exactNameIndex, foldedNameIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

             */
            boolean claimPropertyImplementation(PropertyMetadata property) {
                return false;
            }
    
            /**
             * Called when another a handler with higher precedence has also claimed the given property.
             */
            void ambiguous(PropertyMetadata property) {
                // No supposed to happen
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar_test.go

    			"b=2; " + expiresIn(-10),             // delete via Expires
    			"c=2; max-age=-1; " + expiresIn(-10), // delete via both
    			"d=4; max-age=-1; " + expiresIn(10)}, // MaxAge takes precedence
    		"",
    		[]query{{"http://www.host.test", ""}},
    	},
    	{
    		"Refill #1.",
    		"http://www.host.test",
    		[]string{
    			"A=1",
    			"A=2; path=/foo",
    			"A=3; domain=.host.test",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

      // claims in a way that maintains the identity of a pod. Every claim in
      // this list must have at least one matching (by name) volumeMount in one
      // container in the template. A claim in this list takes precedence over
      // any volumes in the template, with the same name.
      // TODO: Define the behavior if a claim already exists with the same name.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top