Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,017 for index_ (0.46 sec)

  1. tensorflow/compiler/jit/variable_info.cc

    namespace tensorflow {
    
    VariableInfo::VariableInfo(
        int index, absl::string_view name, Var* var,
        const std::optional<ManagedStackTrace>& definition_stack_trace)
        : index_(index),
          name_(name),
          var_(var),
          definition_stack_trace_(definition_stack_trace) {}
    
    VariableInfo::VariableInfo(VariableInfo&& other)
        : index_(other.index_),
          var_(other.var_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/ops.h

      explicit Output(Node* n) : op_(n) {}
      Output(Node* n, int32_t index) : op_(n), index_(index) {}
      Output(const Operation& op, int32_t index) : op_(op), index_(index) {}
    
      Operation op() const { return op_; }
      Node* node() const { return op().node(); }
      int32 index() const { return index_; }
      DataType type() const { return op_.output_type(index_); }
      std::string name() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

          const int other_index =
              CheckedDowncastToActualType<const Iterator>(&other)->index_;
          return index_ == other_index;
        }
    
       private:
        Iterator(const Iterator& other)
            : ParamIteratorInterface<T>(),
              base_(other.base_), value_(other.value_), index_(other.index_),
              step_(other.step_) {}
    
        // No implementation - assignment is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/variable_info.h

      VariableInfo(const VariableInfo&) = delete;
      VariableInfo& operator=(const VariableInfo&) = delete;
    
      // The index of the DT_RESOURCE input to the _XlaCompile/_XlaRun operator.
      // Note that the indices can be different between _XlaCompile and _XlaRun.
      int index() const { return index_; }
    
      // A pointer to the resource variable.  May be null if this VariableInfo is
      // "empty", i.e. it does not track a resource variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

          const int other_index =
              CheckedDowncastToActualType<const Iterator>(&other)->index_;
          return index_ == other_index;
        }
    
       private:
        Iterator(const Iterator& other)
            : ParamIteratorInterface<T>(),
              base_(other.base_), value_(other.value_), index_(other.index_),
              step_(other.step_) {}
    
        // No implementation - assignment is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

                               int a_write_fd)
          : file_(a_file), line_(a_line), index_(an_index),
            write_fd_(a_write_fd) {}
    
      ~InternalRunDeathTestFlag() {
        if (write_fd_ >= 0)
          posix::Close(write_fd_);
      }
    
      const std::string& file() const { return file_; }
      int line() const { return line_; }
      int index() const { return index_; }
      int write_fd() const { return write_fd_; }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

                               int a_write_fd)
          : file_(a_file), line_(a_line), index_(an_index),
            write_fd_(a_write_fd) {}
    
      ~InternalRunDeathTestFlag() {
        if (write_fd_ >= 0)
          posix::Close(write_fd_);
      }
    
      const std::string& file() const { return file_; }
      int line() const { return line_; }
      int index() const { return index_; }
      int write_fd() const { return write_fd_; }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. samples/addons/loki.yaml

          storage:
            type: local
        runtime_config:
          file: /etc/loki/runtime-config/runtime-config.yaml
        schema_config:
          configs:
          - from: "2024-04-01"
            index:
              period: 24h
              prefix: index_
            object_store: 'filesystem'
            schema: v13
            store: tsdb
        server:
          grpc_listen_port: 9095
          http_listen_port: 3100
          http_server_read_timeout: 600s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. test/typeparam/index2.go

    	y := [5]int64{1, 2, 3, 4, 5}
    	z := "abcd"
    	w := make([]byte, 4)
    	w[3] = 5
    	v := make(map[int]int64)
    	v[3] = 18
    
    	test(Index1(x), int64(2))
    	test(Index1(y), int64(4))
    	test(Index2(z), byte(100))
    	test(Index2(w), byte(5))
    	test(Index2a(w), byte(5))
    	test(Index3(v), int64(18))
    	test(Index4(v), int64(18))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. test/index.go

    // skip
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of index and slice bounds checks.
    // The actual tests are index0.go, index1.go, index2.go.
    
    package main
    
    import (
    	"bufio"
    	"fmt"
    	"os"
    	"unsafe"
    )
    
    const prolog = `
    
    package main
    
    import (
    	"runtime"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 6.4K bytes
    - Viewed (0)
Back to top