Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isPush (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

            @Nullable DescribedBuildCacheService<BuildCache, BuildCacheService> remote
        ) {
            boolean localPush = local != null && local.config.isPush();
            boolean remotePush = remote != null && remote.config.isPush();
            return new BuildCacheServicesConfiguration(
                buildPath.getPath(),
                local != null ? local.service : null, localPush,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/kotlin/settings.gradle.kts

    rootProject.name = "developer-ci-setup"
    // tag::developer-ci-setup[]
    val isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isPush = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 281 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/BuildScanIntegrationTest.kt

            withSettings(
                """
                buildCache {
                    local {
                        directory = file("${buildCacheDir.normalisedPath}")
                        isEnabled = true
                        isPush = true
                    }
                }
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

                 */
                String getType();
    
                /**
                 * Whether push was enabled.
                 */
                boolean isPush();
    
                /**
                 * The advertised config parameters of the cache.
                 * No null values or keys.
                 * Ordered by key lexicographically.
                 *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/CachedKotlinTaskExecutionIntegrationTest.groovy

            file("buildSrc/settings.gradle.kts") << """
                buildCache {
                    local {
                        directory = "${cacheDir.absoluteFile.toURI()}"
                        isPush = true
                    }
                }
            """
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @LeaksFileHandles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	MOUNTEDOVER        = 0x40000000
    	FILE_EXCEPTION     = 0x60000070
    )
    
    const (
    	TUNNEWPPA = 0x540001
    	TUNSETPPA = 0x540002
    
    	I_STR     = 0x5308
    	I_POP     = 0x5303
    	I_PUSH    = 0x5302
    	I_LINK    = 0x530c
    	I_UNLINK  = 0x530d
    	I_PLINK   = 0x5316
    	I_PUNLINK = 0x5317
    
    	IF_UNITSEL = -0x7ffb8cca
    )
    
    type strbuf struct {
    	Maxlen int32
    	Len    int32
    	Buf    *int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top