Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for playground (0.19 sec)

  1. src/cmd/link/internal/mips/obj.go

    	default:
    		ld.Exitf("unknown -H option: %v", ctxt.HeadType)
    	case objabi.Hlinux: /* mips elf */
    		ld.Elfinit(ctxt)
    		ld.HEADR = ld.ELFRESERVE
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 0x10000
    		}
    		if *ld.FlagTextAddr == -1 {
    			*ld.FlagTextAddr = ld.Rnd(0x10000, *ld.FlagRound) + int64(ld.HEADR)
    		}
    	}
    }
    
    func adddynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym, r loader.Reloc, rIdx int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/s390x/obj.go

    	default:
    		ld.Exitf("unknown -H option: %v", ctxt.HeadType)
    
    	case objabi.Hlinux: // s390x ELF
    		ld.Elfinit(ctxt)
    		ld.HEADR = ld.ELFRESERVE
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 0x10000
    		}
    		if *ld.FlagTextAddr == -1 {
    			*ld.FlagTextAddr = ld.Rnd(0x10000, *ld.FlagRound) + int64(ld.HEADR)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dataflowActions/playSound/groovy/settings.gradle

    pluginManagement {
        includeBuild("plugin")
    }
    
    plugins {
        id("org.gradle.sample.sound-feedback-plugin")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    	}
    
    	isPowerOfTwo := func(n int64) bool {
    		return n > 0 && n&(n-1) == 0
    	}
    	if *FlagRound != -1 && (*FlagRound < 4096 || !isPowerOfTwo(*FlagRound)) {
    		Exitf("invalid -R value 0x%x", *FlagRound)
    	}
    
    	checkStrictDups = *FlagStrictDups
    
    	switch flagW {
    	case ternaryFlagFalse:
    		*FlagW = false
    	case ternaryFlagTrue:
    		*FlagW = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    Here is an example of a dataflow action that takes a shared build service and a file path as parameters:
    
    ====
    [source.multi-language-sample,java]
    .SoundPlay.java
    ----
    include::{snippetsPath}/dataflowActions/playSound/groovy/plugin/src/main/java/org/gradle/sample/sound/SoundPlay.java[]
    ----
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    		s6b.Grow(s6b.Size() + n)
    		s6b.SetSize(s6b.Size() + n)
    		size += n
    	}
    
    	if size > 0 {
    		linkoff = Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound) + Rnd(int64(Segrelrodata.Filelen), *FlagRound) + Rnd(int64(Segdata.Filelen), *FlagRound) + Rnd(int64(Segdwarf.Filelen), *FlagRound)
    		ctxt.Out.SeekSet(linkoff)
    
    		ctxt.Out.Write(ldr.Data(s1))
    		ctxt.Out.Write(ldr.Data(s2))
    		ctxt.Out.Write(ldr.Data(s3))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// Kernel requires all loaded segments to be page-aligned in the file,
    	// even though we mark this one as being 0 bytes of virtual address space.
    	dwarfstart := Rnd(int64(linkseg.Offset), *FlagRound)
    	if _, err := outf.Seek(dwarfstart, 0); err != nil {
    		return err
    	}
    
    	if _, err := dwarff.Seek(int64(realdwarf.Offset), 0); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		unlock(&sched.lock) // unlock so that GODEBUG=scheddetail=1 doesn't hang
    		fatal("no goroutines (main called runtime.Goexit) - deadlock!")
    	}
    
    	// Maybe jump time forward for playground.
    	if faketime != 0 {
    		if when := timeSleepUntil(); when < maxWhen {
    			faketime = when
    
    			// Start an M to steal the timer.
    			pp, _ := pidleget(faketime)
    			if pp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    				// should ensure that this segment's
    				// VA ≡ Fileoff mod FlagRound.
    				seg.Fileoff = uint64(Rnd(int64(prev.Fileoff+prev.Filelen), *FlagRound))
    				if seg.Vaddr%uint64(*FlagRound) != seg.Fileoff%uint64(*FlagRound) {
    					Exitf("bad segment rounding (Vaddr=%#x Fileoff=%#x FlagRound=%#x)", seg.Vaddr, seg.Fileoff, *FlagRound)
    				}
    			case objabi.Hwindows:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  10. src/cmd/link/internal/ld/xcoff.go

    	xfile.dynLibraries = make(map[string]int)
    
    	HEADR = int32(Rnd(XCOFFHDRRESERVE, XCOFFSECTALIGN))
    	if *FlagRound != -1 {
    		Errorf(nil, "-R not available on AIX")
    	}
    	*FlagRound = XCOFFSECTALIGN
    	if *FlagTextAddr != -1 {
    		Errorf(nil, "-T not available on AIX")
    	}
    	*FlagTextAddr = Rnd(XCOFFTEXTBASE, *FlagRound) + int64(HEADR)
    }
    
    // SYMBOL TABLE
    
    // type records C_FILE information needed for genasmsym in XCOFF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top