Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,673 for _ignored (0.19 sec)

  1. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    # The same should work in directories with names starting with underscores.
    cd $WORK/_ignored
    go mod init testdata.tld/foo
    
    go get
    grep 'rsc.io/quote' go.mod
    
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    go mod vendor
    exists vendor/rsc.io/quote
    
    -- $WORK/testdata/main.go --
    package foo
    
    import _ "rsc.io/quote"
    -- $WORK/_ignored/main.go --
    package foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  2. src/cmd/doc/testdata/nested/ignore.go

    //go:build ignore
    // +build ignore
    
    // Ignored package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 70 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            !restoredNormalization.getPropertiesFileFilters()[PropertiesFileFilter.ALL_PROPERTIES].shouldBeIgnored("not.ignored")
            restoredNormalization.getPropertiesFileFilters()["some.properties"].shouldBeIgnored("ignored.in.some")
            !restoredNormalization.getPropertiesFileFilters()["some.properties"].shouldBeIgnored("not.ignored")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
  4. releasenotes/notes/ignore-port.yaml

    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  5. 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)
  6. src/go/build/testdata/non_source_tags/x_arm.go.ignore

    Ian Lance Taylor <******@****.***> 1667003038 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 19:48:43 UTC 2022
    - 184 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    // 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 := true, false
    		if focus != nil {
    			focused = focus(s)
    		}
    		if ignore != nil {
    			ignored = ignore(s)
    		}
    		fm = fm || focused
    		im = im || ignored
    		if focused && !ignored {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. 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)
Back to top