Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for NAM (0.02 sec)

  1. src/cmd/compile/internal/staticdata/data.go

    	s.WriteInt(base.Ctxt, noff+types.SliceCapOffset, types.PtrSize, lencap)
    }
    
    func InitSliceBytes(nam *ir.Name, off int64, s string) {
    	if nam.Op() != ir.ONAME {
    		base.Fatalf("InitSliceBytes %v", nam)
    	}
    	InitSlice(nam, off, slicedata(nam.Pos(), s), int64(len(s)))
    }
    
    const (
    	stringSymPrefix  = "go:string."
    	stringSymPattern = ".gostring.%d.%s"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/SourceSinkTester.java

              + "erat. Proin cursus commodo lacus eget congue. Aliquam erat volutpat. Fusce ut leo sed "
              + "risus tempor vehicula et a odio. Nam aliquet dolor viverra libero rutrum accumsan "
              + "quis in augue. Suspendisse id dui in lorem tristique placerat eget vel risus. Sed "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 27 18:57:08 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/cs/stopwords.txt

    s
    k
    o
    i
    u
    v
    z
    dnes
    cz
    tímto
    budeš
    budem
    byli
    jseš
    můj
    svým
    ta
    tomto
    tohle
    tuto
    tyto
    jej
    zda
    proč
    máte
    tato
    kam
    tohoto
    kdo
    kteří
    mi
    nám
    tom
    tomuto
    mít
    nic
    proto
    kterou
    byla
    toho
    protože
    asi
    ho
    naši
    napište
    re
    což
    tím
    takže
    svých
    její
    svými
    jste
    aj
    tu
    tedy
    teto
    bylo
    kde
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  4. src/cmd/internal/buildid/buildid.go

    		namLen, err := strconv.ParseInt(namLenStr, 10, 32)
    		if err != nil {
    			return bad()
    		}
    		if namLen == 10 {
    			var nam [10]byte
    			if _, err := io.ReadFull(f, nam[:]); err != nil {
    				return "", err
    			}
    			if string(nam[:]) == "_buildid.o" {
    				sizeStr := strings.TrimSpace(string(hdr[0:20]))
    				size, err := strconv.ParseInt(sizeStr, 10, 64)
    				if err != nil {
    					return bad()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("some Name", "some Name", "Some Name", "some name", "SOME NAME")
        }
    
        def "prefers exact match over partial match"() {
            expect:
            matches("name", "name", "nam", "n", "NAM")
        }
    
        def "prefers exact match over prefix match"() {
            expect:
            matches("someName", "someName", "someNameWithExtra")
        }
    
        def "prefers exact match over camel case match"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    	// specifically *don't* want to visit those, lest we create
    	// wrappers for wrappers.
    	for _, fn := range typecheck.Target.Funcs {
    		nam := fn.Nname
    		if ir.IsBlank(nam) {
    			continue
    		}
    		sym := nam.Sym()
    
    		symName := sym.Linkname
    		if symName == "" {
    			symName = sym.Pkg.Prefix + "." + sym.Name
    		}
    		symName = s.canonicalize(symName)
    
    		// Apply definitions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. test/chan/powser1.go

    }
    
    type dch struct {
    	req chan int
    	dat chan rat
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan rat)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    	d2[0] = mkdch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    	// It's not perfect: during the backward transition we might pick
    	// either one.)
    	for i := range l.zone {
    		zone := &l.zone[i]
    		if zone.name == name {
    			nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))
    			if nam == zone.name {
    				return offset, true
    			}
    		}
    	}
    
    	// Otherwise fall back to an ordinary name match.
    	for i := range l.zone {
    		zone := &l.zone[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. test/chan/powser2.go

    }
    
    type dch struct {
    	req chan int
    	dat chan item
    	nam int
    }
    
    type dch2 [2]*dch
    
    var chnames string
    var chnameserial int
    var seqno int
    
    func mkdch() *dch {
    	c := chnameserial % len(chnames)
    	chnameserial++
    	d := new(dch)
    	d.req = make(chan int)
    	d.dat = make(chan item)
    	d.nam = c
    	return d
    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    	d2[0] = mkdch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    	// assignments mostly necessitate dynamic execution anyway.
    	if len(lhs) > 1 {
    		return false
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	nam := lhs[0].(*ir.Name)
    	return s.StaticAssign(nam, 0, rhs, nam.Type())
    }
    
    // like staticassign but we are copying an already
    // initialized value r.
    func (s *Schedule) staticcopy(l *ir.Name, loff int64, rn *ir.Name, typ *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top