Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 643 for dialing (0.12 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/SerializerRegistry.java

        <T> void register(Class<T> implementationType, Serializer<T> serializer);
    
        /**
         * Use Java serialization for the specified type and all subtypes. Should be avoided, but useful when migrating to using serializers or when dealing with
         * arbitrary user types.
         */
        <T> void useJavaSerialization(Class<T> implementationType);
    
        /**
         * Returns true when this registry can serialize objects of the given type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

        - [Container Images](#container-images-10)
      - [Changelog since v1.23.6](#changelog-since-v1236)
      - [Changes by Kind](#changes-by-kind-10)
        - [API Change](#api-change-2)
        - [Feature](#feature-5)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-10)
      - [Dependencies](#dependencies-10)
        - [Added](#added-10)
        - [Changed](#changed-10)
        - [Removed](#removed-10)
    - [v1.23.6](#v1236)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This is called _dependency locking_.
    
    It enables, amongst others, the following scenarios:
    
    * Companies dealing with multi repositories no longer need to rely on `-SNAPSHOT` or changing dependencies,
    which sometimes result in cascading failures when a dependency introduces a bug or incompatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenFileRepository.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.maven
    
    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * A fixture for dealing with file Maven repositories.
     */
    class MavenFileRepository implements MavenRepository {
        final TestFile rootDir
    
        MavenFileRepository(TestFile rootDir) {
            this.rootDir = rootDir
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenLocalRepository.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.maven
    
    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * A fixture for dealing with the Maven Local cache.
     */
    class MavenLocalRepository implements MavenRepository {
    
        final TestFile rootDir
    
        MavenLocalRepository(TestFile rootDir) {
            this.rootDir = rootDir
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyVerification-disablingVerification/groovy/settings.gradle

    rootProject.name = "disabling-verification"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         *
         * This value defaults to {@code false}.
         *
         * When enabled, whether or not a store request would succeed is checked with the server before attempting.
         * This is particularly useful when potentially dealing with large artifacts that may be rejected by the server with a {@literal 413 Payload Too Large} response,
         * as it avoids the overhead of transmitting the large file just to have it rejected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/kotlin/settings.gradle.kts

    rootProject.name = "disabling-transitive-dependency-resolution"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            final Closure matcher
            final boolean failing
            final boolean missing
    
            SftpExpectOne(int type, String notMetMessage, boolean failing = false, boolean missing = false) {
                this.expectedType = type
                this.notMetMessage = "Expected SFTP command not received: $notMetMessage"
                this.matcher = matcher
                this.failing = failing
                this.missing = missing
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. hack/verify-e2e-test-ownership.sh

          failing: map(select(.policies | map(.fail) | any)) | length,
          testnames: map(select(.policies | map(.fail) | any) | .testname),
        }
      }
      # if a policy has no failing tests, change its log output to PASS
      | with_entries(.value += { log: (if (.value.failing == 0) then "PASS" else .value.level end) })
      # sort by policies with the most failing tests first
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
Back to top