Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for Roll (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         *
         * FINISHED - All locks were acquired, release the state lock
         * FAILED - One or more locks were not acquired, roll back any locks that were acquired and release the state lock
         * RETRY - One or more locks were not acquired, roll back any locks that were acquired and block waiting for the
         * state to change, then run the transform again
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    	// 386:"IMUL3L\t[$]-1431655765","ROLL\t[$]31",-"DIVQ"
    	// arm64:"MOVD\t[$]-6148914691236517205","MOVD\t[$]3074457345618258602","MUL","ROR",-"DIV"
    	// arm:"MUL","CMP\t[$]715827882",-".*udiv"
    	// ppc64x:"MULLD","ROTL\t[$]63"
    	even := n%6 == 0
    
    	// amd64:"MOVQ\t[$]-8737931403336103397","IMULQ",-"ROLQ",-"DIVQ"
    	// 386:"IMUL3L\t[$]678152731",-"ROLL",-"DIVQ"
    	// arm64:"MOVD\t[$]-8737931403336103397","MUL",-"ROR",-"DIV"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. doc/next/9-todo.md

    CL 529816 - the 'tests' vet check was initially added to the 'go test' suite per accepted proposal https://go.dev/issue/44251, but the change was rolled back in CL 571695, with no roll forward as of 2024-05-23; nothing to document in Go 1.23 release notes for it at this time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. test/codegen/mathbits.go

    	// amd64:"ROLQ"
    	// arm64:"ROR"
    	// ppc64x:"ROTL"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]37, "
    	// wasm:"I64Rotl"
    	return bits.RotateLeft64(n, 37)
    }
    
    func RotateLeft32(n uint32) uint32 {
    	// amd64:"ROLL" 386:"ROLL"
    	// arm:`MOVW\tR[0-9]+@>23`
    	// arm64:"RORW"
    	// ppc64x:"ROTLW"
    	// s390x:"RLL"
    	// wasm:"I32Rotl"
    	return bits.RotateLeft32(n, 9)
    }
    
    func RotateLeft16(n uint16, s int) uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. gradlew

                        [ -e "$t" ] ;;                      #(
                  *)    false ;;
                esac
            then
                arg=$( cygpath --path --ignore --mixed "$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          mlir::TFL::CreatePostQuantizePass(emit_quant_adaptor_ops));
      // TODO(b/265081639): When added PrepareQuantizeVariablesPass before adding
      // PrepareQuantizePass, an error occurs in certain model. It could fix it by
      // roll-back to run PrepareQuantizeVariablesPass, QuantizePass,
      // PostQuantizePass as suggested in cl/479634700. Need to figure out the
      // fundamental reason of the error, and (if needed) fix it without this
      // rollback.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/time/sleep.go

    	// The only reason to use asynctimerchan=2 is for debugging
    	// a problem fixed by asynctimerchan=1: it enables the new
    	// GC-able timer channels (#61542) but not the sync channels (#37196).
    	//
    	// If we decide to roll back the sync channels, we will still have
    	// a fully tested async runtime implementation (asynctimerchan=2)
    	// and can make this function always return c.
    	//
    	// If we decide to keep the sync channels, we can delete all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller_test.go

    				reactor.DeleteVolumeEvent(volume)
    				err := wait.Poll(10*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    					return len(ctrl.volumes.store.ListKeys()) == 0, nil
    				})
    				if err != nil {
    					return err
    				}
    
    				// Wait for the PVC to get fully processed. This avoids races between PV controller and DeleteClaimEvent
    				// below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

                        [ -e "\$t" ] ;;                      #(
                  *)    false ;;
                esac
            then
                arg=\$( cygpath --path --ignore --mixed "\$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top