Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,622 for variable1 (0.17 sec)

  1. src/runtime/mgcstack.go

    // do statically, as user code has explicit references (reads and
    // writes) to stack variables. The compiler can do a simple dataflow
    // analysis to determine liveness of stack variables at every point in
    // the code. See cmd/compile/internal/gc/plive.go for that analysis.
    //
    // However, when we take the address of a stack variable, determining
    // whether that variable is still live is less clear. We can still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. docs/sts/ldap.md

    export MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY=on
    ```
    
    ### Variable substitution in configuration strings
    
    In the configuration variables, `%s` is substituted with the _username_ from the STS request and `%d` is substituted with the _distinguished username (user DN)_ of the LDAP user. Please see the following table for which configuration variables support these substitution variables:
    
    | Variable                                    | Supported substitutions |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model.h

    // FreezeSavedModel sets `frozen_graph_def` to a GraphDef of all nodes needed by
    // `outputs`. All variables in the supplied SavedModelBundle are converted to
    // constants, set to the value of the variables, by running the restored Session
    // in the SavedModelBundle.
    // WARNING: Only the variable checkpoints will be reflected in the frozen
    // graph_def. All saved_model assets will be ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopbce.go

    // variable, and, if so, extracts:
    //   - the minimum bound
    //   - the increment value
    //   - the "next" value (SSA value that is Phi'd into the induction variable every loop)
    //
    // Currently, we detect induction variables that match (Phi min nxt),
    // with nxt being (Add inc ind).
    // If it can't parse the induction variable correctly, it returns (nil, nil, nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    // int* get_arr(char* arg, void* dummy)
    // {return NULL;}
    import "C"
    import "unsafe"
    
    // Test variables
    var (
    	checkedPointer            = []byte{1}
    	doublePointerChecked      = []byte{1}
    	singleInnerPointerChecked = []byte{1}
    )
    
    // This test checks the positions of variable identifiers.
    // Changing the positions of the test variables idents after this point will break the test.
    
    func TestSingleArgumentCast() C.int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/get_compiler_ir.cc

          // Handles tf.resource variables.
          TF_RET_CHECK(input->dtype() == DT_RESOURCE);
          const VariableInfo& variable = *variable_info_lookup[input_num];
          arg.kind = XlaCompiler::Argument::kResource;
          arg.resource_kind = XlaResource::kVariable;
          arg.definition_stack_trace = variable.definition_stack_trace();
          TF_RET_CHECK(variable.var() && variable.var()->is_initialized);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      switch (kind) {
        case SavedObject::kVariable: {
          const auto& variables_iter = objects.variables.find(node_id);
          if (variables_iter == objects.variables.end()) {
            return absl::FailedPreconditionError(absl::StrCat(
                "Tried to convert node id ", node_id,
                " of type variable to tensor but the variable wasn't initialized"));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19632.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that we don't crash due to "lost track of variable in
    // liveness" errors against unused variables.
    
    package p
    
    import "strings"
    
    // Minimized test case from github.com/mvdan/sh/syntax.
    func F() {
    	var _ = []string{
    		strings.Repeat("\n\n\t\t        \n", 10) +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 19:52:45 UTC 2017
    - 539 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // Whether to enable TFLite variables or not, this will allow
      // mutable variables and produce ReadVariable/AssignVariable ops in TFLite.
      bool enable_tflite_variables = false;
      // Whether to disable the variable freezing pass or not.
      // By default we freeze all variables and disallow mutable variables. When
      // 'enable_tflite_variables' is true then we allow mutable variable only.
      bool disable_variable_freezing = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    [[sec:gradle_environment_variables]]
    == Environment variables
    
    Gradle provides a number of environment variables, which are listed below.
    
    === Setting environment variables
    
    Let's take an example that sets the $JAVA_HOME environment variable:
    
    [source,text]
    ----
    $ set JAVA_HOME=C:\Path\To\Your\Java\Home   // Windows
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top