Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 2,390 for patching (0.11 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/nameMatching/groovy/settings.gradle

    rootProject.name = 'name-matching'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  2. pkg/registry/scheduling/priorityclass/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	test.TestWatch(
    		validNewPriorityClass(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 16:51:57 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  3. pkg/registry/policy/poddisruptionbudget/storage/storage_test.go

    	test.TestWatch(
    		validNewPodDisruptionBudget(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/registry/resource/podschedulingcontext/storage/storage_test.go

    	test.TestWatch(
    		validNewPodSchedulingContexts("foo", metav1.NamespaceDefault),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            toList(container.withType(type)) == iterationOrder(c, a)
            toList(container.withType(otherType)) == iterationOrder(d)
        }
    
        def "provider for element is queried when filtered collection with matching type created"() {
            containerAllowsExternalProviders()
            def provider = Mock(ProviderInternal)
    
            addToContainer(c)
            container.addLater(provider)
            addToContainer(d)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    [[variant_attributes]]
    = Working with Variant Attributes
    
    As explained in the section on <<variant_model.adoc#sec:variant-aware-matching,variant aware matching>>, attributes give semantics to variants and are used by Gradle's dependency management engine to select the best matching variant.
    
    As a user of Gradle, attributes are often hidden as implementation details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/net/http/sniff.go

    }
    
    type maskedSig struct {
    	mask, pat []byte
    	skipWS    bool
    	ct        string
    }
    
    func (m *maskedSig) match(data []byte, firstNonWS int) string {
    	// pattern matching algorithm section 6
    	// https://mimesniff.spec.whatwg.org/#pattern-matching-algorithm
    
    	if m.skipWS {
    		data = data[firstNonWS:]
    	}
    	if len(m.pat) != len(m.mask) {
    		return ""
    	}
    	if len(data) < len(m.pat) {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. pkg/registry/core/resourcequota/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewResourceQuota(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

        dependsOn tasks.withType(PublishToMavenRepository).matching {
            it.repository == publishing.repositories.external
        }
    }
    // end::shorthand-tasks[]
    tasks.register('publishForDevelopment') {
        group = 'publishing'
        description = 'Publishes all Maven publications to the internal Maven repository and the local Maven repository.'
        dependsOn tasks.withType(PublishToMavenRepository).matching {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

            //Brand new conflict goes to the end
            //If we find any matching conflict we have to hook up with it
    
            //Find an existing matching conflict
            for (K participant : participants) {
                Conflict c = conflictsByParticipant.get(participant);
                if (c != null) {
                    //there is already registered conflict with at least one matching participant, hook up to this conflict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top