Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for THOUSAND (0.38 sec)

  1. src/maps/example_test.go

    	// map[four:4 two:2]
    }
    
    func ExampleEqual() {
    	m1 := map[int]string{
    		1:    "one",
    		10:   "Ten",
    		1000: "THOUSAND",
    	}
    	m2 := map[int]string{
    		1:    "one",
    		10:   "Ten",
    		1000: "THOUSAND",
    	}
    	m3 := map[int]string{
    		1:    "one",
    		10:   "ten",
    		1000: "thousand",
    	}
    
    	fmt.Println(maps.Equal(m1, m2))
    	fmt.Println(maps.Equal(m1, m3))
    	// Output:
    	// true
    	// false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:21:56 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/memory/store_test.go

    	s := initStore(b)
    	gvk := config.GroupVersionKind{
    		Group:   "networking.istio.io",
    		Version: "v1alpha3",
    		Kind:    "ServiceEntry",
    	}
    	b.ResetTimer()
    	for n := 0; n < b.N; n++ {
    		// get one thousand times
    		for i := 0; i < 1000; i++ {
    			if s.Get(gvk, strconv.Itoa(i), "ns") == nil {
    				b.Fatal("get failed")
    			}
    		}
    	}
    }
    
    func BenchmarkStoreList(b *testing.B) {
    	s := initStore(b)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/generate.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test -run flag
    
    //go:generate echo oh yes my man
    //go:generate echo no, no, a thousand times no
    
    package p
    -- generate/env_test.go --
    package main_test
    
    //go:generate echo $GOPACKAGE
    -- generate/env_pwd.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // CHECK:           %[[GRAPH:.*]]:2 = tf_executor.graph {
    // CHECK:             %[[THOUSAND:.*]], %{{.*}} = tf_executor.island wraps "tf.Const"() <{value = dense<1000> : tensor<i32>}> : () -> tensor<i32>
    // CHECK:             %[[STACK_HANDLE:.*]], %{{.*}} = tf_executor.island wraps "tf.StackV2"(%[[THOUSAND]]) <{elem_type = f32}> : (tensor<i32>) -> tensor<!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	// this allows the cache to grow to an infinite size for up to a day.
    	// there is unlikely to be any meaningful memory impact on the server
    	// because the cache will likely never have more than a few thousand entries.
    	// each entry can be large due to an internal cache that maps the DEK seed to individual
    	// DEK entries, but that cache has an aggressive TTL to keep the size under control.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    217F          ; mapped                 ; 006D          # 1.1  SMALL ROMAN NUMERAL ONE THOUSAND
    2180..2182    ; valid                  ;      ; NV8    # 1.1  ROMAN NUMERAL ONE THOUSAND C D..ROMAN NUMERAL TEN THOUSAND
    2183          ; disallowed                             # 3.0  ROMAN NUMERAL REVERSED ONE HUNDRED
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Forking compilation rarely impacts the performance of small projects.
    But you should consider it if a single task compiles more than a thousand source files together.
    
    ==== Switch internal-only dependencies to implementation visibility
    
    NOTE: Only libraries can define `api` dependencies. Use the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top