Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,832 for arguments_ (0.17 sec)

  1. src/cmd/go/internal/cmdflag/flag.go

    // flag package to treat all subsequent arguments as non-flags.
    var ErrFlagTerminator = errors.New("flag terminator")
    
    // A FlagNotDefinedError indicates a flag-like argument that does not correspond
    // to any registered flag in a FlagSet.
    type FlagNotDefinedError struct {
    	RawArg   string // the original argument, like --foo or -foo=value
    	Name     string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    === Block method signatures
    
    You can easily identify a method as the implementation behind a block by its signature, or more specifically, its argument types. If a method corresponds to a block:
    
     * It must have at least one argument.
     * The _last_ argument must be of type https://docs.groovy-lang.org/latest/html/gapi/groovy/lang/Closure.html[`groovy.lang.Closure`] or link:{javadocPath}/org/gradle/api/Action.html[org.gradle.api.Action].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. 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)
  6. src/testing/quick/quick.go

    	}
    
    	arguments := make([]reflect.Value, xType.NumIn())
    	rand := config.getRand()
    	maxCount := config.getMaxCount()
    
    	for i := 0; i < maxCount; i++ {
    		err := arbitraryValues(arguments, xType, config, rand)
    		if err != nil {
    			return err
    		}
    
    		xOut := toInterfaces(x.Call(arguments))
    		yOut := toInterfaces(y.Call(arguments))
    
    		if !reflect.DeepEqual(xOut, yOut) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

            int loadSize = 7;  // size of SerializedLambda.getCapturedArg(<n>) call
            // unboxing of a primitive adds "invokevirtual" to "checkcast".
            int unboxingSize = isPrimitiveArgument(argument) ? 6 : 3;
            return loadSize + unboxingSize;
        }
    
        private static boolean isPrimitiveArgument(Type argument) {
            switch (argument.getSort()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        function. Such tensors can be marked as mutable via the `is_mutable`
        attribute.
    
        These tensors are bound to the arguments of func ops via the
        `tf_saved_model.bound_input` argument attr.
    
        The `sym_name` represents the symbol table name used for internal IR
        references. The externally visible names, if any, are represented via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ProviderAwareCompilerDaemonForkOptions.java

        /**
         * Returns any additional JVM argument providers for the compiler process.
         *
         */
        @Optional
        @Nested
        public List<CommandLineArgumentProvider> getJvmArgumentProviders() {
            return jvmArgumentProviders;
        }
    
        /**
         * Returns the full set of arguments to use to launch the JVM for the compiler process. This includes arguments to define
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K 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