Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for mod$ (0.05 sec)

  1. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+208(SB)/8,$0x00000001b5334592
    DATA ·IEEEConst+216(SB)/8,$0x00000001f8cc6582
    
    	/* x^246848 mod p(x), x^246784 mod p(x) */
    DATA ·IEEEConst+224(SB)/8,$0x000000011f8ee1b4
    DATA ·IEEEConst+232(SB)/8,$0x000000008631ddf0
    
    	/* x^245824 mod p(x), x^245760 mod p(x) */
    DATA ·IEEEConst+240(SB)/8,$0x000000006252e632
    DATA ·IEEEConst+248(SB)/8,$0x000000007e5a76d0
    
    	/* x^244800 mod p(x), x^244736 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. go.sum

    github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
    github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // To create a new go.mod file, use 'go mod init'. For details see
    // 'go help mod init' or https://golang.org/ref/mod#go-mod-init.
    //
    // To add missing module requirements or remove unneeded requirements,
    // use 'go mod tidy'. For details, see 'go help mod tidy' or
    // https://golang.org/ref/mod#go-mod-tidy.
    //
    // To add, upgrade, downgrade, or remove a specific module requirement, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		}
    		q = append(q, p1.Internal.Imports...)
    	}
    	sortedMods := make([]module.Version, 0, len(mdeps))
    	for mod := range mdeps {
    		sortedMods = append(sortedMods, mod)
    	}
    	gover.ModSort(sortedMods)
    	deps := make([]*debug.Module, len(sortedMods))
    	for i, mod := range sortedMods {
    		deps[i] = mdeps[mod]
    	}
    
    	pkgPath := p.ImportPath
    	if p.Internal.CmdlineFiles {
    		pkgPath = "command-line-arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 ip daddr 172.30.0.41 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 }
    
    		add chain ip kube-proxy endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Div64u ...) => (UDIV  ...)
    (Div32u ...) => (UDIVW ...)
    (Div32F ...) => (FDIVS ...)
    (Div64F ...) => (FDIVD ...)
    
    (Mod64 x y) => (MOD x y)
    (Mod32 x y) => (MODW x y)
    (Mod64u ...) => (UMOD ...)
    (Mod32u ...) => (UMODW ...)
    (Mod(16|8)  x y) => (MODW  (SignExt(16|8)to32 x) (SignExt(16|8)to32 y))
    (Mod(16|8)u x y) => (UMODW (ZeroExt(16|8)to32 x) (ZeroExt(16|8)to32 y))
    
    // (x + y) / 2 with x>=y    =>    (x - y) / 2 + y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Mod64 <t> n (Const64 [c])) && isNonNegative(n) && isPowerOfTwo64(c) => (And64 n (Const64 <t> [c-1]))
    (Mod64 n (Const64 [-1<<63])) && isNonNegative(n)                   => n
    
    // Signed mod by negative constant.
    (Mod8  <t> n (Const8  [c])) && c < 0 && c != -1<<7  => (Mod8  <t> n (Const8  <t> [-c]))
    (Mod16 <t> n (Const16 [c])) && c < 0 && c != -1<<15 => (Mod16 <t> n (Const16 <t> [-c]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    			break
    		}
    		mode := 64
    		v := uint64(p.From.Offset)
    		switch p.As {
    		case AANDW, AORRW, AEORW, AANDSW, ATSTW:
    			mode = 32
    		case ABIC, AORN, AEON, ABICS:
    			v = ^v
    		case ABICW, AORNW, AEONW, ABICSW:
    			v = ^v
    			mode = 32
    		}
    		o1 = c.opirr(p, a)
    		o1 |= bitconEncode(v, mode) | uint32(r&31)<<5 | uint32(rt&31)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	 * Not all systems support a separate read-only non-executable data section.
    	 * ELF and Windows PE systems do.
    	 * OS X and Plan 9 do not.
    	 * And if we're using external linking mode, the point is moot,
    	 * since it's not our decision; that code expects the sections in
    	 * segtext.
    	 */
    	var segro *sym.Segment
    	if ctxt.IsELF && ctxt.LinkMode == LinkInternal {
    		segro = &Segrodata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top