Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for content_es (0.1 sec)

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

    		fmt.Printf("edge %s->%s\n", e.p, e.b)
    	}
    
    	// Clear state.
    	for _, vid := range e.cachedVals {
    		delete(e.cache, vid)
    	}
    	e.cachedVals = e.cachedVals[:0]
    	for k := range e.contents {
    		delete(e.contents, k)
    	}
    	e.usedRegs = 0
    	e.uniqueRegs = 0
    	e.finalRegs = 0
    	e.rematerializeableRegs = 0
    
    	// Live registers can be sources.
    	for _, x := range srcReg {
    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. src/cmd/go/internal/modload/init.go

    			rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
    
    			// We need to add a 'go' version to the go.mod file, but we must assume
    			// that its existing contents match something between Go 1.11 and 1.16.
    			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
    			// version uses a pruned module graph — so we need to convert the
    			// requirements to support pruning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    // it writes
    //
    //	_cgoIndexNN := &a
    //
    // and dereferences the uses of _cgoIndexNN. Taking the address avoids
    // making a copy of an array.
    //
    // This tells _cgoCheckPointer to check the complete contents of the
    // slice or array being indexed, but no other part of the memory allocation.
    func (p *Package) checkIndex(sb, sbCheck *bytes.Buffer, arg ast.Expr, i int) bool {
    	// Strip type conversions.
    	x := arg
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    	// profMemFutureLock is a set of locks that protect the respective elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    }
    
    // makeEvent creates an Event from the provided information.
    //
    // It's just a convenience function; it's always OK to construct
    // an Event manually if this isn't quite the right way to express
    // the contents of the event.
    func makeEvent(table *evTable, ctx schedCtx, typ event.Type, time Time, args ...uint64) Event {
    	ev := Event{
    		table: table,
    		ctx:   ctx,
    		base: baseEvent{
    			typ:  typ,
    			time: time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    	XMLName  Name    `xml:"dummy"`
    	Name     *string `xml:"name,attr"`
    	Age      *uint   `xml:"age,attr"`
    	Empty    *string `xml:"empty,attr"`
    	Contents *string `xml:",chardata"`
    }
    
    type ChardataEmptyTest struct {
    	XMLName  Name    `xml:"test"`
    	Contents *string `xml:",chardata"`
    }
    
    type PointerAnonFields struct {
    	*MyInt
    	*NamedType
    }
    
    type MyMarshalerTest struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	}
    	if excluded(okgoos, goos) || excluded(okgoarch, goarch) {
    		return false
    	}
    
    	// Omit test files.
    	if strings.Contains(name, "_test") {
    		return false
    	}
    
    	// Check file contents for //go:build lines.
    	for _, p := range strings.Split(readfile(file), "\n") {
    		p = strings.TrimSpace(p)
    		if p == "" {
    			continue
    		}
    		code := p
    		i := strings.Index(code, "//")
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    				// body refers. Instead, type-check as soon as possible,
    				// but before the enclosing scope contents changes (go.dev/issue/22992).
    				check.later(func() {
    					check.funcBody(decl, "<function literal>", sig, e.Body, iota)
    				}).describef(e, "func literal")
    			}
    			x.mode = value
    			x.typ = sig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    	for _, e := range extensions {
    		if e.Id.Equal(oid) {
    			return true
    		}
    	}
    	return false
    }
    
    // marshalSANs marshals a list of addresses into a the contents of an X.509
    // SubjectAlternativeName extension.
    func marshalSANs(dnsNames, emailAddresses []string, ipAddresses []net.IP, uris []*url.URL) (derBytes []byte, err error) {
    	var rawValues []asn1.RawValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // the hash digest instead of creating a new one for a given chunk and finalizing it.
    //
    //	// Assume hashfd and addr are already configured using the setup process.
    //	hash := os.NewFile(hashfd, "sha1")
    //	// Hash the contents of a file.
    //	f, _ := os.Open("/tmp/linux-4.10-rc7.tar.xz")
    //	b := make([]byte, 4096)
    //	for {
    //	    n, err := f.Read(b)
    //	    if err == io.EOF {
    //	        break
    //	    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top