Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,957 for impl_4 (0.73 sec)

  1. src/image/internal/imageutil/impl.go

    Mark Rushakoff <******@****.***> 1520661463 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.cc

    namespace tensorflow {
    
    Scope::Scope(Impl* impl) : impl_(impl) {}
    
    Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {}
    
    Scope::~Scope() {}
    
    Scope& Scope::operator=(const Scope& other) {
      // We can't copy Impls because of the const members, use copy ctor instead
      impl_.reset(new Impl(*other.impl_));
      return *this;
    }
    
    namespace {
    const char kScopeSeparator[] = "/";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        }
    
        EnsureIsCopied();
        impl_->insert(resource_op);
      }
    
      Impl::const_iterator begin() const {
        return impl_ ? impl_->begin() : GetEmptyImpl()->begin();
      }
    
      Impl::const_iterator end() const {
        return impl_ ? impl_->end() : GetEmptyImpl()->end();
      }
    
      bool Contains(const ResourceOp& resource_op) const {
        return impl_ != nullptr && impl_->count(resource_op);
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/cc/client/client_session.h

      /// session.
      /// NOTE: This API is still experimental and may change.
      Status ReleaseCallable(CallableHandle handle);
    
     private:
      class Impl;
      std::unique_ptr<Impl> impl_;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
    };
    
    /// @}
    
    }  // end namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K 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

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-tfl-composite.mlir

        %1:2 = stablehlo.composite "odml.update_kv_cache" %0#0, %0#1, %arg2, %arg3, %arg4 {composite_attributes = {kv_cache_max = 500 : i64}, decomposition = @odml.update_kv_cache.impl_0} : (tensor<1x500x4x4xf32>, tensor<1x500x4x4xf32>, tensor<100xi64>, tensor<1x100x4x4xf32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection = Mock(ConsumerConnection)
    
            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
            impl2 == connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope.h

      // START_SKIP_DOXYGEN
      class Impl;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
      // END_SKIP_DOXYGEN
    
     private:
      Scope WithOpNameImpl(const string& op_name) const;
    
      friend class InternalScope;
      std::unique_ptr<Impl> impl_;
      explicit Scope(Impl*);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. tensorflow/cc/client/client_session.cc

      TF_CHECK_OK(status) << status;
      impl_.reset(new Impl(new_session, scope.graph_as_shared_ptr()));
      CHECK_NOTNULL(impl()->session_.get());
    }
    
    // Define destructor here so we can forward declare `Impl` in client_session.h.
    // If we define a dtor in the header file or use the default dtor,
    // unique_ptr<Impl> needs the complete type.
    ClientSession::~ClientSession() {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top