Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 168 for Dufour (0.2 sec)

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

            ImmutableListMultimap.<Integer, String>builder()
                .putAll(3, "one", "two")
                .put(5, "three")
                .put(4, "four")
                .build();
        ImmutableListMultimap<Integer, String> index =
            FluentIterable.from(asList("one", "two", "three", "four"))
                .index(
                    new Function<String, Integer>() {
                      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 31.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ArrayTableRowTest.java

      }
    
      @Override
      protected Table<Character, String, Integer> makeTable() {
        return ArrayTable.create(
            Arrays.asList('a', 'b', 'c'), Arrays.asList("one", "two", "three", "four"));
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 01 22:53:42 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-config-order/wo-plugin-mgmt/pom.xml

            <configuration>
              <stringParams>
                <stringParam>one</stringParam>
                <stringParam>two</stringParam>
                <stringParam>three</stringParam>
                <stringParam>four</stringParam>
              </stringParams>
            </configuration>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>config</goal>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableColumnTest.java

        RowSortedTable<String, Character, Integer> table = TreeBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
        table.put("three", 'a', 3);
        table.put("four", 'b', 4);
        return Tables.unmodifiableRowSortedTable(table).column('a');
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnTest.java

        Table<String, Character, Integer> table = HashBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
        table.put("three", 'a', 3);
        table.put("four", 'b', 4);
        return Tables.transformValues(table, DIVIDE_BY_2).column('a');
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_schema_extra_example/test_tutorial004.py

                                                {
                                                    "name": "Baz",
                                                    "price": "thirty five point four",
                                                },
                                            ],
                                        }
                                    )
                                    | IsDict(
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_schema_extra_example/test_tutorial004_py310.py

                                                {
                                                    "name": "Baz",
                                                    "price": "thirty five point four",
                                                },
                                            ],
                                        }
                                    )
                                    | IsDict(
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

        public String[] createValueArray(int length) {
          return new String[length];
        }
    
        @Override
        public SampleElements<String> sampleKeys() {
          return new SampleElements<>("one", "two", "three", "four", "five");
        }
    
        @Override
        public SampleElements<String> sampleValues() {
          return new SampleElements<>("january", "february", "march", "april", "may");
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-config-order/w-plugin-mgmt/pom.xml

            <configuration>
              <stringParams>
                <stringParam>one</stringParam>
                <stringParam>two</stringParam>
                <stringParam>three</stringParam>
                <stringParam>four</stringParam>
              </stringParams>
            </configuration>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>config</goal>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  10. docs_src/schema_extra_example/tutorial004_an_py310.py

                    {
                        "name": "Bar",
                        "price": "35.4",
                    },
                    {
                        "name": "Baz",
                        "price": "thirty five point four",
                    },
                ],
            ),
        ],
    ):
        results = {"item_id": item_id, "item": item}
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jul 01 16:43:29 GMT 2023
    - 917 bytes
    - Viewed (0)
Back to top