Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for Parsing (0.96 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser_test.go

    					// Always report skipped files since regexp
    					// typos can lead to surprising results.
    					fmt.Printf("skipping %s\n", filename)
    					return
    				}
    				if debug {
    					fmt.Printf("parsing %s\n", filename)
    				}
    				ast, err := ParseFile(filename, nil, nil, 0)
    				if err != nil {
    					t.Error(err)
    					return
    				}
    				if *verify {
    					verifyPrint(t, filename, ast)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	// symbols appear in both images. If we leave them exported in
    	// the plugin, then the dynamic linker will resolve
    	// relocations to these functions in the plugin's functab to
    	// point to the main image, causing the runtime to think the
    	// plugin's functab is corrupted. By unexporting them, these
    	// become static references, which are resolved to the
    	// plugin's text.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    		if len(orig.methods) == 0 {
    			n.setState(complete) // nothing further to do
    			n.inst.ctxt = nil
    		} else {
    			n.setState(resolved)
    		}
    		return n
    	}
    
    	// TODO(mdempsky): Since we're passing n to the loader anyway
    	// (necessary because types2 expects the receiver type for methods
    	// on defined interface types to be the Named rather than the
    	// underlying Interface), maybe it should just handle calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    			[]testInst{{`g`, []string{`int`, `string`}, `func(int, string)`}},
    		},
    		// reverse3a not possible (cannot assign to generic function outside of argument passing)
    		{`package reverse3b; func f[R any](func(int) R) {}; func g[P any](P) string { return "" }; func _() { f(g) }`,
    			[]testInst{
    				{`f`, []string{`string`}, `func(func(int) string)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    			// Pad between a pointer-containing object and a zero-sized object.
    			// This prevents a pointer to the zero-sized object from being interpreted
    			// as a pointer to the pointer-containing object (and causing it
    			// to be scanned when it shouldn't be). See issue 24993.
    			w = 1
    		}
    		s.stksize += w
    		s.stksize = types.RoundUp(s.stksize, n.Type().Alignment())
    		if n.Type().Alignment() > int64(types.RegSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    		// If the signature doesn't use its type parameters, subst
    		// will not make a copy. In that case, make a copy now (so
    		// we can set tparams to nil w/o causing side-effects).
    		if sig == orig {
    			copy := *sig
    			sig = &copy
    		}
    		// After instantiating a generic signature, it is not generic
    		// anymore; we need to set tparams to nil.
    		sig.tparams = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	data.Title = file + " " + profile
    	data.Errors = errList
    	data.Total = rpt.Total()
    	data.Legend = legend
    	return getHTMLTemplates().ExecuteTemplate(dst, tmpl, data)
    }
    
    // render responds with html generated by passing data to the named template.
    func (ui *webInterface) render(w http.ResponseWriter, req *http.Request, tmpl string,
    	rpt *report.Report, errList, legend []string, data webArgs) {
    	data.SampleTypes = sampleTypes(ui.prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/fetch.go

    // goSum.mu must be locked.
    func addModSumLocked(mod module.Version, h string) {
    	if haveModSumLocked(mod, h) {
    		return
    	}
    	if len(goSum.m[mod]) > 0 {
    		fmt.Fprintf(os.Stderr, "warning: verifying %s@%s: unknown hashes in go.sum: %v; adding %v"+hashVersionMismatch, mod.Path, mod.Version, strings.Join(goSum.m[mod], ", "), h)
    	}
    	goSum.m[mod] = append(goSum.m[mod], h)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     *
     */
    
    /*
     * ELF definitions that are independent of architecture or word size.
     */
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top