Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 199 for 9$ (0.61 sec)

  1. src/net/http/cookiejar/jar_test.go

    			"A=8; domain=.google.com",
    			"A=9; path=/foo; domain=.google.com"},
    		"A=1 A=2 A=3 A=4 A=6 A=7 A=8 A=9",
    		[]query{
    			{"http://www.host.test/foo", "A=2 A=4 A=1 A=3"},
    			{"http://www.google.com/foo", "A=7 A=9 A=6 A=8"},
    		},
    	},
    	{
    		"Delete A7.",
    		"http://www.google.com",
    		[]string{"A=; path=/foo; max-age=-1"},
    		"A=1 A=2 A=3 A=4 A=6 A=8 A=9",
    		[]query{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

            regex: (.+)
            source_labels:
            - __meta_kubernetes_pod_annotation_prometheus_io_path
            target_label: __metrics_path__
          - action: replace
            regex: (\d+);(([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})
            replacement: '[$2]:$1'
            source_labels:
            - __meta_kubernetes_pod_annotation_prometheus_io_port
            - __meta_kubernetes_pod_ip
            target_label: __address__
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/net/http/cookie_test.go

    	},
    	// Make sure we can properly read back the Set-Cookie headers
    	// for names containing spaces:
    	{
    		Header{"Set-Cookie": {`special-9 =","`}},
    		[]*Cookie{{Name: "special-9", Value: ",", Quoted: true, Raw: `special-9 =","`}},
    	},
    	// Quoted values (issue #46443)
    	{
    		Header{"Set-Cookie": {`cookie="quoted"`}},
    		[]*Cookie{{Name: "cookie", Value: "quoted", Quoted: true, Raw: `cookie="quoted"`}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        %8 = "quantfork.dcast"(%7) : (tensor<!quant.uniform<i8:f32, 0.13170163023705575:-1>>) -> tensor<f32>
        %9 = stablehlo.pad %6, %8, low = [0, 1], high = [2, 1], interior = [0, 2] : (tensor<1x3xf32>, tensor<f32>) -> tensor<3x9xf32>
        %10 = "quantfork.qcast"(%9) {volatile} : (tensor<3x9xf32>) -> tensor<3x9x!quant.uniform<i8:f32, 0.13170163023705575:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %7 = call @uniform_quantize_0(%arg0, %1, %2) : (tensor<1x3x3x4xf32>, tensor<1x1x1x1xf32>, tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8>
        %8 = stablehlo.convert %7 : (tensor<1x3x3x4xi8>) -> tensor<1x3x3x4xf32>
        %9 = stablehlo.convert %3 : (tensor<3x3x4x4xi8>) -> tensor<3x3x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. docs/site-replication/run-sse-kms-object-replication.sh

    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	pkill -9 kes || sudo pkill -9 kes
    	rm -rf ${PWD}/keys
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	result, err := store.getAllEventsSince(9, storage.ListOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if len(result) != 0 {
    		t.Errorf("unexpected result: %#v, expected no events", result)
    	}
    
    	pod := makeTestPod("pods", 12)
    	store.Add(pod)
    	// Getting events from 8 should still work and return one event.
    	result, err = store.getAllEventsSince(9, storage.ListOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/templates/productpage.html

            {% if user: %}
            <a href="#" class="group block flex-shrink-0">
              <div class="flex items-center">
                <div>
                  <img class="inline-block h-9 w-9 rounded-full bg-blue-50" src="/static/img/izzy.png" alt="">
                </div>
                <div class="ml-4">
                  <p class="text-base font-medium text-gray-50">{{ user }}</p>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe.go

    	t.Square(&t)             // 8
    	z9.Multiply(&t, z)       // 9
    	z11.Multiply(&z9, &z2)   // 11
    	t.Square(&z11)           // 22
    	z2_5_0.Multiply(&t, &z9) // 31 = 2^5 - 2^0
    
    	t.Square(&z2_5_0) // 2^6 - 2^1
    	for i := 0; i < 4; i++ {
    		t.Square(&t) // 2^10 - 2^5
    	}
    	z2_10_0.Multiply(&t, &z2_5_0) // 2^10 - 2^0
    
    	t.Square(&z2_10_0) // 2^11 - 2^1
    	for i := 0; i < 9; i++ {
    		t.Square(&t) // 2^20 - 2^10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000040  00 00 00 00 00 00 00 00  00 00 00 00 13 03 00 00  |................|
    00000050  2e 00 2b 00 02 03 04 00  33 00 24 00 1d 00 20 bd  |..+.....3.$... .|
    00000060  d2 3a 7e c2 30 84 4f f2  39 7e 26 11 65 49 b9 b2  |.:~.0.O.9~&.eI..|
    00000070  ac 63 c8 ef ea 5e f6 23  33 70 ec 16 86 49 03 14  |.c...^.#3p...I..|
    00000080  03 03 00 01 01 17 03 03  00 17 16 47 c1 58 83 6b  |...........G.X.k|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top