Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 199 for 9$ (0.03 sec)

  1. src/os/signal/doc.go

    CTRL_LOGOFF_EVENT or CTRL_SHUTDOWN_EVENT is received - the process will
    still get terminated unless it exits. But receiving syscall.SIGTERM will
    give the process an opportunity to clean up before termination.
    
    # Plan 9
    
    On Plan 9, signals have type syscall.Note, which is a string. Calling
    Notify with a syscall.Note will cause that value to be sent on the
    channel when that string is posted as a note.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. docs/site-replication/run-ssec-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 minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %6 = mhlo.add %5, %4 : tensor<64xf32>
      %7 = mhlo.multiply %6, %3 : tensor<64xf32>
      %8 = mhlo.divide %7, %2 : tensor<64xf32>
      %9 = mhlo.floor %8 : tensor<64xf32>
      %10 = mhlo.convert %9 : (tensor<64xf32>) -> tensor<64xi32>
      %11 = mhlo.compare  LT, %10, %1,  SIGNED : (tensor<64xi32>, tensor<64xi32>) -> tensor<64xi1>
      %12 = mhlo.add %10, %0 : tensor<64xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. test/codegen/shift.go

    	// ppc64x: -"MOVWZ"
    	y[0] = uint64((a >> 6) & 0x1c)
    	// ppc64x: -"MOVWZ"
    	y[1] = uint64(uint32(b)<<6) + 1
    	// ppc64x: -"MOVHZ", -"MOVWZ"
    	y[2] = uint64((uint16(a) >> 9) & 0x1F)
    	// ppc64x: -"MOVHZ", -"MOVWZ", -"ANDCC"
    	y[3] = uint64(((uint16(a) & 0xFF0) >> 9) & 0x1F)
    }
    
    // 128 bit shifts
    
    func check128bitShifts(x, y uint64, bits uint) (uint64, uint64) {
    	s := bits & 63
    	ŝ := (64 - bits) & 63
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            compiler.metadata >> metadata
    
            given:
            javaCompile.javaCompiler.set(compiler)
            javaCompile.options.release.set(9)
    
            when:
            def spec = javaCompile.createSpec()
    
            then:
            spec.release == 9
            spec.sourceCompatibility == null
            spec.targetCompatibility == null
            spec.compileOptions.forkOptions.javaHome == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/url/url.go

    }
    
    const upperhex = "0123456789ABCDEF"
    
    func ishex(c byte) bool {
    	switch {
    	case '0' <= c && c <= '9':
    		return true
    	case 'a' <= c && c <= 'f':
    		return true
    	case 'A' <= c && c <= 'F':
    		return true
    	}
    	return false
    }
    
    func unhex(c byte) byte {
    	switch {
    	case '0' <= c && c <= '9':
    		return c - '0'
    	case 'a' <= c && c <= 'f':
    		return c - 'a' + 10
    	case 'A' <= c && c <= 'F':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/net/lookup_plan9.go

    import (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/stringslite"
    	"io"
    	"os"
    )
    
    // cgoAvailable set to true to indicate that the cgo resolver
    // is available on Plan 9. Note that on Plan 9 the cgo resolver
    // does not actually use cgo.
    const cgoAvailable = true
    
    func query(ctx context.Context, filename, query string, bufSize int) (addrs []string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

    // CHECK-SAME: ({{%.+}}: !tfrt.chain, {{%.+}}: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
    func.func @while_cond_lt9(%arg0: tensor<i32>) -> tensor<i1> {
      %0 = "tf.Const"() {device = "/device:CPU:0", value = dense<9> : tensor<i32>} : () -> tensor<i32>
      %1 = "tf.Less"(%arg0, %0) {device = "/device:CPU:0"} : (tensor<i32>, tensor<i32>) -> tensor<i1>
      func.return %1 : tensor<i1>
    }
    
    // CHECK-LABEL: func @while_body_add2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            when:
            compileJava.options.release.set(8)
            testCompileJava.options.release.set(9)
    
            then:
            compileJava.targetCompatibility == "1.8"
            compileJava.sourceCompatibility == "1.8"
            testCompileJava.targetCompatibility == "9"
            testCompileJava.sourceCompatibility == "9"
        }
    
        private void setupProjectWithToolchain(JavaVersion version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top