Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,328 for runes (0.05 sec)

  1. src/cmd/compile/internal/ssa/_gen/dec64.rules

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains rules to decompose [u]int64 types on 32-bit
    // architectures. These rules work together with the decomposeBuiltIn
    // pass which handles phis of these typ.
    
    (Int64Hi (Int64Make hi _)) => hi
    (Int64Lo (Int64Make _ lo)) => lo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (I64ShrU (I64Const [x]) (I64Const [y])) => (I64Const [int64(uint64(x) >> uint64(y))])
    (I64ShrS (I64Const [x]) (I64Const [y])) => (I64Const [x >> uint64(y)])
    
    // TODO: declare these operations as commutative and get rid of these rules?
    (I64Add (I64Const [x]) y) && y.Op != OpWasmI64Const => (I64Add y (I64Const [x]))
    (I64Mul (I64Const [x]) y) && y.Op != OpWasmI64Const => (I64Mul y (I64Const [x]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    Joel Sing <******@****.***> 1707360850 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    Guoqi Chen <******@****.***> 1692152533 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    Junxian Zhu <******@****.***> 1683865731 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    Junxian Zhu <******@****.***> 1685079225 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/core.go

    // corresponding to the preprocessed text input. The types correspond to the
    // Unicode BiDi classes for each rune. pairTypes indicates the bracket type for
    // each rune. pairValues provides a unique bracket class identifier for each
    // rune (suggested is the rune of the open bracket for opening and matching
    // close brackets, after normalization). The embedding levels are optional, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  8. .github/workflows/build.yml

            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
              sudo udevadm trigger --name-match=kvm
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Gradle cache
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. build/root/Makefile

    cross:
    	hack/make-rules/cross.sh
    cross-in-a-container: KUBE_OUTPUT_SUBPATH = $(OUT_DIR)/dockerized
    cross-in-a-container:
    ifeq (,$(wildcard /.dockerenv))
    	echo -e "\nThe 'cross-in-a-container' target can only be used from within a docker container.\n"
    else
    	hack/make-rules/cross.sh
    endif
    endif
    
    define CMD_HELP_INFO
    # Add rules for all directories in cmd/
    #
    # Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cni/README.md

    - and the other end is in ztunnel's pod
    
    and setting up iptables rules to funnel traffic thru that socket "tube" to ztunnel and back.
    
    This effectively behaves like ztunnel is an in-pod sidecar, without actually requiring the injection of ztunnel as a sidecar into the pod manifest, or mutatating the application pod in any way.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top