Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,112 for _ignored (0.16 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. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.png

    java-library-ignore-deprecated-main.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.png

    java-library-ignore-deprecated-test.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare.go

    	}
    
    	aom, bom := ao.ToMap(), bo.ToMap()
    	return manifestDiff(aom, bom, nil, verbose)
    }
    
    // ManifestDiffWithSelect checks the manifest differences with selected and ignored resources.
    // The selected filter will apply before the ignored filter.
    func ManifestDiffWithRenameSelectIgnore(a, b, renameResources, selectResources, ignoreResources string, verbose bool) (string, error) {
    	rnm := getKeyValueMap(renameResources)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            def ignoredFile = contents.file("ignored.txt")
            ignoredFile << "this file is ignored"
            def nonIgnoredFile = contents.file("not-ignored.txt")
            nonIgnoredFile << "this file is not ignored"
            contents.zipTo(archive)
            buildFile << """
                normalization {
                    runtimeClasspath {
                        ignore 'ignored.txt'
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-ignore.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 520 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top