Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for Mooring (1.29 sec)

  1. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    # so that we can check for a spurious warning.
    env GOPATH=
    env HOME=''
    env USERPROFILE=''
    env home=''
    
    # Relocated Executable
    # Since we built with -trimpath and the binary isn't installed in a
    # normal-looking GOROOT, this command should fail.
    
    ! exec $WORK/new/bin/go$GOEXE env GOROOT
    stderr '^go: cannot find GOROOT directory: ''go'' binary is trimmed and GOROOT is not set$'
    ! stderr 'GOPATH set to GOROOT'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                logger.info("The build logic input of type ${obtainedValue.valueSourceType} cannot be checked because it failed when storing the entry", failure)
                buildLogicInputFailed(obtainedValue, failure)
            }
        }
    
        private
        fun hasDirectoryChanged(file: File, originalHash: HashCode?) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FunctionSemantics.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import org.gradle.tooling.ToolingModelContract
    import java.io.Serializable
    
    
    @ToolingModelContract(subTypes = [
        FunctionSemantics.ConfigureSemantics::class,
        FunctionSemantics.NewObjectFunctionSemantics::class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:43:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/Workarounds.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.TaskInternal
    import org.gradle.tooling.model.kotlin.dsl.KotlinDslModelsParameters
    
    
    internal
    object Workarounds {
    
        // TODO:[DefaultBuildTreeLifecycleController.isEligibleToRunTasks()] remove once fixed
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
        fun `sets progress display name on load`() {
            // given:
            val buildOperationRunner = mock<BuildOperationRunner> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    #### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    #### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    #### Build infrastructure
    
    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    #### Documentation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_update_nolatest.txt

    env GOPROXY=$testproxy/invalid
    ! go list -m -u example.com/nolatest
    stderr '^go: loading module retractions for example.com/nolatest@v0.0.0: invalid response from proxy "[^"]*": invalid character ''i'' looking for beginning of value$'
    
    -- go.mod --
    module m
    
    go 1.17
    
    require (
    	example.com/nolatest v0.0.0
    	example.com/noversion v0.0.0
    )
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * potentially reducing the memory consumption.
         * Another key benefit is that this eliminates discrepancies in behavior between cache hits and misses.
         *
         * We disable load-after-store when tooling model builders are involved.
         * This is because the builders are executed after the tasks (if any) in a build action,
         * and these builders may access project state as well as the task state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    # or exiting with status 0 (which it should do when interrupted by ^C).
    ! go test -fuzz=FuzzClosePipeAfter -parallel=1
    stdout '^\s*communicating with fuzzing process: invalid character ''!'' looking for beginning of value$'
    ! exists testdata
    
    -- go.mod --
    module test
    
    go 1.17
    -- io_error_test.go --
    package io_error
    
    import (
    	"flag"
    	"testing"
    	"time"
    )
    
    func isWorker() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. architecture/platforms.md

    ### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    ### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    ### Build infrastructure
    
    Provides build logic, libraries, test suites and infrastructure to support developing and releasing Gradle.
    
    ### Documentation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top