Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Bush (0.97 sec)

  1. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/BuildCacheLocalCacheIntegrationTest.groovy

            settingsFile << """
                buildCache { local.push = false }
            """
    
            when:
            succeeds("t")
    
            then:
            executed()
            localCache.empty
            def cacheKey = cacheOperations.getCacheKeyForTask(":t")
            remoteCache.hasCacheEntry(cacheKey)
    
            when:
            settingsFile << """
                buildCache.local.push = true
            """
            execute()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

         */
        val identities: ReadIdentities
    }
    
    
    interface MutableIsolateContext : IsolateContext {
        override var trace: PropertyTrace
    
        fun push(codec: Codec<Any?>)
        fun push(owner: IsolateOwner)
        fun push(owner: IsolateOwner, codec: Codec<Any?>)
        fun pop()
    
        suspend fun forIncompatibleType(path: String, action: suspend () -> Unit)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        val contexts = ArrayList<Pair<T?, Codec<Any?>>>()
    
        override fun push(codec: Codec<Any?>) {
            contexts.add(0, Pair(currentIsolate, currentCodec))
            currentCodec = codec
        }
    
        override fun push(owner: IsolateOwner) {
            push(owner, currentCodec)
        }
    
        override fun push(owner: IsolateOwner, codec: Codec<Any?>) {
            push(codec)
            currentIsolate = newIsolate(owner)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            override fun onError(error: Exception, message: StructuredMessageBuilder) =
                undefined()
    
            override fun push(codec: Codec<Any?>): Unit =
                undefined()
    
            override fun push(owner: IsolateOwner): Unit =
                undefined()
    
            override fun push(owner: IsolateOwner, codec: Codec<Any?>): Unit =
                undefined()
    
            override fun pop(): Unit =
                undefined()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/InvalidManagedModelElementTypeException.java

            Deque<String> descriptions = new LinkedList<>();
            DefaultModelSchemaExtractionContext<?> current = extractionContext;
            while (current != null) {
                descriptions.push(current.getDescription());
                current = current.getParent();
            }
    
            out.append(descriptions.pop());
            out.append('\n');
    
            while (!descriptions.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. .github/workflows/contributor-pr.yml

    name: Contributor CI Build
    
    on:
      push:
        branches:
          - master
      pull_request:
        branches:
          - master
    
    concurrency:
      # On master/release, we don't want any jobs cancelled so the sha is used to name the group
      # On PR branches, we cancel the job if new commits are pushed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. gradlew

            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    
    
    # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
    DEFAULT_JVM_OPTS='-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            }
    
            result.remote.config.useExpectContinue == "false"
    
            result.remote.type == 'HTTP'
            result.remote.push == push
    
    
            where:
            authenticated | credentials            | push
            'true'        | SOME_CREDENTIALS       | true
            'false'       | NO_CREDENTIALS         | false
            'false'       | INCOMPLETE_CREDENTIALS | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

            val subject = ConcurrentGroupingQueue<Request> { group == it.group }
            for ((r1, r2) in requestsInGroup1 zip requestsInGroup2) {
                // interleave the requests
                subject.push(r1)
                subject.push(r2)
            }
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup2.reversed())
            )
    
            assertThat(
                subject.nextGroup(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

            context.push(IsolateOwners.OwnerHost(host), codecs.userTypesCodec())
            context.runWriteOperation {
                write(value)
            }
        }
    
        private
        fun read(decoder: Decoder): BuildTreeModelSideEffect {
            val (context, codecs) = cacheIO.readerContextFor(decoder)
            context.push(IsolateOwners.OwnerHost(host), codecs.userTypesCodec())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top