Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for checkInts (0.55 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

            allMessages - (infoMessages + errorMessages)
        }
    
        void checkOuts(ExecutionResult result) {
            infoMessages.each {List<String> messages ->
                checkOuts(true, result.output, messages, validator)
            }
            errorMessages.each {List<String> messages ->
                checkOuts(true, result.error, messages, validator)
            }
            forbiddenMessages.each {List<String> messages ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    		name        string
    		mask        []int
    		checkBits   []int
    		expectedSet bool
    	}{
    		{
    			name:        "Check if any bits from 11 in mask 00 is set",
    			mask:        nil,
    			checkBits:   []int{0, 1},
    			expectedSet: false,
    		},
    		{
    			name:        "Check if any bits from 11 in mask 01 is set",
    			mask:        []int{0},
    			checkBits:   []int{0, 1},
    			expectedSet: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            checkoutDir("dep", commits["3.0"].id.name, repo.id).assertDoesNotExist()
        }
    
        @ToBeFixedForConfigurationCache
        def "removes all checkouts when VCS mappings are removed"() {
            // checkout all versions
            versions.each { version ->
                succeeds("assertVersion", "-PrepoVersion=${version}")
            }
            // mark all versions as unused
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * There are some situations where the Kotlin DSL is slower. First use, on clean checkouts or ephemeral CI agents for example, link:{gradle-issues}15886[are known to be slower].
    The same applies to the scenario in which something in the _buildSrc_ directory changes, which invalidates build-script caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <3> The Kotlin build script applies the Groovy script
    
    [[kotdsl:limitations]]
    == Limitations
    
    * The Kotlin DSL is link:{gradle-issues}15886[known to be slower than the Groovy DSL] on first use, for example with clean checkouts or on ephemeral continuous integration agents.
    Changing something in the _buildSrc_ directory also has an impact as it invalidates build-script caching.
    The main reason for this is the slower script compilation for Kotlin DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top