Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 551 for maxs (0.04 sec)

  1. src/main/java/org/codelibs/core/collection/Maps.java

         * @return 指定されたキーと値を持つ{@link HashMap}を構築するための{@literal Maps}
         */
        public static <KEY, VALUE> Maps<KEY, VALUE> hashMap(final KEY key, final VALUE value) {
            return new Maps<>(new HashMap<KEY, VALUE>()).$(key, value);
        }
    
        /**
         * 指定されたキーと値を持つ{@link Hashtable}を構築するための{@literal Maps}を返します。
         *
         * @param <KEY>
         *            <code>Map</code>のキーの型
         * @param <VALUE>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/maps/maps.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package maps
    
    import "maps" // nolint: depguard
    
    // Equal reports whether two maps contain the same key/value pairs.
    // Values are compared using ==.
    func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {
    	return maps.Equal(m1, m2)
    }
    
    // Clone returns a copy of the map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 22:48:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/maps/maps.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package maps defines various functions useful with maps of any type.
    package maps
    
    import (
    	_ "unsafe"
    )
    
    // Equal reports whether two maps contain the same key/value pairs.
    // Values are compared using ==.
    func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {
    	if len(m1) != len(m2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:35:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. test/codegen/maps.go

    	// amd64:-`.*runtime\.mapclear`
    	for k = range m {
    		delete(m, k)
    	}
    	return k
    }
    
    func MapLiteralSizing(x int) (map[int]int, map[int]int) {
    	// This is tested for internal/abi/maps.go:MapBucketCountBits={3,4,5}
    	// amd64:"MOVL\t[$]33,"
    	m := map[int]int{
    		0:  0,
    		1:  1,
    		2:  2,
    		3:  3,
    		4:  4,
    		5:  5,
    		6:  6,
    		7:  7,
    		8:  8,
    		9:  9,
    		10: 10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. test/typeparam/maps.go

    func _Values[K comparable, V any](m map[K]V) []V {
    	r := make([]V, 0, len(m))
    	for _, v := range m {
    		r = append(r, v)
    	}
    	return r
    }
    
    // _Equal reports whether two maps contain the same key/value pairs.
    // _Values are compared using ==.
    func _Equal[K, V comparable](m1, m2 map[K]V) bool {
    	if len(m1) != len(m2) {
    		return false
    	}
    	for k, v1 := range m1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. test/stress/maps.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Maps.kt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/sort/example_keys_test.go

    	fmt.Println("By name:", planets)
    
    	By(mass).Sort(planets)
    	fmt.Println("By mass:", planets)
    
    	By(distance).Sort(planets)
    	fmt.Println("By distance:", planets)
    
    	By(decreasingDistance).Sort(planets)
    	fmt.Println("By decreasing distance:", planets)
    
    	// Output: By name: [{Earth 1 1} {Mars 0.107 1.5} {Mercury 0.055 0.4} {Venus 0.815 0.7}]
    	// By mass: [{Mercury 0.055 0.4} {Mars 0.107 1.5} {Venus 0.815 0.7} {Earth 1 1}]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:48:39 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  9. .idea/dictionaries/max.xml

    <component name="ProjectDictionaryState">
      <dictionary name="max">
        <words>
          <w>classfiles</w>
          <w>codegen</w>
          <w>kotlin</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jan 26 16:27:56 UTC 2012
    - 186 bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-null-max.golden

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 8K bytes
    - Viewed (0)
Back to top