Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,773 for _ignored (0.32 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            inputDir.file('.gitignore').text = "some ignored file"
            inputDir.file('#ignored#').text = "some ignored file"
            inputDir.file('.git/any-name.txt').text = "some ignored file"
            inputDir.file('something/.git/deeper/dir/structure/any-name.txt').text = "some ignored file"
            inputDir.file('._ignored').text = "some ignored file"
            inputDir.file('some-file.txt~').text = "some ignored file"
    
            run 'myTask', "--info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                twiceIgnoredProperty: [(TYPE): Ignored]
            ], [
                strict(ignoredAnnotatedPropertyMessage { property('twiceIgnoredProperty').ignoring('Ignored').alsoAnnotatedWith('Ignored2').includeLink() })
            ]
        }
    
        @SuppressWarnings("unused")
        interface TypeWithIgnoredPropertyWithMultipleIgnoreAnnotations {
            @Ignored
            @Ignored2
            String getTwiceIgnoredProperty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated.png

    java-library-ignore-deprecated.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top