Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,832 for arguments_ (0.18 sec)

  1. test/append1.go

    // license that can be found in the LICENSE file.
    
    // Verify that append arguments requirements are enforced by the
    // compiler.
    
    package main
    
    func main() {
    
    	s := make([]int, 8)
    
    	_ = append()           // ERROR "missing arguments to append|not enough arguments for append"
    	_ = append(s...)       // ERROR "cannot use ... on first argument|not enough arguments in call to append"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:39 UTC 2022
    - 856 bytes
    - Viewed (0)
  2. src/reflect/abi.go

    	// For instance, if this abiSeq represents 3 arguments
    	// passed to a function, then the 2nd argument's steps
    	// begin at steps[valueStart[1]].
    	//
    	// Because reflect accepts Go arguments in distinct
    	// Values and each Value is stored separately, each abiStep
    	// that begins a new argument will have its offset
    	// field == 0.
    	steps      []abiStep
    	valueStart []int
    
    	stackBytes   uintptr // stack space used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

        }
      }
      std::vector<string> arguments;
      arguments.reserve(args_without_default_val.size() +
                        args_with_default_val.size());
      arguments.insert(arguments.end(),
                       std::make_move_iterator(args_without_default_val.begin()),
                       std::make_move_iterator(args_without_default_val.end()));
      arguments.insert(arguments.end(),
                       std::make_move_iterator(args_with_default_val.begin()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    // (and corresponding expressions).
    // If the callee is variadic, arguments adjusts its signature to match the provided
    // arguments. The type parameters and arguments of the callee and all its arguments
    // are used together to infer any missing type arguments, and the callee and argument
    // functions are instantiated as necessary.
    // The result signature is the (possibly adjusted and instantiated) function signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/ProcessArgumentsSpec.java

            GUtil.addToCollection(arguments, true, args);
            return this;
        }
    
        public ProcessArgumentsSpec setArgs(List<String> arguments) {
            this.arguments.clear();
            args(arguments);
            return this;
        }
    
        public ProcessArgumentsSpec setArgs(Iterable<?> arguments) {
            this.arguments.clear();
            args(arguments);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

         *
         * @param pos the position of the argument
         * @return the unwrapped value of the argument
         */
        Object getArgument(int pos);
    
        /**
         * Returns an <b>unwrapped</b> argument at the position {@code pos} or {@code null} if the {@code pos} is greater or equal than {@link #getArgsCount()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. test/map1.go

    type T7 *T4
    type T8 struct { F *T7 }
    
    func main() {
    	m := make(map[int]int)
    	delete()        // ERROR "missing arguments|not enough arguments"
    	delete(m)       // ERROR "missing second \(key\) argument|not enough arguments"
    	delete(m, 2, 3) // ERROR "too many arguments"
    	delete(1, m)    // ERROR "first argument to delete must be map|argument 1 must be a map|is not a map"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 20:13:36 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    	// Note: We must do this _before_ calling exprList because exprList evaluates
    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    	// For built-ins with special argument handling (make, new, etc.),
    	// evaluation is done by the respective built-in code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/doc/doc.go

    are elided from the presentation unless the -cmd flag is provided.
    
    When run with one argument, the argument is treated as a Go-syntax-like
    representation of the item to be documented. What the argument selects depends
    on what is installed in GOROOT and GOPATH, as well as the form of the argument,
    which is schematically one of these:
    
    	go doc <pkg>
    	go doc <sym>[.<methodOrField>]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top