Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for logo (0.17 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	f.symbolCount++
    }
    
    // xcoffAlign returns the log base 2 of the symbol's alignment.
    func xcoffAlign(ldr *loader.Loader, x loader.Sym, t SymbolType) uint8 {
    	align := ldr.SymAlign(x)
    	if align == 0 {
    		if t == TextSym {
    			align = int32(Funcalign)
    		} else {
    			align = symalign(ldr, x)
    		}
    	}
    	return logBase2(int(align))
    }
    
    // logBase2 returns the log in base 2 of a.
    func logBase2(a int) uint8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    tStream, java.io.OutputStream) throws java.io.IOException; } org/gradle/wrapper/Logger.class package org.gradle.wrapper; public synchronized class Logger implements Appendable { private final boolean quiet; public void Logger(boolean); public void log(String); public Appendable append(CharSequence); public Appendable append(CharSequence, int, int); public Appendable append(char); } org/gradle/wrapper/PathAssembler$LocalDistribution.class package org.gradle.wrapper; public synchronized class Path...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    		if !(oldtyp.IsData() && oldr.DataSize(oldli) == 0) {
    			log.Fatalf("duplicated definition of symbol %s, from %s and %s", name, r.unit.Lib.Pkg, oldr.unit.Lib.Pkg)
    		}
    		l.objSyms[oldi] = objSym{r.objidx, li}
    	} else {
    		// old symbol overwrites new symbol.
    		typ := sym.AbiSymKindToSymKind[objabi.SymKind(oldsym.Type())]
    		if !typ.IsData() { // only allow overwriting data symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"fmt"
    	"log"
    	"sort"
    )
    
    // ctxt0 holds state while assembling a single function.
    // Each function gets a fresh ctxt0.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * sorting all elements at once.
       *
       * <p>Retrieving a single element takes approximately O(log(M)) time, where M is the number of
       * iterators. (Retrieving all elements takes approximately O(N*log(M)) time, where N is the total
       * number of elements.)
       */
      private static class MergingIterator<T extends @Nullable Object> extends UnmodifiableIterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * sorting all elements at once.
       *
       * <p>Retrieving a single element takes approximately O(log(M)) time, where M is the number of
       * iterators. (Retrieving all elements takes approximately O(N*log(M)) time, where N is the total
       * number of elements.)
       */
      private static class MergingIterator<T extends @Nullable Object> extends UnmodifiableIterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    				// messages will be easier for users to search for.
    				return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
    			}
    			return "", err
    		}
    		if _, noGo := err.(*build.NoGoError); noGo {
    			// A directory that does not contain any Go source files — even ignored
    			// ones! — is not a Go package, and we can't resolve it to a package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			log.Fatal(err)
    		}
    		stdlibImportcfgString = string(output)
    	})
    	return stdlibImportcfgString
    }
    
    var stdlibImportcfgFilenameOnce sync.Once
    var stdlibImportcfgFilename string
    
    func stdlibImportcfgFile() string {
    	stdlibImportcfgFilenameOnce.Do(func() {
    		tmpdir, err := os.MkdirTemp("", "importcfg")
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		// order to detect inconsistencies that wouldn't be feasible to spot-check),
    		// so it wouldn't be useful to log when that occurs (because it happens in
    		// normal operation all the time).
    		readModGraphDebugOnce.Do(func() {
    			for _, f := range strings.Split(os.Getenv("GODEBUG"), ",") {
    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_SILENT_INSTALL        = 0x20000000        // Silent install
    	DN_NO_SHOW_IN_DM         = 0x40000000        // No show in device manager
    	DN_BOOT_LOG_PROB         = 0x80000000        // Had a problem during preassignment of boot log conf
    	DN_NEED_RESTART          = DN_LIAR           // System needs to be restarted for this Devnode to work properly
    	DN_DRIVER_BLOCKED        = DN_NOT_FIRST_TIME // One or more drivers are blocked from loading for this Devnode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top