Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 260 for toint (0.04 sec)

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

    func (f *Func) NameABI() string {
    	return FuncNameABI(f.Name, f.ABISelf.Which())
    }
    
    // FuncNameABI returns n followed by a comma and the value of a.
    // This is a separate function to allow a single point encoding
    // of the format, which is used in places where there's not a Func yet.
    func FuncNameABI(n string, a obj.ABI) string {
    	return fmt.Sprintf("%s,%d", n, a)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    // state monotonically progresses, any data available at state M may be
    // accessed without acquiring the mutex at state N, provided N >= M.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. subprojects/core/build.gradle.kts

        optionalProjects.add("gradle-runtime-api-info")
    }
    
    // Instrumentation interceptors for tests
    // Separated from the test source set since we don't support incremental annotation processor with Java/Groovy joint compilation
    sourceSets {
        val testInterceptors = create("testInterceptors") {
            compileClasspath += sourceSets.main.get().output
            runtimeClasspath += sourceSets.main.get().output
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FSQRT", argLength: 1, reg: fp11, asm: "FSQRT"},                                          // sqrt(arg0) (floating point)
    		{name: "FSQRTS", argLength: 1, reg: fp11, asm: "FSQRTS"},                                        // sqrt(arg0) (floating point, single precision)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	BEQ	nocgo
    
    #ifdef GO_PPC64X_HAS_FUNCDESC
    	// Load the real entry address from the first slot of the function descriptor.
    	MOVD	8(R12), R2
    	MOVD	(R12), R12
    #endif
    	MOVD	R12, CTR		// r12 = "global function entry point"
    	MOVD	R13, R5			// arg 2: TLS base pointer
    	MOVD	$setg_gcc<>(SB), R4 	// arg 1: setg
    	MOVD	g, R3			// arg 0: G
    	// C functions expect 32 (48 for AIX) bytes of space on caller
    	// stack frame and a 16-byte aligned R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    		case 2:
    			// only y is untyped => convert to type of x
    			check.convertUntyped(y, x.typ)
    		case 3:
    			// x and y are untyped =>
    			// 1) if both are constants, convert them to untyped
    			//    floating-point numbers if possible,
    			// 2) if one of them is not constant (possible because
    			//    it contains a shift that is yet untyped), convert
    			//    both of them to float64 since they must have the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    func panicoverflow() {
    	panicCheck2("integer overflow")
    	panic(overflowError)
    }
    
    var floatError = error(errorString("floating point error"))
    
    func panicfloat() {
    	panicCheck2("floating point error")
    	panic(floatError)
    }
    
    var memoryError = error(errorString("invalid memory address or nil pointer dereference"))
    
    func panicmem() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/go/types/named.go

    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    // state monotonically progresses, any data available at state M may be
    // accessed without acquiring the mutex at state N, provided N >= M.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

            int start = clampLocation(diagnostic.getStartPosition());
            int end = clampLocation(diagnostic.getEndPosition());
    
            // We only set the location if we have a resource to point to
            if (resourceName != null) {
                spec.fileLocation(resourceName);
                // If we know the line ...
                if (0 < line) {
                    // ... and the column ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/volume/downwardapi/downwardapi.go

    	"k8s.io/kubernetes/pkg/fieldpath"
    	"k8s.io/kubernetes/pkg/volume"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    	utilstrings "k8s.io/utils/strings"
    )
    
    // ProbeVolumePlugins is the entry point for plugin detection in a package.
    func ProbeVolumePlugins() []volume.VolumePlugin {
    	return []volume.VolumePlugin{&downwardAPIPlugin{}}
    }
    
    const (
    	downwardAPIPluginName = "kubernetes.io/downward-api"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top