Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for Shift3 (0.24 sec)

  1. src/make.rc

    rm -f ./runtime/runtime_defs.go
    
    # Determine the host compiler toolchain.
    eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
    
    vflag=()
    if(~ $1 -v) {
    	vflag=(-v)
    	shift
    }
    
    fn bootstrapenv {
    	GOROOT=$GOROOT_BOOTSTRAP GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $*
    }
    
    bootgo = 1.20.6
    GOROOT = `{cd .. && pwd}
    goroot_bootstrap_set = 'true'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * All other timestamps are calculated as the wall clock time at last sync + elapsed time since.
     * <p>
     * This clock deals relatively well when the system wall clock shift is adjusted by small amounts.
     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. hack/verify-shellcheck.sh

      # dependent sourcing, so just disable enforcing it
      1091
      # this lint prefers command -v to which, they are not the same
      2230
    )
    # comma separate for passing to shellcheck
    join_by() {
      local IFS="$1";
      shift;
      echo "$*";
    }
    SHELLCHECK_DISABLED="$(join_by , "${disabled[@]}")"
    readonly SHELLCHECK_DISABLED
    
    # ensure we're linting the k8s source tree
    cd "${KUBE_ROOT}"
    
    scripts_to_check=("$@")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/analysis/passes/loopclosure
    golang.org/x/tools/go/analysis/passes/lostcancel
    golang.org/x/tools/go/analysis/passes/nilfunc
    golang.org/x/tools/go/analysis/passes/printf
    golang.org/x/tools/go/analysis/passes/shift
    golang.org/x/tools/go/analysis/passes/sigchanyzer
    golang.org/x/tools/go/analysis/passes/slog
    golang.org/x/tools/go/analysis/passes/stdmethods
    golang.org/x/tools/go/analysis/passes/stdversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. hack/apidiff.sh

                    echo "ERROR: -${o} needs a non-empty parameter" >&2
                    echo >&2
                    usage
                fi
                ;;
            *)
                usage
                ;;
        esac
    done
    shift $((OPTIND - 1))
    
    # Check specific directory or everything.
    targets=("$@")
    if [ ${#targets[@]} -eq 0 ]; then
        # This lists all entries in the go.work file as absolute directory paths.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/image/jpeg/huffman.go

    		}
    
    		// Derive the look-up table.
    		clear(h.lut[:])
    		var x, code uint32
    		for i := uint32(0); i < lutSize; i++ {
    			code <<= 1
    			for j := int32(0); j < nCodes[i]; j++ {
    				// The codeLength is 1+i, so shift code by 8-(1+i) to
    				// calculate the high bits for every 8-bit sequence
    				// whose codeLength's high bits matches code.
    				// The high 8 bits of lutValue are the encoded value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/runtime/mcentral.go

    	size := uintptr(class_to_size[c.spanclass.sizeclass()])
    
    	s := mheap_.alloc(npages, c.spanclass)
    	if s == nil {
    		return nil
    	}
    
    	// Use division by multiplication and shifts to quickly compute:
    	// n := (npages << _PageShift) / size
    	n := s.divideByElemSize(npages << _PageShift)
    	s.limit = s.base() + size*n
    	s.initHeapBits(false)
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. hack/verify-golangci-lint.sh

        # error.
        base="$(git rev-parse --verify "$base")"
        golangci+=(--new --new-from-rev="$base")
    fi
    
    # Filter out arguments that start with "-" and move them to the run flags.
    shift $((OPTIND-1))
    targets=()
    for arg; do
      if [[ "${arg}" == -* ]]; then
        golangci+=("${arg}")
      else
        targets+=("${arg}")
      fi
    done
    
    # Install golangci-lint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. gradlew

            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    
    
    # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/runtime/rand.go

    		mp.cheaprand += 0xa0761d6478bd642f
    		hi, lo := math.Mul64(mp.cheaprand, mp.cheaprand^0xe7037ed1a0b428db)
    		return uint32(hi ^ lo)
    	}
    
    	// Implement xorshift64+: 2 32-bit xorshift sequences added together.
    	// Shift triplet [17,7,16] was calculated as indicated in Marsaglia's
    	// Xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
    	// This generator passes the SmallCrush suite, part of TestU01 framework:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top