Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 346 for 99$ (0.07 sec)

  1. internal/bucket/lifecycle/filter_test.go

    	tests := []struct {
    		filter  Filter
    		objSize int64
    		want    bool
    	}{
    		{
    			filter:  fiLt,
    			objSize: 101 * humanize.MiByte,
    			want:    false,
    		},
    		{
    			filter:  fiLt,
    			objSize: 99 * humanize.MiByte,
    			want:    true,
    		},
    		{
    			filter:  fiGt,
    			objSize: 1*humanize.MiByte - 1,
    			want:    false,
    		},
    		{
    			filter:  fiGt,
    			objSize: 1*humanize.MiByte + 1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. test/codegen/README

    This means, for example, that the "MULQ" regexp is equivalent to
    "^MULQ" (^ representing the start of the line), and it will NOT match
    the following assembly line:
    
      IMULQ	$99, AX
    
    To force a match at any point of the line, ".*MULQ" should be used.
    
    For the same reason, a negative regexp like -"memmove" is not enough
    to make sure that no memmove call is included in the assembly. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    000000d0  fe 0c 7f 63 ef 1b 87 d8  43 42 d0 f4 2d 6d 0f cc  |...c....CB..-m..|
    000000e0  ef 77 79 17 1e 39 1e 75  17 03 03 02 22 9c 82 27  |.wy..9.u...."..'|
    000000f0  99 e0 4b 44 a7 a7 bb a9  25 a2 58 7f 70 3f 82 1a  |..KD....%.X.p?..|
    00000100  4b bc e1 35 3e 66 fa 4f  ac 7f 7e da 73 13 06 0f  |K..5>f.O..~.s...|
    00000110  fe 97 ef 82 53 2e d0 e2  11 c6 ee 8d 25 d2 f0 5c  |....S.......%..\|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileJavaToolchainIntegrationTest.groovy

            where:
            source | target | sourceOut | targetOut
            '9'    | '10'   | '9'       | '10'
            '9'    | 'none' | '9'       | '9'
            'none' | 'none' | '11'      | '11'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:32:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

            where:
            source | target | sourceOut | targetOut
            '9'    | '10'   | '9'       | '10'
            '9'    | 'none' | '9'       | '9'
            'none' | 'none' | '11'      | '11'
        }
    
        def "can compile source and run tests using Java #javaVersion for Groovy "() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

                      .min_percentile(),
                  Eq(0.001f));
      EXPECT_THAT(new_config.calibration_options()
                      .calibration_parameters()
                      .max_percentile(),
                  Eq(99.999f));
    }
    
    TEST(PopulateDefaultsTest,
         DefaultNumbersPopulatedForCalibrationOptionsOfHistogramMseBruteforce) {
      QuantizationConfig config{};
      CalibrationOptions& calibration_options =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/builtin.go

    	{"mapdelete_fast64", funcTag, 93},
    	{"mapdelete_faststr", funcTag, 94},
    	{"mapiternext", funcTag, 95},
    	{"mapclear", funcTag, 96},
    	{"makechan64", funcTag, 98},
    	{"makechan", funcTag, 99},
    	{"chanrecv1", funcTag, 101},
    	{"chanrecv2", funcTag, 102},
    	{"chansend1", funcTag, 104},
    	{"closechan", funcTag, 105},
    	{"chanlen", funcTag, 106},
    	{"chancap", funcTag, 106},
    	{"writeBarrier", varTag, 108},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_FCHMOD                  = 94
    	SYS_FCHOWN                  = 95
    	SYS_GETPRIORITY             = 96
    	SYS_SETPRIORITY             = 97
    	SYS_PROFIL                  = 98
    	SYS_STATFS                  = 99
    	SYS_FSTATFS                 = 100
    	SYS_IOPERM                  = 101
    	SYS_SOCKETCALL              = 102
    	SYS_SYSLOG                  = 103
    	SYS_SETITIMER               = 104
    	SYS_GETITIMER               = 105
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv12-X25519

    >>> Flow 1 (client to server)
    00000000  16 03 01 00 7d 01 00 00  79 03 03 dc 04 e9 5b d1  |....}...y.....[.|
    00000010  6b d9 b9 5e f7 4c 01 7e  58 4a 99 d9 90 c8 a2 7b  |k..^.L.~XJ.....{|
    00000020  f4 55 08 68 9b 42 34 6a  14 6c 01 00 00 04 cc a8  |.U.h.B4j.l......|
    00000030  00 ff 01 00 00 4c 00 0b  00 04 03 00 01 02 00 0a  |.....L..........|
    00000040  00 04 00 02 00 1d 00 16  00 00 00 17 00 00 00 0d  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/ja/mapping.txt

    2 => 2
    3 => 3
    4 => 4
    5 => 5
    6 => 6
    7 => 7
    8 => 8
    9 => 9
    
    ① => 1\u0020
    ② => 2\u0020
    ③ => 3\u0020
    ④ => 4\u0020
    ⑤ => 5\u0020
    ⑥ => 6\u0020
    ⑦ => 7\u0020
    ⑧ => 8\u0020
    ⑨ => 9\u0020
    
    ! => !
    ? => ?
    # => #
    % => %
    & => &
    @ => @
    + => +
    - => -
    * => *
    / => /
    = => =
    $ => $
    ^ => ^
    : => :
    ; => ;
    ’ => '
    ‘ => '
    , => ,
    . => .
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top