Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 437 for ordinal (0.21 sec)

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

      private static <R, C, V> void validateTableCopies(Table<R, C, V> original) {
        Table<R, C, V> copy = ImmutableTable.copyOf(original);
        assertEquals(original, copy);
        validateViewOrdering(original, copy);
    
        Table<R, C, V> built = ImmutableTable.<R, C, V>builder().putAll(original).build();
        assertEquals(original, built);
        validateViewOrdering(original, built);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

            ? ((TransposeTable<R, C, V>) table).original
            : new TransposeTable<C, R, V>(table);
      }
    
      private static class TransposeTable<
              C extends @Nullable Object, R extends @Nullable Object, V extends @Nullable Object>
          extends AbstractTable<C, R, V> {
        final Table<R, C, V> original;
    
        TransposeTable(Table<R, C, V> original) {
          this.original = checkNotNull(original);
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

      private static <R, C, V> void validateTableCopies(Table<R, C, V> original) {
        Table<R, C, V> copy = ImmutableTable.copyOf(original);
        assertEquals(original, copy);
        validateViewOrdering(original, copy);
    
        Table<R, C, V> built = ImmutableTable.<R, C, V>builder().putAll(original).build();
        assertEquals(original, built);
        validateViewOrdering(original, built);
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 20K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-multierror/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    This may be an IP of a Service, a Pod, or something outside the cluster.
    Ztunnel will look up the destination from the [addresses](#address-type) it is configured with.
    
    For traffic to unknown addresses, or to workloads that are not a part of the mesh, the traffic will just be passed through as is.
    To make ztunnel more transparent, the original source IP address will be spoofed.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

    private
    data class MappedApiFunctionParameter(
        val original: ApiFunctionParameter,
        val index: Int = original.index,
        val type: ApiTypeUsage = original.type,
        val isVarargs: Boolean = original.isVarargs,
        val asArgument: String = "${if (original.isVarargs) "*" else ""}`${original.name ?: "p$index"}`"
    ) {
        val name: String
            get() = original.name ?: "p$index"
    }
    
    
    private
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Converter.java

      }
    
      private static final class ReverseConverter<A, B> extends Converter<B, A>
          implements Serializable {
        final Converter<A, B> original;
    
        ReverseConverter(Converter<A, B> original) {
          this.original = original;
        }
    
        /*
         * These gymnastics are a little confusing. Basically this class has neither legacy nor
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/errwrap/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/hcl/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

      public void testCreateCopy() {
        TreeBasedTable<String, Integer, Character> original =
            TreeBasedTable.create(Collections.reverseOrder(), Ordering.usingToString());
        original.put("foo", 3, 'a');
        original.put("foo", 12, 'b');
        original.put("bar", 5, 'c');
        original.put("cat", 8, 'd');
        table = TreeBasedTable.create(original);
        assertThat(table.rowKeySet()).containsExactly("foo", "cat", "bar").inOrder();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 15K bytes
    - Viewed (0)
Back to top