Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,247 for arguments_ (0.15 sec)

  1. src/runtime/syscall_windows.go

    	index uintptr
    	// args points to the argument block.
    	//
    	// For cdecl and stdcall, all arguments are on the stack.
    	//
    	// For fastcall, the trampoline spills register arguments to
    	// the reserved spill slots below the stack arguments,
    	// resulting in a layout equivalent to stdcall.
    	//
    	// For arm, the trampoline stores the register arguments just
    	// below the stack arguments, so again we can treat it as one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/infer.go

    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        public void jvmArgs(Iterable<?> arguments) {
            addExtraJvmArgs(arguments);
            checkDebugConfiguration(extraJvmArgs);
        }
    
        public void jvmArgs(Object... arguments) {
            jvmArgs(Arrays.asList(arguments));
        }
    
        private void addExtraJvmArgs(Iterable<?> arguments) {
            for (Object argument : arguments) {
                String argStr = argument.toString();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

        }
    
        def "when --foreground argument is added, it skips adding --daemon/--no-daemon"() {
            when:
            executer.withArgument("--foreground")
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
            !allArgs.contains("--no-daemon")
        }
    
        def "when argument is added explicitly, no --daemon argument is added and requireDaemon gets overridden"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/func.go

    	typecheckargs(n)
    	args := n.Args
    	if len(args) == 0 {
    		base.Errorf("missing arguments to delete")
    		n.SetType(nil)
    		return n
    	}
    
    	if len(args) == 1 {
    		base.Errorf("missing second (key) argument to delete")
    		n.SetType(nil)
    		return n
    	}
    
    	if len(args) != 2 {
    		base.Errorf("too many arguments to delete")
    		n.SetType(nil)
    		return n
    	}
    
    	l := args[0]
    	r := args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCandidateInfo.kt

    }
    
    public typealias KtCallCandidateInfo = KaCallCandidateInfo
    
    /**
     * A candidate that is applicable for a call. A candidate is applicable if the call's arguments are complete and are assignable to the
     * candidate's parameters, AND the call's type arguments are complete and fit all the constraints of the candidate's type parameters.
     */
    public class KaApplicableCallCandidateInfo(
        candidate: KaCall,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		return false // We just can't tell; there could be many more arguments.
    	}
    	if argNum < len(call.Args) {
    		return true
    	}
    	// There are bad indexes in the format or there are fewer arguments than the format needs.
    	// This is the argument number relative to the format: Printf("%s", "hi") will give 1 for the "hi".
    	arg := argNum - state.firstArg + 1 // People think of arguments as 1-indexed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    			print("      no locals to adjust\n")
    		}
    	}
    
    	// Arguments. First fetch frame size and special-case argument maps.
    	var isReflect bool
    	args, isReflect = frame.argMapInternal()
    	if args.n > 0 && args.bytedata == nil {
    		// Non-empty argument frame, but not a special map.
    		// Fetch the argument map at pcdata.
    		stackmap := (*stackmap)(funcdata(f, abi.FUNCDATA_ArgsPointerMaps))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_cluster_signature.h

    // Describes the types, shapes and any compile-time constant arguments
    // to a kernel. Key that uniquely identifies a compilation output.
    struct DeviceCompilationClusterSignature {
      // Name of the cluster, built from the function name and it's attributes.
      string name;
    
      // List of args (either as a TensorTypeAndShape or as a Tensor value)
      // for compile-time constant arguments to the compilation, ordered by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                }
    
                is FirVarargArgumentsExpression -> {
                    // Vararg arguments may have multiple independent expressions associated.
                    // Choose one to be the representative PSI value for the entire assembled argument.
                    val (annotationValues, representativePsi) = arguments.convertVarargsExpression(builder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top