Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,832 for arguments_ (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

        }
    
        /**
         * Returns all methods that are applicable to actual argument types.
         *
         * @param methods list of all candidate methods
         * @param classes the actual types of the arguments
         * @return a list that contains only applicable methods (number of
         *         formal and actual arguments matches, and argument types are assignable
         *         to formal types through a method invocation conversion).
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. test/typecheck.go

    // die after running into an undefined
    // type in the argument list for a
    // function.
    // Does not compile.
    
    package main
    
    func mine(int b) int { // ERROR "undefined.*b"
    	return b + 2 // ERROR "undefined.*b"
    }
    
    func main() {
    	mine()     // ERROR "not enough arguments"
    	c = mine() // ERROR "undefined.*c|not enough arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 543 bytes
    - Viewed (0)
  8. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

     *
     * <li>Options can take arguments. The argument follows the option. For example: {@code -a arg} or {@code --long
     * arg}.</li>
     *
     * <li>Arguments can be attached to the option using '='. For example: {@code -a=arg} or {@code --long=arg}.</li>
     *
     * <li>Arguments can be attached to short options. For example: {@code -aarg}.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         * @since 4.0
         */
        void setCommandLine(List<String> args);
    
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

                Node argumentsNode = commandNode.appendNode("arguments");
                for (Map.Entry<String, String> argument : command.getArguments().entrySet()) {
                    Node dictionaryNode = argumentsNode.appendNode("dictionary");
                    dictionaryNode.appendNode("key", argument.getKey());
                    dictionaryNode.appendNode("value", argument.getValue());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top