Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Director (2.09 sec)

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

    go mod download rsc.io/fortune@v1.0.0
    ! go run $GOPATH/pkg/mod/rsc.io/fortune@v1.0.0
    stderr '^go: go\.mod file not found in current directory or any parent directory; see ''go help modules''$'
    ! go run ../pkg/mod/rsc.io/fortune@v1.0.0
    stderr '^go: go\.mod file not found in current directory or any parent directory; see ''go help modules''$'
    mkdir tmp
    cd tmp
    go mod init tmp
    go mod edit -require=rsc.io/fortune@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work.txt

    ! go work init doesnotexist
    stderr 'go: directory doesnotexist does not exist'
    go env GOWORK
    ! stdout .
    
    go work init ./a ./b
    cmpenv go.work go.work.want
    go env GOWORK
    stdout '^'$WORK'(\\|/)gopath(\\|/)src(\\|/)go.work$'
    
    ! go run  example.com/b
    stderr 'a(\\|/)a.go:4:8: no required module provides package rsc.io/quote; to add it:\n\tcd '$WORK(\\|/)gopath(\\|/)src(\\|/)a'\n\tgo get rsc.io/quote'
    cd a
    go get rsc.io/quote
    cat go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    import org.gradle.api.attributes.Category
    import org.gradle.api.attributes.LibraryElements
    import org.gradle.api.attributes.Usage
    import org.gradle.api.file.ConfigurableFileCollection
    import org.gradle.api.file.Directory
    import org.gradle.api.tasks.GroovySourceDirectorySet
    import org.gradle.api.tasks.InputDirectory
    import org.gradle.api.tasks.InputFiles
    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/SettingsSchemaAccessorsIntegrationTest.kt

    import org.gradle.kotlin.dsl.fixtures.AbstractKotlinIntegrationTest
    import org.gradle.test.fixtures.file.LeaksFileHandles
    import org.junit.Before
    import org.junit.Test
    
    
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    class SettingsSchemaAccessorsIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Before
        fun withSettingsPluginFromIncludedBuild() {
            // given: a Settings plugin from an included build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File(System.getProperty("user.home"), ".gradle/foo.bar")))
        }
    
        @Test
        fun `recognizes relative paths pointing outside the root directory`() {
            val instance = createFromPaths(listOf("../../test1"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(rootDir.parentFile.parentFile.resolve("test1")))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginIntegTest.kt

                assertThat(result.output, containsString("kotlin-$it-$embeddedKotlinVersion.jar"))
            }
        }
    
        @Test
        @LeaksFileHandles("Kotlin Compiler Daemon working directory")
        fun `can be used with embedded artifact-only repository`() {
    
            withDefaultSettings()
    
            withBuildScript(
                """
    
                plugins {
                    `embedded-kotlin`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                    // TODO: report or log [IOException]?
                    // NB: this intentionally swallows the exception, hence fail-safe.
                    // Skipping subtree doesn't make any sense, since this is not a directory.
                    // Skipping sibling may drop valid file paths afterward, so we just continue.
                    return FileVisitResult.CONTINUE
                }
            }
        )
        return result
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCodecs.kt

    import org.gradle.internal.serialize.graph.writeFile
    
    
    class DirectoryCodec(private val fileFactory: FileFactory) : Codec<Directory> {
        override suspend fun WriteContext.encode(value: Directory) {
            writeFile(value.asFile)
        }
    
        override suspend fun ReadContext.decode(): Directory {
            return fileFactory.dir(readFile())
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. ReadMe.md

    After cloning the project, import the project in IntelliJ by choosing the project directory in the Open project dialog.
    
    For handy work with compiler tests it's recommended to use [
    Kotlin Compiler Test Helper](https://github.com/demiurg906/test-data-helper-plugin)
    
    ### Dependency verification
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. doc/README.md

    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top