Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/internal/work/exec.go

    		}
    		var err error
    		if a.Actor != nil && (!a.Failed || a.IgnoreFail) {
    			// TODO(matloob): Better action descriptions
    			desc := "Executing action (" + a.Mode
    			if a.Package != nil {
    				desc += " " + a.Package.Desc()
    			}
    			desc += ")"
    			ctx, span := trace.StartSpan(ctx, desc)
    			a.traceSpan = span
    			for _, d := range a.Deps {
    				trace.Flow(ctx, d.traceSpan, a.traceSpan)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    					have[file] = true
    				}
    			}
    			if have[file] {
    				continue
    			}
    		}
    		files = append(files, file)
    	}
    	return files
    }
    
    // Desc returns the package "description", for use in b.showOutput.
    func (p *Package) Desc() string {
    	if p.ForTest != "" {
    		return p.ImportPath + " [" + p.ForTest + ".test]"
    	}
    	if p.Internal.ForMain != "" {
    		return p.ImportPath + " [" + p.Internal.ForMain + "]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	// If any pair of the index, mask, or destination registers
    	// are the same, illegal instruction trap (#UD) is triggered.
    	index := regIndex(p.GetFrom3().Index)
    	mask := regIndex(p.From.Reg)
    	dest := regIndex(p.To.Reg)
    	if dest == mask || dest == index || mask == index {
    		ctxt.Diag("mask, index, and destination registers should be distinct: %v", p)
    		return false
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	InUnknownProtos uint32
    	OutOctets       uint32
    	OutUcastPkts    uint32
    	OutNUcastPkts   uint32
    	OutDiscards     uint32
    	OutErrors       uint32
    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	Version              uint32
    	SerialNumber         CryptIntegerBlob
    	SignatureAlgorithm   CryptAlgorithmIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    ; static String[] getStackFrames(String); static java.util.List getStackFrameList(Throwable); static void <clinit>(); } org/codehaus/plexus/util/Expand.class package org.codehaus.plexus.util; public synchronized class Expand { private java.io.File dest; private java.io.File source; private boolean overwrite; public void Expand(); public void execute() throws Exception; protected void expandFile(java.io.File, java.io.File) throws Exception; protected void extractFile(java.io.File, java.io.File, java.io.InputStream,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    (IMake _typ (ArrayMake1 val)) => (IMake _typ val)
    (ArraySelect [0] (IData x)) => (IData x)
    
    // string ops
    // Decomposing StringMake and lowering of StringPtr and StringLen
    // happens in a later pass, dec, so that these operations are available
    // to other passes for optimizations.
    (StringPtr (StringMake (Addr <t> {s} base) _)) => (Addr <t> {s} base)
    (StringLen (StringMake _ (Const64 <t> [c]))) => (Const64 <t> [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    func OPCC(o uint32, xo uint32, rc uint32) uint32 {
    	return OPVCC(o, xo, 0, rc)
    }
    
    /* Generate MD-form opcode */
    func OPMD(o, xo, rc uint32) uint32 {
    	return o<<26 | xo<<2 | rc&1
    }
    
    /* the order is dest, a/s, b/imm for both arithmetic and logical operations. */
    func AOP_RRR(op uint32, d uint32, a uint32, b uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top