Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 1,350 for rejects (0.05 seconds)

  1. module-tests/build.gradle.kts

    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.loggingInterceptor)
    
      // Force version 26.0.2-1 which is a proper JPMS module, unlike transitive 13.0
      implementation(libs.jetbrains.annotations)
    
      testImplementation(projects.okhttp)
      testImplementation(projects.loggingInterceptor)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. architecture/standards/0006-use-of-provider-apis-in-gradle.md

        void notManaged()
    }
    abstract class DefaultNestedType implements NestedType {
        ...
    }
    
    class Example {
        private final NestedType nested
        Example(ObjectFactory objects) {
           this.nested = objects.newInstance(DefaultNestedType.class)
        }
    
        @Nested
        NestedType getNestedProperty() {
            return nested;
        }
    }
    ```
    
    You should prefer to use managed types when possible. 
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  3. guava/src/com/google/common/base/MoreObjects.java

       * lazy evaluation of the fallback instance, using {@link Optional#or(Supplier)
       * first.or(supplier)}.
       *
       * <p><b>Java 9 users:</b> use {@link Objects#requireNonNullElse} instead. For lazy evaluation of
       * the fallback, use {@link Objects#requireNonNullElseGet Objects.requireNonNullElseGet(first, ()
       * -> second)}}.
       *
       * @return {@code first} if it is non-null; otherwise {@code second} if it is non-null
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 05 17:38:41 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java

                    return o instanceof DefaultVersionResolverRequest that
                            && Objects.equals(artifactCoordinates, that.artifactCoordinates)
                            && Objects.equals(repositories, that.repositories);
                }
    
                @Override
                public int hashCode() {
                    return Objects.hash(artifactCoordinates, repositories);
                }
    
                @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 10 07:30:49 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

        }
        CacheBuilderSpec that = (CacheBuilderSpec) obj;
        return Objects.equals(initialCapacity, that.initialCapacity)
            && Objects.equals(maximumSize, that.maximumSize)
            && Objects.equals(maximumWeight, that.maximumWeight)
            && Objects.equals(concurrencyLevel, that.concurrencyLevel)
            && Objects.equals(keyStrength, that.keyStrength)
            && Objects.equals(valueStrength, that.valueStrength)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  6. guava/src/com/google/common/cache/CacheBuilderSpec.java

        }
        CacheBuilderSpec that = (CacheBuilderSpec) obj;
        return Objects.equals(initialCapacity, that.initialCapacity)
            && Objects.equals(maximumSize, that.maximumSize)
            && Objects.equals(maximumWeight, that.maximumWeight)
            && Objects.equals(concurrencyLevel, that.concurrencyLevel)
            && Objects.equals(keyStrength, that.keyStrength)
            && Objects.equals(valueStrength, that.valueStrength)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  7. okcurl/build.gradle.kts

    }
    
    dependencies {
      api(projects.okhttp)
      api(projects.loggingInterceptor)
      api(libs.square.okio)
      implementation(libs.clikt)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(libs.junit)
      testImplementation(libs.assertk)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

                            "The requested required projects " + requiredSelectors + " do not exist.", request.getPom());
                } else {
                    String optionalSelectors = unresolvedSelectors.stream()
                            .map(ProjectActivation.ProjectActivationSettings::selector)
                            .collect(Collectors.joining(", "));
                    LOGGER.info("The requested optional projects {} do not exist.", optionalSelectors);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 11 16:38:19 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  9. internal/s3select/jstream/README.md

    -kv | output inner key value pairs as newly formed objects
    -v | output depth and offset details for each value
    -h | display help dialog
    
    ## Benchmarks
    
    Obligatory benchmarks performed on files with arrays of objects, where the decoded objects are to be extracted.
    
    Two file sizes are used -- regular (1.6mb, 1000 objects) and large (128mb, 100000 objects)
    
    input size | lib | MB/s | Allocated
    --- | --- | --- | ---
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 23 19:35:41 GMT 2024
    - 3.2K bytes
    - Click Count (0)
  10. okhttp-hpacktests/build.gradle.kts

    }
    
    dependencies {
      testImplementation(libs.square.okio)
      testImplementation(libs.square.moshi)
      testImplementation(libs.square.moshi.kotlin)
      testImplementation(projects.okhttp)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.mockwebserver)
      testImplementation(libs.junit)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 441 bytes
    - Click Count (0)
Back to Top