Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for 99$ (0.02 sec)

  1. .github/workflows/build.yml

            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
              sudo udevadm trigger --name-match=kvm
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Gradle cache
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_SELECT                  = 93
    	SYS_FSYNC                   = 95
    	SYS_SETPRIORITY             = 96
    	SYS_SOCKET                  = 97
    	SYS_CONNECT                 = 98
    	SYS_ACCEPT                  = 99
    	SYS_GETPRIORITY             = 100
    	SYS_RT_SIGRETURN            = 101
    	SYS_RT_SIGACTION            = 102
    	SYS_RT_SIGPROCMASK          = 103
    	SYS_RT_SIGPENDING           = 104
    	SYS_RT_SIGTIMEDWAIT         = 105
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    000000f0  bb 29 07 30 ff f6 84 af  c4 cf c2 ed 90 99 5f 58  |.).0.........._X|
    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 ea 8b 99 cb 5b  |....z...v......[|
    00000010  d8 fb e9 14 7f 17 20 9c  b8 41 01 dd ce 8a 90 4e  |...... ..A.....N|
    00000020  a9 f0 fb eb 71 37 24 02  d2 ee 96 20 00 00 00 00  |....q7$.... ....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_FCHMOD                       = 94
    	SYS_FCHOWN                       = 95
    	SYS_GETPRIORITY                  = 96
    	SYS_SETPRIORITY                  = 97
    	SYS_STATFS                       = 99
    	SYS_FSTATFS                      = 100
    	SYS_SYSLOG                       = 103
    	SYS_SETITIMER                    = 104
    	SYS_GETITIMER                    = 105
    	SYS_STAT                         = 106
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top