Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,390 for patching (0.24 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            given:
            registry.create().create("aar")
    
            expect:
            registry.mapAttributesFor(attrs, []) == attrs
        }
    
        def "adds artifactType attribute but does not apply any mapping when no matching artifact type"() {
            def attrs = ImmutableAttributes.EMPTY
            def attrsPlusFormat = concat(attrs, ["artifactType": "jar"])
            def artifact = Stub(ComponentArtifactMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /Received \d+ file system events since last build while watching \d+ locations/
            result.output =~ /Virtual file system retained information about \d+ files, \d+ directories and \d+ missing files since last build/
            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pkg/registry/resource/resourceclaim/storage/storage_test.go

    	test.TestWatch(
    		validNewClaim("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.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            container.add(bean1);
            container.add(bean2);
            container.add(bean3);
    
            then:
            container.matching(spec) as List == [bean2, bean3]
            container.matching(spec).findByName("a") == null
            container.matching(spec).findByName("b") == bean2
        }
    
        def canGetFilteredCollectionContainingAllObjectsWhichHaveType() {
            Bean bean1 = new Bean("a");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_json_fields.txt

    stdout '"XTestEmbedPatterns": \['
    # Test -json=<field> with *EmbedFiles fails due to broken file reference.
    ! go list -json=EmbedFiles
    stderr 'no matching files found'
    ! go list -json=TestEmbedFiles
    stderr 'no matching files found'
    ! go list -json=XTestEmbedFiles
    stderr 'no matching files found'
    cd ..
    
    [!git] skip
    
    # Test -json=<field> without Stale skips computing buildinfo
    cd repo
    exec git init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectSet.java

            return filtered(nameFilter, createFilter(spec));
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Spec<? super T> spec) {
            return filtered(createFilter(spec));
        }
    
        @Override
        public NamedDomainObjectSet<T> matching(Closure spec) {
            return matching(Specs.<T>convertClosureToSpec(spec));
        }
    
        @Override
        public Set<T> findAll(Closure cl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/registry/batch/cronjob/storage/storage_test.go

    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewCronJob(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"x": "y"},
    		},
    		// matching fields
    		[]fields.Set{},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "xyz"},
    			{"name": "foo"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  8. pkg/registry/storage/csinode/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	test.TestWatch(
    		validNewCSINode("foo"),
    		// 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: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  9. pkg/registry/storage/storageclass/storage/storage_test.go

    	test.TestWatch(
    		validNewStorageClass("foo"),
    		// 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: Mon Aug 12 20:55:35 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

        }
    
        TestClassExecutionResult testClassStartsWith(String testClass) {
            def matching = findTestClassStartsWith(testClass)
            return new JUnitTestClassExecutionResult(matching[1], matching[0], matching[0], outputAssociation)
        }
    
        @Override
        int getTotalNumberOfTestClassesExecuted() {
            return findClasses().size()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top