Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 525 for mod$ (0.04 sec)

  1. src/cmd/cgo/internal/test/test.go

    #endif
    
    // alignment tests
    
    typedef unsigned char Uint8;
    typedef unsigned short Uint16;
    
    typedef enum {
     MOD1 = 0x0000,
     MODX = 0x8000
    } SDLMod;
    
    typedef enum {
     A1 = 1,
     B1 = 322,
     SDLK_LAST
    } SDLKey;
    
    typedef struct SDL_keysym {
    	Uint8 scancode;
    	SDLKey sym;
    	SDLMod mod;
    	Uint16 unicode;
    } SDL_keysym;
    
    typedef struct SDL_KeyboardEvent {
    	Uint8 typ;
    	Uint8 which;
    	Uint8 state;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    			e.AllTierStats = newAllTierStats()
    		}
    		e.AllTierStats.merge(other.AllTierStats)
    	}
    }
    
    // mod returns true if the hash mod cycles == cycle.
    // If cycles is 0 false is always returned.
    // If cycles is 1 true is always returned (as expected).
    func (h dataUsageHash) mod(cycle uint32, cycles uint32) bool {
    	if cycles <= 1 {
    		return cycles == 1
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    			// on the parent user, so we load them. This is not needed for the
    			// initial server startup, however, it is needed for the case where
    			// the STS account's policy mapping (for example in LDAP mode) may
    			// be changed and the user's policy mapping in memory is stale
    			// (because the policy change notification was missed by the current
    			// server).
    			//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/erasure-metadata_test.go

    			if ok1 != ok2 {
    				t.Errorf("Expected %s, got %s", test.expectedErr, err)
    			}
    			if test.succmodTimes != nil {
    				if !test.expectedSuccModTime.Equal(fi.SuccessorModTime) {
    					t.Errorf("Expected successor mod time to be %v but got %v", test.expectedSuccModTime, fi.SuccessorModTime)
    				}
    				if test.expectedIsLatest != fi.IsLatest {
    					t.Errorf("Expected IsLatest to be %v but got %v", test.expectedIsLatest, fi.IsLatest)
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/semver"
    )
    
    // A Version (for clients, a module.Version) is defined by a module path and version pair.
    // These are stored in their plain (unescaped) form.
    type Version struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/runtime/stack.go

    	ptr := uintptr(unsafe.Pointer(r))
    	var mod *moduledata
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.gofunc <= ptr && ptr < datap.end {
    			mod = datap
    			break
    		}
    	}
    	// If you get a panic here due to a nil mod,
    	// you may have made a copy of a stackObjectRecord.
    	// You must use the original pointer.
    	res := mod.rodata + uintptr(r.gcdataoff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    	ptr := uintptr(unsafe.Pointer(f))
    	var mod *moduledata
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if len(datap.pclntable) == 0 {
    			continue
    		}
    		base := uintptr(unsafe.Pointer(&datap.pclntable[0]))
    		if base <= ptr && ptr < base+uintptr(len(datap.pclntable)) {
    			mod = datap
    			break
    		}
    	}
    	return funcInfo{f, mod}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    }
    
    // nttElement is an NTT representation, an element of T_q, represented as an
    // array according to FIPS 203 (DRAFT), Section 2.4.
    type nttElement [n]fieldElement
    
    // gammas are the values ΞΆ^2BitRev7(i)+1 mod q for each index i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    			t.Errorf("executable failed to run (%s): %v\n%s", mode, err, out)
    		}
    		if string(out) != "hello\n" && string(out) != "hello\r\n" {
    			t.Errorf("unexpected output (%s):\n%s", mode, out)
    		}
    
    		// Test internal linking mode.
    
    		if !testenv.CanInternalLink(true) {
    			continue
    		}
    		cmd = testenv.Command(t, testenv.GoToolPath(t), "build", "-buildmode="+mode, "-ldflags=-debugtramp=2 -linkmode=internal", "-o", exe, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    	base := pathf("%s/src/bootstrap", workspace)
    	xmkdirall(base)
    
    	// Copy source code into $GOROOT/pkg/bootstrap and rewrite import paths.
    	writefile("module bootstrap\ngo 1.20\n", pathf("%s/%s", base, "go.mod"), 0)
    	for _, dir := range bootstrapDirs {
    		recurse := strings.HasSuffix(dir, "/...")
    		dir = strings.TrimSuffix(dir, "/...")
    		filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top