Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,832 for arguments_ (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

          work_list.push_back(use.getOwner());
        }
      }
    
      for (auto* op : erase_list) {
        op->dropAllUses();
        op->erase();
      }
    }
    
    // Updates terminator op arguments of 'func' after removing arguments
    // specified in 'arguments_to_erase'.
    template <typename T>
    void UpdateTerminatorArguments(T& func,
                                   const ArrayRef<unsigned> arguments_to_erase,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    	MOVD $2176+16, R6 // starting LE stack address-8 to store 4th argument
    
    repeat:
    	ADD  $8, R7
    	MOVD 0(R7), R0      // advance arg pointer by 8 byte
    	ADD  $8, R6         // advance LE argument address by 8 byte
    	MOVD R0, (R4)(R6*1) // copy argument from go-slice to le-frame
    	SUB  $1, R8
    	CMP  R8, $0
    	BNE  repeat
    
    docall:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/middleware.md

    from unicorn import UnicornMiddleware
    
    app = FastAPI()
    
    app.add_middleware(UnicornMiddleware, some_config="rainbow")
    ```
    
    `app.add_middleware()` empfängt eine Middleware-Klasse als erstes Argument und dann alle weiteren Argumente, die an die Middleware übergeben werden sollen.
    
    ## Integrierte Middleware
    
    **FastAPI** enthält mehrere Middlewares für gängige Anwendungsfälle. Wir werden als Nächstes sehen, wie man sie verwendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Verify.java

       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_outside.txt

    # 'go run' should work with file arguments if they don't import anything
    # outside std.
    go run ./stdonly/stdonly.go
    stdout 'path is command-line-arguments$'
    stdout 'main is  $'
    
    # 'go generate' should work with file arguments.
    [exec:touch] go generate ./needmod/needmod.go
    [exec:touch] exists ./needmod/gen.txt
    
    # 'go install' should work with file arguments.
    go install ./stdonly/stdonly.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromObjectList(), "execute(command)", "", ""],
                // Spread calls
                [fromString(), "execute(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "execute(command as String)", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/str/str.go

    	"unicode/utf8"
    )
    
    // StringList flattens its arguments into a single []string.
    // Each argument in args must have type string or []string.
    func StringList(args ...any) []string {
    	var x []string
    	for _, arg := range args {
    		switch arg := arg.(type) {
    		case []string:
    			x = append(x, arg...)
    		case string:
    			x = append(x, arg)
    		default:
    			panic("stringList: invalid argument of type " + fmt.Sprintf("%T", arg))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
                [fromString(), "command.execute((String[]) ['FOOBAR=foobar'], null)", "", "foobar"],
                [fromString(), "command.execute((List) ['FOOBAR=foobar'], null)", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler_disable_test.cc

    TEST(DeviceCompilerTest, TestDisabledXlaCompilation) {
      NameAttrList fn;
      fn.set_name("afunction");
    
      // Create mock arguments so we see them in the VLOG when compilation fails.
      std::vector<XlaCompiler::Argument> args(2);
      for (int i = 0; i < 2; ++i) {
        args[i].kind = XlaCompiler::Argument::kParameter;
        args[i].type = DT_INT32;
        args[i].shape = TensorShape({2, i + 1});
        args[i].name = absl::StrCat("arg", i);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/object.h

    class UneraseCallHelper;
    
    // UneraseCallHelper::Call allows transforming all the incoming arguments
    // from a TaggedValue tuple to a variadic list of args.  The class template
    // starts as a list of argument types and ends empty. The static member
    // template starts empty and ends with the unerased types of the signature.
    
    // Base case (all arguments are processed, so call the function TFunc.
    template <class Fn, typename TReturn>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top