Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 701 for ignoreMe (0.24 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            withLibBinaries("buildableBinary", "notBuildableBinary")
            withStandaloneBinaries("ignoreMe1", "ignoreMe2")
    
            when:
            run "assemble"
    
            then:
            result.assertTasksExecuted(":libBuildableBinary", ":assemble")
        }
    
        def "check task does not build binaries" () {
            withLibBinaries("buildableBinary1", "notBuildableBinary", "buildableBinary2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            fileUri = file.toURI()
        }
    
        private URI createJar() throws URISyntaxException {
            TestFile jarFile = tmpDir.testDirectory.file('test.jar')
            testDir.file('ignoreme').write('content')
            testDir.zipTo(jarFile)
            return new URI("jar:${jarFile.toURI()}!/build.script")
        }
    
        def canConstructResourceFromFile() {
            when:
            file.createNewFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. src/log/slog/internal/ignorepc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package internal
    
    // If IgnorePC is true, do not invoke runtime.Callers to get the pc.
    // This is solely for benchmarking the slowdown from runtime.Callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 338 bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileCollectionSpec.groovy

            TestFile file2 = dir1.file("f2").createFile()
            TestFile missing = testDir.file("f3")
            testDir.file("f2").createFile()
            testDir.file("ignored1").createFile()
            dir1.file("f1").createFile()
            dir1.file("ignored1").createFile()
            def collection = containing(file1, file2, dir1, missing)
    
            expect:
            assertSetContainsForFileSet(collection, toSet("f1", "f2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  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. 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