Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for italian (0.16 sec)

  1. src/go/types/mono.go

    	// parameters that it's implicitly parameterized by.
    	for scope := obj.Parent(); scope != root; scope = scope.Parent() {
    		for _, elem := range scope.elems {
    			if elem, ok := elem.(*TypeName); ok && !elem.IsAlias() && cmpPos(elem.Pos(), obj.Pos()) < 0 {
    				if tpar, ok := elem.Type().(*TypeParam); ok {
    					if idx < 0 {
    						idx = len(w.vertices)
    						w.vertices = append(w.vertices, monoVertex{obj: obj})
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/go/doc/comment/print.go

    func (p *commentPrinter) text(out *bytes.Buffer, indent string, x []Text) {
    	for _, t := range x {
    		switch t := t.(type) {
    		case Plain:
    			p.indent(out, indent, string(t))
    		case Italic:
    			p.indent(out, indent, string(t))
    		case *Link:
    			if t.Auto {
    				p.text(out, indent, t.Text)
    			} else {
    				out.WriteString("[")
    				p.text(out, indent, t.Text)
    				out.WriteString("]")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/mono.go

    	// parameters that it's implicitly parameterized by.
    	for scope := obj.Parent(); scope != root; scope = scope.Parent() {
    		for _, elem := range scope.elems {
    			if elem, ok := elem.(*TypeName); ok && !elem.IsAlias() && cmpPos(elem.Pos(), obj.Pos()) < 0 {
    				if tpar, ok := elem.Type().(*TypeParam); ok {
    					if idx < 0 {
    						idx = len(w.vertices)
    						w.vertices = append(w.vertices, monoVertex{obj: obj})
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

        }
    
        @Override
        public void descriptor(Action<? super IvyModuleDescriptorSpec> configure) {
            configure.execute(descriptor);
        }
    
        @Override
        public boolean isAlias() {
            return alias;
        }
    
        @Override
        public void setAlias(boolean alias) {
            this.alias = alias;
        }
    
        @Override
        public void from(SoftwareComponent component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  5. api/go1.9.txt

    pkg encoding/csv, type Reader struct, ReuseRecord bool
    pkg encoding/json, func Valid([]uint8) bool
    pkg go/ast, type TypeSpec struct, Assign token.Pos
    pkg go/types, func SizesFor(string, string) Sizes
    pkg go/types, method (*TypeName) IsAlias() bool
    pkg hash/fnv, func New128() hash.Hash
    pkg hash/fnv, func New128a() hash.Hash
    pkg html/template, const ErrPredefinedEscaper = 11
    pkg html/template, const ErrPredefinedEscaper ErrorCode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            moduleDescriptorGenerator = null;
        }
    
    
        @Override
        public void pom(Action<? super MavenPom> configure) {
            configure.execute(pom);
        }
    
        @Override
        public boolean isAlias() {
            return alias;
        }
    
        @Override
        public void setAlias(boolean alias) {
            this.alias = alias;
        }
    
        @Override
        public void from(SoftwareComponent component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    dead items may be reused, so not all highlights necessarily correspond
    to the clicked item.)
    </p>
    
    <p>
    Faded out values and blocks are dead code that has not been eliminated.
    </p>
    
    <p>
    Values printed in italics have a dependency cycle.
    </p>
    
    <p>
    <b>CFG</b>: Dashed edge is for unlikely branches. Blue color is for backward edges.
    Edge with a dot means that this edge follows the order in which blocks were laidout.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/go/doc/comment/text.go

    func (p *textPrinter) oneLongLine(out *strings.Builder, x []Text) {
    	for _, t := range x {
    		switch t := t.(type) {
    		case Plain:
    			out.WriteString(string(t))
    		case Italic:
    			out.WriteString(string(t))
    		case *Link:
    			p.oneLongLine(out, t.Text)
    		case *DocLink:
    			p.oneLongLine(out, t.Text)
    		}
    	}
    }
    
    // wrap wraps words into lines of at most max runes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		t := c.Type(ft, pos)
    		tgo := t.Go
    		size := t.Size
    		talign := t.Align
    		if f.BitOffset > 0 || f.BitSize > 0 {
    			// The layout of bitfields is implementation defined,
    			// so we don't know how they correspond to Go fields
    			// even if they are aligned at byte boundaries.
    			continue
    		}
    
    		if talign > 0 && f.ByteOffset%talign != 0 {
    			// Drop misaligned fields, the same way we drop integer bit fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg go/doc/comment, type DocLink struct, Text []Text #51082
    pkg go/doc/comment, type Heading struct #51082
    pkg go/doc/comment, type Heading struct, Text []Text #51082
    pkg go/doc/comment, type Italic string #51082
    pkg go/doc/comment, type Link struct #51082
    pkg go/doc/comment, type Link struct, Auto bool #51082
    pkg go/doc/comment, type Link struct, Text []Text #51082
    pkg go/doc/comment, type Link struct, URL string #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
Back to top