Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,089 for arguments_ (0.47 sec)

  1. cmd/kubeadm/app/util/arguments.go

    )
    
    // ArgumentsToCommand takes two Arg slices, one with the base arguments and one
    // with optional override arguments. In the return list override arguments will precede base
    // arguments. If an argument is present in the overrides, it will cause
    // all instances of the same argument in the base list to be discarded, leaving
    // only the instances of this argument in the overrides to be applied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/argument.go

    limitations under the License.
    */
    
    package kubeadm
    
    // GetArgValue traverses an argument slice backwards and returns the value
    // of the given argument name and the index where it was found.
    // If the argument does not exist an empty string and -1 are returned.
    // startIdx defines where the iteration starts. If startIdx is a negative
    // value or larger than the size of the argument slice the iteration
    // will start from the last element.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/argument.kt

    Kristoffer Andersen <******@****.***> 1659368814 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 99 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/argument.txt

    Kristoffer Andersen <******@****.***> 1659368814 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 66 bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/functions.go

    	// Since the type parameter is used for an incoming argument,
    	// it can be inferred from the provided argument's type.
    	Reverse([]string{"foo", "bar"})
    	Reverse([]struct{x, y int}{{1, 2}, {2, 3}, {3, 4}})
    
    	// But the incoming argument must have a type, even if it's a
    	// default type. An untyped nil won't work.
    	// Reverse(nil) // this won't type-check
    
    	// A typed nil will work, though.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

        static final String ARG_1 = "argument1"
        static final String ARG_2 = "argument2"
    
        def setup() {
            buildFile << """
                if(hasProperty('$ARG_1')) logger.quiet("$ARG_1")
                if(hasProperty('$ARG_2')) logger.quiet("$ARG_2")
            """
        }
    
        def "Appends additional JVM arguments"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/ArgsMappingMacroFunction.java

        public List<Expression> getArguments() {
            return arguments;
        }
    
        public int[] getArgsMap() {
            return argsMap;
        }
    
        @Override
        public Expression evaluate(List<Expression> arguments) {
            List<Expression> mapped = new ArrayList<Expression>(this.arguments.size());
            int currentMapPos = 0;
            for (Expression argument : this.arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationArgumentsRenderer.kt

                printer: PrettyPrinter,
            ) {
                if (annotation.arguments.isEmpty()) return
                printer.printCollection(annotation.arguments, prefix = "(", postfix = ")") { argument ->
                    append(argument.name.render())
                    append(" = ")
                    append(KaAnnotationValueRenderer.render(argument.expression))
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top