Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,832 for arguments_ (0.17 sec)

  1. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.cc

    SignatureDefFunctionMetadata::SignatureDefFunctionMetadata(
        std::vector<SignatureDefParam> arguments,
        std::vector<SignatureDefParam> returns)
        : arguments_(std::move(arguments)), returns_(std::move(returns)) {}
    
    const std::vector<SignatureDefParam>& SignatureDefFunctionMetadata::arguments()
        const {
      return arguments_;
    }
    
    const std::vector<SignatureDefParam>& SignatureDefFunctionMetadata::returns()
        const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h

      SignatureDefFunctionMetadata(std::vector<SignatureDefParam> arguments,
                                   std::vector<SignatureDefParam> returns);
    
      const std::vector<SignatureDefParam>& arguments() const;
      const std::vector<SignatureDefParam>& returns() const;
    
     private:
      std::vector<SignatureDefParam> arguments_;
      std::vector<SignatureDefParam> returns_;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/mod_get_go_file.txt

    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix, is a file and exists
    ! go get test.go
    stderr 'go: test.go: arguments must be package or module paths'
    
    # argument has .go suffix, doesn't exist and has no slashes
    ! go get test_missing.go
    stderr 'arguments must be package or module paths'
    
    # argument has .go suffix, is a file and exists in sub-directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top