Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,146 for _ignored (0.13 sec)

  1. pkg/config/analysis/analyzers/testdata/misannotated.yaml

          command: ['curl']
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
      annotations:
        # Annotation that Istio doesn't know about, but isn't an Istio annotation, thus ignored
        kubernetes.io/psp: my-privileged-psp
    spec:
      ports:
      - name: http
        port: 80
        targetPort: 9080
      selector:
        app: details
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/internal/profile/filter.go

    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    		fm = fm || focused
    		im = im || ignored
    		if focused && !ignored {
    			samples = append(samples, s)
    		}
    	}
    	p.Sample = samples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

    public class ATestClassWithIgnoredMethod {
        @Test
        @Ignore
        public void ignored() {
        }
    }
    
    public class ATestClassWithFailedTestAssumption {
        @Test
        public void assumed() {
            assumeTrue(false)
        }
    }
    
    @Ignore
    public class AnIgnoredTestClass {
        @Test
        public void ignored() {
        }
    
        @Test
        public void ignored2() {
        }
    }
    
    public class ABrokenTestClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top