Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,197 for base_ (0.05 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

       public:
        Iterator(const ParamGeneratorInterface<T>* base, T value, int index,
                 IncrementT step)
            : base_(base), value_(value), index_(index), step_(step) {}
        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
          return base_;
        }
        virtual void Advance() {
          value_ = value_ + step_;
          index_++;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

       public:
        Iterator(const ParamGeneratorInterface<T>* base, T value, int index,
                 IncrementT step)
            : base_(base), value_(value), index_(index), step_(step) {}
        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
          return base_;
        }
        virtual void Advance() {
          value_ = value_ + step_;
          index_++;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

      }
    
     private:
      class Iterator : public ParamIteratorInterface<ParamType> {
       public:
        Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[
    
          const ParamGenerator<T$j>& g$j,
          const typename ParamGenerator<T$j>::iterator& current$(j)]])
            : base_(base),
    $for j, [[
    
              begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j)
    ]]    {
          ComputeCurrentValue();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

      }
    
     private:
      class Iterator : public ParamIteratorInterface<ParamType> {
       public:
        Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[
    
          const ParamGenerator<T$j>& g$j,
          const typename ParamGenerator<T$j>::iterator& current$(j)]])
            : base_(base),
    $for j, [[
    
              begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j)
    ]]    {
          ComputeCurrentValue();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K 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-generated.h

       public:
        Iterator(const ParamGeneratorInterface<ParamType>* base,
          const ParamGenerator<T1>& g1,
          const typename ParamGenerator<T1>::iterator& current1,
          const ParamGenerator<T2>& g2,
          const typename ParamGenerator<T2>::iterator& current2)
            : base_(base),
              begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

       public:
        Iterator(const ParamGeneratorInterface<ParamType>* base,
          const ParamGenerator<T1>& g1,
          const typename ParamGenerator<T1>::iterator& current1,
          const ParamGenerator<T2>& g2,
          const typename ParamGenerator<T2>::iterator& current2)
            : base_(base),
              begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/Base.java

    import java.io.Serializable;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Simple base class to verify that we handle generics correctly. */
    @GwtCompatible
    class Base implements Comparable<Base>, Serializable {
      private final String s;
    
      public Base(String s) {
        this.s = s;
      }
    
      @Override
      public int hashCode() { // delegate to 's'
        return s.hashCode();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. proguard/base.pro

    # FinalizableReferenceQueue is unused.
    -keepnames class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    # However, it cannot "spot" that this method needs to be kept IF the class is.
    -keepclassmembers class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    -keepnames class com.google.common.base.FinalizableReference {
      void finalizeReferent();
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue44956/base/base.go

    // Copyright 2021 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.
    
    package base
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 205 bytes
    - Viewed (0)
  10. cluster/gce/gci/testdata/kube-apiserver/base.template

    {{ define "base" }}
    readonly KUBE_HOME={{.}}
    readonly KUBE_API_SERVER_LOG_PATH=${KUBE_HOME}/kube-apiserver.log
    readonly KUBE_API_SERVER_AUDIT_LOG_PATH=${KUBE_HOME}/kube-apiserver-audit.log
    readonly CLOUD_CONFIG_OPT=--cloud-config=/etc/gce.conf
    readonly CA_CERT_BUNDLE_PATH=/foo/bar
    readonly APISERVER_SERVER_CERT_PATH=/foo/bar
    readonly APISERVER_SERVER_KEY_PATH=/foo/bar
    readonly APISERVER_CLIENT_CERT_PATH=/foo/bar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top