Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for corerest (0.18 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    //
    // Allocation occurs normally until we reach (3) and we realize we have
    // a use of v and it isn't in any register. At that point, we allocate
    // a spill (a StoreReg) for v. We can't determine the correct place for
    // the spill at this point, so we allocate the spill as blockless initially.
    // The restore is then generated to load v back into a register so it can
    // be used. Subsequent uses of v will use the restored value c instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    			}
    
    			// short-circuit on help
    			help, err := cleanFlagSet.GetBool("help")
    			if err != nil {
    				return errors.New(`"help" flag is non-bool, programmer error, please correct`)
    			}
    			if help {
    				return cmd.Help()
    			}
    
    			// short-circuit on verflag
    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    			Xscnlen:  dwsize,
    			Xauxtype: _AUX_SECT,
    		}
    
    		f.addSymbol(auxd)
    	}
    
    	/* .csect */
    	// Check if extnum is in text.
    	// This is temporary and only here to check if this algorithm is correct.
    	if extnum != 1 {
    		Exitf("XCOFF symtab: A new file was detected with its first symbol not in .text")
    	}
    
    	currSymSrcFile.csectSymNb = uint64(f.symbolCount)
    
    	// No offset because no name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    				p.syncPos = p.pos
    				p.syncCnt = 0
    				return
    			}
    			// Reaching here indicates a parser bug, likely an
    			// incorrect token list in this function, but it only
    			// leads to skipping of possibly correct code if a
    			// previous error is present, and thus is preferred
    			// over a non-terminating parse.
    		}
    	}
    }
    
    var stmtStart = map[token.Token]bool{
    	token.BREAK:       true,
    	token.CONST:       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		// Verify if the dataDir is present or not when the data
    		// is not inlined to make sure we return correct errors
    		// during HeadObject().
    
    		// Healing must not come here and return error, since healing
    		// deals with dataDirs directly, let healing fix things automatically.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/sync/atomic/atomic_test.go

    	}
    }
    
    // Tests of correct behavior, with contention.
    // (Is the function atomic?)
    //
    // For each function, we write a "hammer" function that repeatedly
    // uses the atomic operation to add 1 to a value. After running
    // multiple hammers in parallel, check that we end with the correct
    // total.
    // Swap can't add 1, so it uses a different scheme.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	{"%-20.8d", -1234, "-00001234           "},
    	{"%-#20.8x", 0x1234abc, "0x01234abc          "},
    	{"%-#20.8X", 0x1234abc, "0X01234ABC          "},
    	{"%-#20.8o", 01234, "00001234            "},
    
    	// Test correct f.intbuf overflow checks.
    	{"%068d", 1, zeroFill("", 68, "1")},
    	{"%068d", -1, zeroFill("-", 67, "1")},
    	{"%#.68x", 42, zeroFill("0x", 68, "2a")},
    	{"%.68d", -42, zeroFill("-", 68, "42")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    // alternate (correct English) spelling req.Referrer() but cannot
    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    }
    
    // multipartByReader is a sentinel value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    			// the root packages and promote their containing modules to root modules
    			// dependencies. If their go.mod files are tidy (the common case) and the
    			// set of root packages does not change then we can select the correct
    			// versions of all transitive imports on the first try and complete
    			// loading in a single iteration.
    			changedBuildList := ld.preloadRootModules(ctx, rootPkgs)
    			if changedBuildList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    		ehdr.Phentsize = ELF32PHDRSIZE /* Must be ELF32PHDRSIZE */
    		ehdr.Shentsize = ELF32SHDRSIZE /* Must be ELF32SHDRSIZE */
    	}
    }
    
    // Make sure PT_LOAD is aligned properly and
    // that there is no gap,
    // correct ELF loaders will do this implicitly,
    // but buggy ELF loaders like the one in some
    // versions of QEMU and UPX won't.
    func fixElfPhdr(e *ElfPhdr) {
    	frag := int(e.Vaddr & (e.Align - 1))
    
    	e.Off -= uint64(frag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top