Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,524 for _ignored (0.13 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            File included2 = new File(testDir, 'subDir2/included2')
            File excluded1 = new File(testDir, 'subDir/notincluded')
            File ignored1 = new File(testDir, 'ignored')
            [included1, included2, excluded1, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            fileTree.include('*/*included*')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            def unused = file("app/src/main/headers/ignore1.h") << "broken!"
            def unusedPrivate = file("app/src/main/cpp/ignore2.h") << "broken!"
    
            run installApp
            libObjects.snapshot()
            appObjects.snapshot()
    
            when:
            unused << "even more broken"
            unusedPrivate << "even more broken"
            file("src/main/headers/ignored3.h") << "broken"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. src/os/signal/signal_test.go

    	// If we're being notified, then the signal should not be ignored.
    	if Ignored(syscall.SIGWINCH) {
    		t.Errorf("expected SIGWINCH to not be ignored.")
    	}
    	Stop(c)
    	Ignore(syscall.SIGWINCH)
    
    	// We're no longer paying attention to this signal.
    	if !Ignored(syscall.SIGWINCH) {
    		t.Errorf("expected SIGWINCH to be ignored when explicitly ignoring it.")
    	}
    
    	Reset()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
Back to top