Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,566 for _ignored (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .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)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. internal/logger/logger.go

    	if logIgnoreError(err) {
    		return
    	}
    	for _, ignore := range ignored {
    		if errors.Is(err, ignore) {
    			return
    		}
    	}
    	logIf(ctx, subsystem, err)
    }
    
    func errToEntry(ctx context.Context, subsystem string, err error, errKind ...interface{}) log.Entry {
    	var l string
    	if anonFlag {
    		l = reflect.TypeOf(err).String()
    	} else {
    		l = fmt.Sprintf("%v (%T)", err, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

         *
         * <p>This method ignores tests defined in included builds.</p>
         *
         * @param testClasses The class names of the tests to be executed.
         * @return this
         * @since 2.6
         */
        TestLauncher withJvmTestClasses(String... testClasses);
    
    
        /**
         * <p>Adds tests to be executed declared by class name.</p>
         *
         * <p>This method ignores tests defined in included builds.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. cmd/leak-detect_test.go

    	return func() {
    		initialStackSnapShot.DetectLeak(t)
    	}
    }
    
    // list of functions to be ignored from the stack trace.
    // Leak detection is done when tests are run, should ignore the tests related functions,
    // and other runtime functions while identifying leaks.
    var ignoredStackFns = []string{
    	"",
    	// Below are the stacks ignored by the upstream leaktest code.
    	"testing.Main(",
    	"testing.tRunner(",
    	"testing.tRunner(",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                } catch (final Exception e) {
                    // ignore
                }
            }
            final Integer id = fessConfig.getAvailableSmbSidType(type);
            if (id != null) {
                return createSearchRole(id, sid.getAccountName());
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Ignored SID: {} {}", type, sid);
            }
            return null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top