Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Smits (0.1 sec)

  1. src/cmd/go/internal/modload/load.go

    			ld.requirements, err = convertPruning(ctx, ld.requirements, pruningForGoVersion(goVersion))
    			if err != nil {
    				ld.error(err)
    				ld.exitIfErrors(ctx)
    			}
    		}
    
    		// If the module's Go version omits go.sum entries for go.mod files for test
    		// dependencies of external packages, avoid loading those files in the first
    		// place.
    		ld.skipImportModFiles = ld.Tidy && gover.Compare(goVersion, gover.TidyGoModSumVersion) < 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		}
    		if e == nil {
    			break
    		}
    		switch e.Tag {
    		case dwarf.TagVariable:
    			name, _ := e.Val(dwarf.AttrName).(string)
    			// As of https://reviews.llvm.org/D123534, clang
    			// now emits DW_TAG_variable DIEs that have
    			// no name (so as to be able to describe the
    			// type and source locations of constant strings)
    			// like the second arg in the call below:
    			//
    			//     myfunction(42, "foo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	case 8:
    		return ctxt.Arch.ByteOrder.Uint64(buf)
    	default:
    		panic("unexpected pointer size")
    	}
    
    }
    
    // setupLocList creates the initial portion of a location list for a
    // user variable. It emits the encoded start/end of the range and a
    // placeholder for the size. Return value is the new list plus the
    // slot in the list holding the size (to be updated later).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				cgoTest("auto-pie", "testnocgo", "auto", "pie")
    			}
    		}
    	}
    }
    
    // runPending runs pending test commands, in parallel, emitting headers as appropriate.
    // When finished, it emits header for nextTest, which is going to run after the
    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top