Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Compound (0.16 sec)

  1. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA
        Ordering<Number> g = objects.compound(numbers).compound(objects);
        Ordering<Number> h = objects.compound(objects).compound(numbers);
    
        Ordering<Number> i = numbers.compound(objects.compound(objects));
        Ordering<Number> j = objects.compound(numbers.compound(objects)); // bad IDEA
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA
        Ordering<Number> g = objects.compound(numbers).compound(objects);
        Ordering<Number> h = objects.compound(objects).compound(numbers);
    
        Ordering<Number> i = numbers.compound(objects.compound(objects));
        Ordering<Number> j = objects.compound(numbers.compound(objects)); // bad IDEA
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

                ExampleDerivedFeature.DERIVED_FEATURE_2, ExampleBaseFeature.BASE_FEATURE_1);
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.COMPOUND_DERIVED_FEATURE);
        assertThat(FeatureUtil.addImpliedFeatures(features))
            .containsExactly(
                ExampleDerivedFeature.COMPOUND_DERIVED_FEATURE,
                ExampleDerivedFeature.DERIVED_FEATURE_1,
                ExampleDerivedFeature.DERIVED_FEATURE_2,
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

                ExampleDerivedFeature.DERIVED_FEATURE_2, ExampleBaseFeature.BASE_FEATURE_1);
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.COMPOUND_DERIVED_FEATURE);
        assertThat(FeatureUtil.addImpliedFeatures(features))
            .containsExactly(
                ExampleDerivedFeature.COMPOUND_DERIVED_FEATURE,
                ExampleDerivedFeature.DERIVED_FEATURE_1,
                ExampleDerivedFeature.DERIVED_FEATURE_2,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 10.4K bytes
    - Viewed (2)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            if ( this.nextCommand != 0 ) {
                // padding becomes part of signature if this is _PART_ of a compound chain
                len += pad8(bufferIndex);
            }
            else if ( compound && this.nextCommand == 0 && this.readSize > 0 ) {
                // TODO: only apply this for actual compound chains, or is this correct for single responses, too?
                // 3.2.5.1.9 Handling Compounded Responses
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Ordering.java

       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
       * compound ordering with three or more components, simply chain multiple calls to this method.
       *
       * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to
       * one created using {@link Ordering#compound(Iterable)} on the same component comparators.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        // to fill dummy parameter values for them. Ties are broken by name then by the string form of
        // the parameter list.
        return BY_NUMBER_OF_PARAMETERS
            .compound(BY_METHOD_NAME)
            .compound(BY_PARAMETERS)
            .immutableSortedCopy(factories);
      }
    
      private List<Object> getDummyArguments(Invokable<?, ?> invokable)
          throws ParameterNotInstantiableException {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/transport/Transport.java

                if ( Thread.currentThread() == this.thread ) {
                    // we are in the transport thread, ie. on idle disconnecting
                    // this is synchronous operation
                    // This does not handle compound requests
                    synchronized ( this.inLock ) {
                        Long peekKey = peekKey();
                        if ( peekKey == firstKey ) {
                            doRecv(response);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

      private static final Ordering<List<Class<?>>> ORDERING_BY_CONSTRUCTOR_PARAMETER_LIST =
          Ordering.natural()
              .onResultOf((List<Class<?>> params) -> params.contains(String.class))
              .compound(
                  Ordering.natural()
                      .onResultOf((List<Class<?>> params) -> params.contains(Throwable.class)))
              .reverse();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        // to fill dummy parameter values for them. Ties are broken by name then by the string form of
        // the parameter list.
        return BY_NUMBER_OF_PARAMETERS
            .compound(BY_METHOD_NAME)
            .compound(BY_PARAMETERS)
            .immutableSortedCopy(factories);
      }
    
      private List<Object> getDummyArguments(Invokable<?, ?> invokable)
          throws ParameterNotInstantiableException {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
Back to top