Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for 1809 (0.05 sec)

  1. pkg/controller/ttl/ttl_controller_test.go

    			expectedTTL:  15,
    		},
    		{
    			deleteNode:   true,
    			nodeCount:    90,
    			desiredTTL:   15,
    			boundaryStep: 1,
    			expectedTTL:  0,
    		},
    		{
    			deleteNode:   true,
    			nodeCount:    1800,
    			desiredTTL:   300,
    			boundaryStep: 4,
    			expectedTTL:  60,
    		},
    		{
    			deleteNode:   true,
    			nodeCount:    10000,
    			desiredTTL:   300,
    			boundaryStep: 4,
    			expectedTTL:  300,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv11-RSA-RC4

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 02 00 55 02 00 00  51 03 02 42 bb c8 01 43  |....U...Q..B...C|
    00000010  e4 f7 10 09 bf 35 a3 c2  d7 ca 60 a9 60 be 1d 00  |.....5....`.`...|
    00000020  92 33 b6 3e 56 2b c2 f7  29 e3 f9 20 8c d7 b6 90  |.3.>V+..).. ....|
    00000030  03 f5 8b 55 e9 81 47 5b  84 ec 19 bc 32 58 c6 30  |...U..G[....2X.0|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/sort/search_test.go

    	{"data -5", len(data), f(data, -5), 1},
    	{"data 3", len(data), f(data, 3), 5},
    	{"data 11", len(data), f(data, 11), 8},
    	{"data 99", len(data), f(data, 99), 9},
    	{"data 100", len(data), f(data, 100), 9},
    	{"data 101", len(data), f(data, 101), 12},
    	{"data 10000", len(data), f(data, 10000), 13},
    	{"data 10001", len(data), f(data, 10001), 14},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 14:42:13 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. src/strconv/testdata/testfp.txt

    float32 %.0e 12676506p-102 2e-24
    float32 %.1e 12676506p-103 1.2e-24
    float32 %.2e 15445013p+86 1.19e+33
    float32 %.3e 13734123p-138 3.941e-35
    float32 %.4e 12428269p-130 9.1308e-33
    float32 %.5e 15334037p-146 1.71900e-37
    float32 %.6e 11518287p-41 5.237910e-06
    float32 %.7e 12584953p-145 2.8216440e-37
    float32 %.8e 15961084p-125 3.75243281e-31
    float32 %.9e 14915817p-146 1.672120916e-37
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    	"k8s.io/klog/v2"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    	apiServerIDHash    string
    }
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_ppc64x.s

    //go:build (ppc64 || ppc64le) && !purego
    
    #include "textflag.h"
    
    // SHA512 block routine. See sha512block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 79
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/internal/notsha256/sha256block_amd64.s

    //go:build !purego
    
    #include "textflag.h"
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    
    // Wt = Mt; for 0 <= t <= 15
    // Wt = SIGMA1(Wt-2) + SIGMA0(Wt-15) + Wt-16; for 16 <= t <= 63
    //
    // a = H0
    // b = H1
    // c = H2
    // d = H3
    // e = H4
    // f = H5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/math/big/decimal.go

    func (d *decimal) at(i int) byte {
    	if 0 <= i && i < len(d.mant) {
    		return d.mant[i]
    	}
    	return '0'
    }
    
    // Maximum shift amount that can be done in one pass without overflow.
    // A Word has _W bits and (1<<maxShift - 1)*10 + 9 must fit into Word.
    const maxShift = _W - 4
    
    // TODO(gri) Since we know the desired decimal precision when converting
    // a floating-point number, we may be able to limit the number of decimal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ALPN

    000000f0  d8 c1 07 ae de 6a 1e 78  eb 9d 8c a1 2a 57 9c 56  |.....j.x....*W.V|
    00000100  1f 6c 6e bb 2d 70 6d 55  92 10 3f 39 7e 8a d2 30  |.ln.-pmU..?9~..0|
    00000110  e5 1c 4b df c0 96 d0 de  16 09 c6 34 23 16 54 a8  |..K........4#.T.|
    00000120  f5 0a 1a af 9a 27 60 89  19 6a 3e 69 12 de 76 4c  |.....'`..j>i..vL|
    00000130  88 f2 ca 6c 0b 94 b8 d2  bc 09 f0 d3 86 74 3c 3f  |...l.........t<?|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top