Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,935 for parsable (0.25 sec)

  1. 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)
  2. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      tensorflow::DataType dtype = variable.dtype();
      std::vector<std::string> component_devices;
    
      for (const auto& component :
           variable.experimental_distributed_variable_components()) {
        component_devices.push_back(component.device());
      }
    
      TF_RETURN_IF_ERROR(Variable::CreateUninitialized(
          ctx, dtype, shape, name,
          variable.device().empty() ? nullptr : variable.device().c_str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    // In Go 1.22 and later, the loop variable lifetimes changed to create a new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. test/fixedbugs/bug482.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Using the same name for a field in a composite literal and for a
    // global variable that depends on the variable being initialized
    // caused gccgo to erroneously report "variable initializer refers to
    // itself".
    
    package p
    
    type S struct {
    	F int
    }
    
    var V = S{F: 1}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 455 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue50372.go

            for range s {}
            for i = range s {}
            for i, j /* ERRORx `range over .* permits only one iteration variable` */ = range s {}
            for i, j, k /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
            for i, j, k, l /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirPsiBasedPropertySymbolPointer.kt

        override fun restoreSymbol(analysisSession: KaSession): KaKotlinPropertySymbol? =
            when (val variable = with(analysisSession) { variableSymbolPointer.restoreSymbol() }) {
                is KaKotlinPropertySymbol -> variable
                is KaValueParameterSymbol -> variable.generatedPrimaryConstructorProperty
                else -> null
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util_test.cc

      absl::c_sort(names);
      return names;
    }
    
    void CreateSubgraphTouchingRefVar(const Scope& s) {
      Output variable =
          ops::Variable(s.WithOpName("variable"), PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(s.WithOpName("read_ref_var"), variable);
      Output neg = ops::Negate(s.WithOpName("negate_ref"), read);
      Output add = ops::Add(s.WithOpName("add_ref"), neg, neg);
    
      Output constant =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    ### Classes en tant que types
    
    Vous pouvez aussi déclarer une classe comme type d'une variable.
    
    Disons que vous avez une classe `Person`, avec une variable `name` :
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Vous pouvez ensuite déclarer une variable de type `Person` :
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/phi.go

    	// of the most-recently-seen value for each variable.
    
    	// Map from variable ID to SSA value at the current point of the walk.
    	values := make([]*ssa.Value, len(s.varnum))
    	for i := range values {
    		values[i] = s.placeholder
    	}
    
    	// Stack of work to do.
    	type stackEntry struct {
    		b *ssa.Block // block to explore
    
    		// variable/value pair to reinstate on exit
    		n int32 // variable ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_experimental.cc

                                 }));
      tensorflow::mutex_lock ml(*variable->mu());
    
      if (validate_shape) {
        OP_REQUIRES(cc_ctx,
                    (!variable->is_initialized ||
                     variable->tensor()->shape().IsSameSize(value.shape())),
                    InvalidArgument(
                        "Trying to assign to variable with tensor with wrong shape."
                        " Expected ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top