Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 410 for 1011 (0.05 sec)

  1. src/runtime/os_darwin.go

    	n := argc + 1
    	for argv_index(argv, n) != nil {
    		n++
    	}
    	executablePath = gostringnocopy(argv_index(argv, n+1))
    
    	// strip "executable_path=" prefix if available, it's added after OS X 10.11.
    	const prefix = "executable_path="
    	if len(executablePath) > len(prefix) && executablePath[:len(prefix)] == prefix {
    		executablePath = executablePath[len(prefix):]
    	}
    }
    
    func signalM(mp *m, sig int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

        // CHECK-SAME: (tensor<*xi32>, tensor<*xf32>, tensor<i32>)
        %1:3 = func.call @WhileOp_body(%arg0, %arg1, %cst) : (tensor<*xi32>, tensor<*xf32>, tensor<i32>) -> (tensor<*xi32>, tensor<*xf32>, tensor<i32>)
        "tfl.yield"(%1#0, %1#1) : (tensor<*xi32>, tensor<*xf32>) -> ()
      }) : (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>) loc("WhileOp")
      // CHECK: (tensor<i32>, tensor<1xf32>, tensor<i32>) ->
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/LongMath.java

        if (-2 <= b && b <= 2) {
          switch ((int) b) {
            case 0:
              return (k == 0) ? 1 : 0;
            case 1:
              return 1;
            case (-1):
              return ((k & 1) == 0) ? 1 : -1;
            case 2:
              return (k < Long.SIZE) ? 1L << k : 0;
            case (-2):
              if (k < Long.SIZE) {
                return ((k & 1) == 0) ? 1L << k : -(1L << k);
              } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // CHECK:   cf.br ^bb1([[BODYRETS]]#0, [[BODYRETS]]#1 : tensor<*xf32>, tensor<*xf32>)
    // CHECK: ^bb3([[EXITARG0:%.+]]: tensor<*xf32>, [[EXITARG1:%.+]]: tensor<*xf32>):
    
      func.return %1#0, %1#1 : tensor<*xf32>, tensor<*xf32>
    // CHECK:   return [[EXITARG0]], [[EXITARG1]] : tensor<*xf32>, tensor<*xf32>
    }
    
    
    func.func private @testWhile0Cond() -> (tensor<i1>)
    func.func private @testWhile0Body() -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        }
    
        private Map<String, Schema> loadSchemas() {
            // NOTE: it would be nice to load all schemas from the classpath, but 1.0, 1.1 and 1.2 are invalid
            def versions = ["1.3"]
            SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
    
            def result = versions.collectEntries { version ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    cmp stdout .hg-bookmarks
    
    -- .hg-tags --
    tip                               24:645b06ca536d
    v2.0.0                            23:814fce58e83a
    v2.0.6                            17:3d4b89a2d059
    v1.1.0                            11:92c7eb888b4f
    submod/v1.0.5                     10:f3f560a6065c
    v1.0.3                             9:4e58084d459a
    submod/v1.0.4                      9:4e58084d459a
    v1.0.2                             8:3ccdce3897f9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  7. src/internal/coverage/defs.go

    //
    // 01: package p
    // 02:
    // 03: var v, w, z int
    // 04:
    // 05: func small(x, y int) int {
    // 06:   v++
    // 07:   // comment
    // 08:   if y == 0 {
    // 09:     return x
    // 10:   }
    // 11:   return (x << 1) ^ (9 / y)
    // 12: }
    // 13:
    // 14: func Medium(q, r int) int {
    // 15:   s1 := small(q, r)
    // 16:   z += s1
    // 17:   s2 := small(r, q)
    // 18:   w -= s2
    // 19:   return w + z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

            // CHECK: tf_device.return %[[A]], %[[C]]
    
            // CHECK: %[[B:.*]] = "tf.B"(%[[TPU0_OUTPUT]]#0)
            // CHECK: tf_executor.yield %[[B]], %[[TPU0_OUTPUT]]#1
          }
          tf_executor.fetch %1#0, %1#1 : tensor<?xi32>, tensor<?xi32>
        }
        func.return %0#0, %0#1 : tensor<?xi32>, tensor<?xi32>
      }
    }
    
    // -----
    
    // Multiple device clusters with intertwined instructions in original block.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/cpu.go

    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    	ASFENCEVMA
    
    	//
    	// RISC-V Bit-Manipulation ISA-extensions (1.0)
    	//
    
    	// 1.1: Address Generation Instructions (Zba)
    	AADDUW
    	ASH1ADD
    	ASH1ADDUW
    	ASH2ADD
    	ASH2ADDUW
    	ASH3ADD
    	ASH3ADDUW
    	ASLLIUW
    
    	// 1.2: Basic Bit Manipulation (Zbb)
    	AANDN
    	AORN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                        capability('org.test', 'cap', '1.0')
                    }
                    variant('runtime') {
                        attribute('custom', 'c2')
                        capability('org.test', 'cap', conflict ? '1.0' : '1.1')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top