Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for allgadd (0.24 sec)

  1. src/runtime/proc.go

    	// unsafe.Pointer, not uintptr, to ensure that GC can still reach it
    	// even if it points to a stale array.
    	allglen uintptr
    	allgptr **g
    )
    
    func allgadd(gp *g) {
    	if readgstatus(gp) == _Gidle {
    		throw("allgadd: bad status Gidle")
    	}
    
    	lock(&allglock)
    	allgs = append(allgs, gp)
    	if &allgs[0] != allgptr {
    		atomicstorep(unsafe.Pointer(&allgptr), unsafe.Pointer(&allgs[0]))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. docs/debugging/s3-verify/main.go

    	tobj.Close()
    
    	if !sourceFailed && !targetFailed {
    		ssum := srcSha256.Sum(nil)
    		tsum := tgtSha256.Sum(nil)
    		allgood = bytes.Equal(ssum, tsum)
    		if !allgood {
    			fmt.Printf("sha256 sum mismatch: %s -> Expected(%x), Found(%x)\n", srcCtnt.Key, ssum, tsum)
    		}
    	}
    
    	return allgood
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    			// On NACK, do not apply resource changes
    			continue
    		}
    
    		remove, add := c.tree[parentKey].Children.Diff(ctx.sub)
    		for _, key := range add {
    			if _, f := allAdds[key.TypeURL]; !f {
    				allAdds[key.TypeURL] = set.New[string]()
    			}
    			allAdds[key.TypeURL].Insert(key.Name)
    			c.relate(parentKey, key)
    		}
    		for _, key := range remove {
    			if _, f := allRemoves[key.TypeURL]; !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/runtime/sys_solaris_amd64.s

    	MOVQ	R14, 56(SP)
    	MOVQ	R15, 64(SP)
    
    	get_tls(BX)
    	// check that g exists
    	MOVQ	g(BX), R10
    	CMPQ	R10, $0
    	JNE	allgood
    	MOVQ	SI, 72(SP)
    	MOVQ	DX, 80(SP)
    	LEAQ	72(SP), AX
    	MOVQ	DI, 0(SP)
    	MOVQ	AX, 8(SP)
    	MOVQ	$runtime·badsignal(SB), AX
    	CALL	AX
    	JMP	exit
    
    allgood:
    	// Save m->libcall and m->scratch. We need to do this because we
    	// might get interrupted by a signal in runtime·asmcgocall.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        )
      }
    
      @Test fun multipleLabels() {
        testEncodeDecode(
          unicode = "☃.net",
          punycode = "xn--n3h.net",
        )
        testEncodeDecode(
          unicode = "ålgård.no",
          punycode = "xn--lgrd-poac.no",
        )
        testEncodeDecode(
          unicode = "個人.香港",
          punycode = "xn--gmqw5a.xn--j6w193g",
        )
        testEncodeDecode(
          unicode = "упр.срб",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    gs.nt.no
    gs.of.no
    gs.ol.no
    gs.oslo.no
    gs.rl.no
    gs.sf.no
    gs.st.no
    gs.svalbard.no
    gs.tm.no
    gs.tr.no
    gs.va.no
    gs.vf.no
    // cities
    akrehamn.no
    åkrehamn.no
    algard.no
    ålgård.no
    arna.no
    brumunddal.no
    bryne.no
    bronnoysund.no
    brønnøysund.no
    drobak.no
    drøbak.no
    egersund.no
    fetsund.no
    floro.no
    florø.no
    fredrikstad.no
    hokksund.no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    akita.akita.jp akita.jp akkeshi.hokkaido.jp aknoluokta.no ako.hyogo.jp akrehamn.no aktyubinsk.su akune.kagoshima.jp al al.eu.org al.gov.br al.it al.leg.br al.no al.us alabama.museum alaheadju.no aland.fi alaska.museum alessandria.it alesund.no alfaromeo algard.no alibaba alipay allfinanz allstate ally alp1.ae.flow.ch alpha-myqnapcloud.com alpha.bounty-full.com alsace alstahaug.no alstom alt.za alta.no altervista.org alto-adige.it altoadige.it alvdal.no alwaysdata.net am am.br am.gov.br am.in am.leg.br ama.aichi.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top