Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for 9$ (0.02 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            jvm.embeddedJre == software.file("jdk/jre")
            jvm.standaloneJre == null
            jvm.jre == jvm.embeddedJre
        }
    
        def "locates JDK install for a typical Java 9 JDK installation"() {
            given:
            def java9ImplementationVersion = "9.0.3"
            def software = tmpDir.createDir('software')
            software.create {
                jdk {
                    lib {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

          %1 = stablehlo.constant dense<[[-0.630731344, 0.54962182], [0.180364341, -0.764542698]]> : tensor<2x2xf32>
          %2 = "tf.XlaCallModule"(%arg0, %1, %0) <{Sout = [#tf_type.shape<?x2>], module = "", version = 9 : i64}> {_entry_function = @composite_fn_1, _original_entry_function = "composite_fn_1", _tfl_quant_trait = "fully_quantizable"} : (tensor<?x2xf32>, tensor<2x2xf32>, tensor<2xf32>) -> tensor<?x2xf32>
          return %2 : tensor<?x2xf32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

      /**
       * These tests fail in JDK 9 and JDK 10 for an unknown reason. It might be the test; it might be
       * the underlying functionality. Fixing this is not a high priority; if you need it to be fixed,
       * please comment on <a href="https://github.com/google/guava/issues/3086">issue 3086</a>.
       */
      private static boolean isJdk9OrHigher() {
        return JAVA_SPECIFICATION_VERSION.value().startsWith("9")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/runtime/os_plan9.go

    	var buf [2048]byte
    	var pos int
    	fd := open(&devswap[0], _OREAD, 0)
    	if fd < 0 {
    		// There's not much we can do if /dev/swap doesn't
    		// exist. However, nothing in the memory manager uses
    		// this on Plan 9, so it also doesn't really matter.
    		return minPhysPageSize
    	}
    	for pos < len(buf) {
    		n := read(fd, unsafe.Pointer(&buf[pos]), int32(len(buf)-pos))
    		if n <= 0 {
    			break
    		}
    		pos += int(n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    000002d0  4c 5a ec e0 14 bc 11 ef  db db 71 6f 8e a9 6d 17  |LZ........qo..m.|
    000002e0  cf 9b ae c3 e0 2f d4 80  f8 be 4f 9d 87 53 fd 53  |...../....O..S.S|
    000002f0  b6 a2 cf b9 8e 56 85 39  16 03 03 00 bc 63 23 39  |.....V.9.....c#9|
    00000300  de e9 93 fb f0 9b 64 b6  5e 7c a0 47 f6 b3 99 16  |......d.^|.G....|
    00000310  1c 68 f3 f6 3f bd a0 fc  80 09 6d 95 9a 17 65 e0  |.h..?.....m...e.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/security.go

    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mthreads`),
    	re(`-mwindows`),
    	re(`-(pic|PIC|pie|PIE)`),
    	re(`-pthread`),
    	re(`-rdynamic`),
    	re(`-shared`),
    	re(`-?-static([-a-z0-9+]*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`-v`),
    
    	// Note that any wildcards in -Wl need to exclude comma,
    	// since -Wl splits its argument at commas and passes
    	// them all to the linker uninterpreted. Allowing comma
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    	// ppc64x:"ADD\t[$]-32768,", ^"ADDIS\t"
    	out[8] = a - 32768
    	// ppc64x/power10:"ADD\t[$]-32769,"
    	// ppc64x/power9:"ADDIS\t[$]-1,", "ADD\t[$]32767,"
    	// ppc64x/power8:"ADDIS\t[$]-1,", "ADD\t[$]32767,"
    	out[9] = a - 32769
    }
    
    // ----------------- //
    //    Subtraction    //
    // ----------------- //
    
    var ef int
    
    func SubMem(arr []int, b, c, d int) int {
    	// 386:`SUBL\s[A-Z]+,\s8\([A-Z]+\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    	//     zero octets. The length of PS may be 0.
    	//
    	// 8.  Let DB = PS || 0x01 || salt; DB is an octet string of length
    	//     emLen - hLen - 1.
    
    	db[psLen] = 0x01
    	copy(db[psLen+1:], salt)
    
    	// 9.  Let dbMask = MGF(H, emLen - hLen - 1).
    	//
    	// 10. Let maskedDB = DB \xor dbMask.
    
    	mgf1XOR(db, hash, h)
    
    	// 11. Set the leftmost 8 * emLen - emBits bits of the leftmost octet in
    	//     maskedDB to zero.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. docs/site-replication/run-multi-site-ldap.sh

    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-ldap-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (2)
  10. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      %d = "tf_mlrt.tf_await"(%future_d) : (!mlrt.future) ->tensor<i32>
    
      // CHECK: [[result:%.*]] = tf_mlrt.executeop([[b]], [[d]], [[f]])
      // CHECK-SAME: AddN
      %result = "tf.AddN"(%b, %d, %f) {__op_key = 9: i32}: (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<i32>
    
      // CHECK: mlrt.await_handle [[handle_0]]
      // CHECK: mlrt.await_handle [[handle_1]]
      mlrt.await_handle %handle_0
      mlrt.await_handle %handle_1
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top