Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for _ignored (0.25 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

                 */
                val IGNORED: Any = Ignored.INSTANCE
    
                // Enum ensures that only one instance of INSTANCE exists and even deserialization
                // doesn't create a new one. The `object` has no such guarantee.
                private
                enum class Ignored {
                    INSTANCE
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/envoyfilter.go

    	// ProxyPrefixMatch provides a prefix match for the proxy version. The current API only allows
    	// regex match, but as an optimization we can reduce this to a prefix match for common cases.
    	// If this is set, ProxyVersionRegex is ignored.
    	ProxyPrefixMatch string
    	Name             string
    	Namespace        string
    	FullName         string
    }
    
    // wellKnownVersions defines a mapping of well known regex matches to prefix matches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

        def "can use task types defined in buildSrc"() {
            given:
            createDirs("buildSrc/ignored")
            file("buildSrc/settings.gradle") << """
                include 'ignored' // include some content
            """
            file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java-library' } // include some content
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. test/linknameasm.go

    // buildrundir
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build amd64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 210 bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

        fun `initial restore is an exception`() {
            val state = InputTrackingState()
            try {
                state.restoreForCurrentThread()
                Assert.fail("Exception expected")
            } catch (ignored: IllegalStateException) {
                // Expected exception
            }
        }
    
        @Test
        fun `unmatched restore is an exception`() {
            val state = InputTrackingState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

        @TargetGradleVersion(">=3.0 <7.6")
        def "Custom system properties are ignored in older Gradle versions"() {
            setup:
            if (targetDist.version < GradleVersion.version('4.9') ) {
                buildFile.text = buildFile.text.replace('tasks.register', 'tasks.create')
            }
    
            when:
            runTask { withSystemProperties('mySystemProperty' : 'ignored') }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    archiveFileName.convention("something")
                }
            """
    
            expect: 'convention mapping is ignored'
            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/process/internal/CurrentProcessTest.groovy

            def currentProcess = new CurrentProcess(Mock(FileCollectionFactory))
            expect:
            currentProcess.jvm == Jvm.current()
        }
    
        def "agent arguments are ignored"() {
            def options = inferJvmOptions(Mock(FileCollectionFactory), ['-Xmx1g', '-javaagent:foo.jar', '-javaagent:' + AgentUtils.AGENT_MODULE_NAME + '.jar'])
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

    import org.gradle.test.fixtures.ConcurrentTestUtil
    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Ignore
    
    
    class ConfigurationCacheCleanupIntegrationTest
        extends AbstractConfigurationCacheIntegrationTest
        implements FileAccessTimeJournalFixture {
    
        @Ignore('https://github.com/gradle/gradle-private/issues/3121')
        def "cleanup deletes old entries"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top