Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Winant (1.93 sec)

  1. api/go1.17.txt

    pkg math (darwin-arm64), const MinInt = -9223372036854775808
    pkg math (darwin-arm64-cgo), const MaxInt = 9223372036854775807
    pkg math (darwin-arm64-cgo), const MaxUint = 18446744073709551615
    pkg math (darwin-arm64-cgo), const MinInt = -9223372036854775808
    pkg math (freebsd-386), const MaxInt = 2147483647
    pkg math (freebsd-386), const MaxUint = 4294967295
    pkg math (freebsd-386), const MinInt = -2147483648
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    			if step > 0 {
    				if limit.isGenericIntConst() {
    					// Figure out the actual largest value.
    					v := limit.AuxInt
    					if !inclusive {
    						if v == minSignedValue(limit.Type) {
    							return false // < minint is never satisfiable.
    						}
    						v--
    					}
    					if init.isGenericIntConst() {
    						// Use stride to compute a better lower limit.
    						if init.AuxInt > v {
    							return false
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// distinction between the inlinable case and the
    			// non-inlinable case, but this is hard to do. Example:
    			//
    			//    type I interface { Tiny() int; Giant() }
    			//    type Conc struct { x int }
    			//    func (c *Conc) Tiny() int { return 42 }
    			//    func (c *Conc) Giant() { <huge amounts of code> }
    			//
    			//    func passConcToItf(c *Conc) {
    			//        makesItfMethodCall(c)
    			//    }
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        protected static final String AZUREAD_STATE_TTL = "aad.state.ttl";
    
        protected static final String AZUREAD_AUTHORITY = "aad.authority";
    
        protected static final String AZUREAD_TENANT = "aad.tenant";
    
        protected static final String AZUREAD_CLIENT_SECRET = "aad.client.secret";
    
        protected static final String AZUREAD_CLIENT_ID = "aad.client.id";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	t.Helper()
    
    	f, err := os.Open(arname)
    	if err != nil {
    		t.Errorf("archive %s does not exist: %v", arname, err)
    		return
    	}
    	defer f.Close()
    
    	// TODO(iant): put these in a shared package?  But where?
    	const (
    		magic = "!<arch>\n"
    		fmag  = "`\n"
    
    		namelen = 16
    		datelen = 12
    		uidlen  = 6
    		gidlen  = 6
    		modelen = 8
    		sizelen = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    		return
    	}
    	if len(lv.vars) > 10000 || len(lv.f.Blocks) > 10000 {
    		// Be careful to avoid doing too much work.
    		// Bail if >10000 variables or >10000 blocks.
    		// Otherwise, giant functions make this experiment generate too much code.
    		return
    	}
    	if lv.f.Name == "forkAndExecInChild" {
    		// forkAndExecInChild calls vfork on some platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		sw.add(swc)
    	}
    	if len(sw.List) > 0 { // skip if empty
    		fn.add(sw)
    	}
    	fn.add(stmtf("return false"))
    	genFile.add(fn)
    
    	// Generate a routine per op. Note that we don't make one giant routine
    	// because it is too big for some compilers.
    	for _, op := range ops {
    		rules := oprules[op]
    		_, ok := parseEllipsisRules(oprules[op], arch)
    		if ok {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top