Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for allow (0.04 sec)

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

    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    # The file written to the guest-allowed directory should give Guests control.
    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    -- TestACL/go.mod --
    module TestACL
    -- TestACL/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginErrorsIntegrationTest.kt

    import java.io.File
    
    
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    class PrecompiledScriptPluginErrorsIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `should not allow precompiled plugin to conflict with core plugin`() {
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/java.gradle.kts",
                """
                tasks.register("myTask") {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         * Flushes any remaining state to the cache and closes any resources
         */
        fun finalizeCacheEntry()
    
        // This is a temporary property to allow migration from a root build scoped cache to a build tree scoped cache
        val isLoaded: Boolean
    
        // This is a temporary method to allow migration from a root build scoped cache to a build tree scoped cache
        fun attachRootBuild(host: DefaultConfigurationCache.Host)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ImplicitImportsTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class ImplicitImportsTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `implicit imports are fully qualified to allow use of the preferred type amongst those with same simple name in different Gradle API packages`() {
    
            // given:
            withBuildScript(
                """
    
                println("*" + Jar::class.qualifiedName + "*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/env_write.txt

    # go env -w/-u checks validity of GOOS/ARCH combinations
    env GOOS=
    env GOARCH=
    # check -w doesn't allow invalid GOOS
    ! go env -w GOOS=linuxx
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    # check -w doesn't allow invalid GOARCH
    ! go env -w GOARCH=amd644
    stderr 'unsupported GOOS/GOARCH.*/amd644$'
    # check -w doesn't allow invalid GOOS with valid GOARCH
    ! go env -w GOOS=linuxx GOARCH=amd64
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractPackageScopeTest.kt

        override fun getAllowedContainingFiles(mainFile: KtFile, testServices: TestServices): Set<KtFile> {
            // Package scope tests may collect symbols from multiple files, so we need to allow all main test files.
            return testServices.ktTestModuleStructure.allMainKtFiles.toSet()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/net/http/64910.md

    The patterns used by [ServeMux] now allow one or more spaces or tabs after the method name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:44:13 UTC 2024
    - 139 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_file_proxy.txt

    [short] skip
    
    # Allow (cached) downloads for -mod=readonly.
    env GO111MODULE=on
    env GOPATH=$WORK/gopath1
    cd $WORK/x
    go mod edit -fmt
    go list -mod=readonly
    env GOPROXY=file:///nonexist
    go list
    grep v1.5.1 $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/list
    
    # Use download cache as file:/// proxy.
    env GOPATH=$WORK/gopath2
    [GOOS:windows] env GOPROXY=file:///C:/nonexist
    [!GOOS:windows] env GOPROXY=file:///nonexist
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

                // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage
                // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/
                // we only allow 1 promotion job running at the same time to avoid website xml conflicts
                feature {
                    type = "JetBrains.SharedResources"
                    param("locks-param", "WebsiteReleasesXml writeLock")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/issue53586.txt

    [short] skip  # sleeps to make mtime cacheable
    
    go mod init example
    
    cd subdir
    go mod init example/subdir
    sleep 2s  # allow go.mod mtime to be cached
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    rm go.mod  # expose ../go.mod
    
    go list -f '{{.Dir}}: {{.ImportPath}}' ./pkg
    stdout $PWD${/}pkg': example/subdir/pkg$'
    
    -- subdir/pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:20:39 UTC 2022
    - 394 bytes
    - Viewed (0)
Back to top