Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,112 for _ignored (0.21 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File ignored1 = new File(testDir, 'ignored')
            [included1, included2, excluded1, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            fileTree.include('*/*included*')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/IgnoringResourceFilter.java

        private final Set<String> ignores;
        private final ImmutableSet<PathMatcher> ignoreMatchers;
    
        public IgnoringResourceFilter(ImmutableSet<String> ignores) {
            this.ignores = ignores;
            ImmutableSet.Builder<PathMatcher> builder = ImmutableSet.builder();
            for (String ignore : ignores) {
                PathMatcher matcher = PatternMatcherFactory.compile(true, ignore);
                builder.add(matcher);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            def unused = file("app/src/main/headers/ignore1.h") << "broken!"
            def unusedPrivate = file("app/src/main/cpp/ignore2.h") << "broken!"
    
            run installApp
            libObjects.snapshot()
            appObjects.snapshot()
    
            when:
            unused << "even more broken"
            unusedPrivate << "even more broken"
            file("src/main/headers/ignored3.h") << "broken"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If a subtype doesn't override a super-type defined category, the corresponding annotation in that category gets inherited.
     * Subtypes can mark methods to be ignored by using an ignore annotation.
     * Ignored methods don't inherit super-type annotations.
     * </p>
     *
     * <strong>Boolean properties</strong>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/TestResult.java

            return failures;
        }
    
        public boolean isIgnored() {
            return ignored;
        }
    
        public void addFailure(TestFailure failure) {
            classResults.failed(this);
            failures.add(failure);
        }
    
        public void setIgnored() {
            classResults.ignored(this);
            ignored = true;
        }
    
        @Override
        public int compareTo(TestResult testResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/os/signal/signal_test.go

    	// If we're being notified, then the signal should not be ignored.
    	if Ignored(syscall.SIGWINCH) {
    		t.Errorf("expected SIGWINCH to not be ignored.")
    	}
    	Stop(c)
    	Ignore(syscall.SIGWINCH)
    
    	// We're no longer paying attention to this signal.
    	if !Ignored(syscall.SIGWINCH) {
    		t.Errorf("expected SIGWINCH to be ignored when explicitly ignoring it.")
    	}
    
    	Reset()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/IgnoringResourceEntryFilter.java

    public class IgnoringResourceEntryFilter implements ResourceEntryFilter {
        private final ImmutableSet<String> ignores;
    
        public IgnoringResourceEntryFilter(ImmutableSet<String> ignores) {
            this.ignores = ignores;
        }
    
        @Override
        public boolean shouldBeIgnored(String entry) {
            return ignores.contains(entry);
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalization.java

            defaultCachedState.resourceFilterState.forEach(resourceFilter::ignore);
            defaultCachedState.manifestAttributesFilterState.forEach(manifestAttributeResourceFilter::ignore);
            defaultCachedState.propertiesFileFiltersState.forEach((pattern, ignores) -> {
                propertyFileFilters.configure(pattern, normalization -> ignores.forEach(normalization::ignoreProperty));
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 07:34:45 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. .git-blame-ignore-revs

    Guillaume Nodet <******@****.***> 1669127925 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 14:38:45 UTC 2022
    - 857 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-ignore.yaml.injected

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 612 bytes
    - Viewed (0)
Back to top