Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,070 for step_ (0.09 sec)

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

      RangeGenerator(T begin, T end, IncrementT step)
          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
        return new Iterator(this, end_, end_index_, step_);
      }
    
     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)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      RangeGenerator(T begin, T end, IncrementT step)
          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
        return new Iterator(this, end_, end_index_, step_);
      }
    
     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)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            step1.matches("ac")
            step1.matches("abac")
            !step1.matches("bc")
            !step1.matches("ab")
            !step1.matches("a")
            !step1.matches("c")
    
            and:
            def step2 = PatternStepFactory.getStep("a**c", true);
            step2 instanceof HasPrefixAndSuffixPatternStep
    
            step2.matches("ac")
            step2.matches("abac")
            !step2.matches("bc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                      end_, end, end_ty), node)
              end = end_
    
            if step is None:
              step = self._ssa_name('step')
              self._emit_with_loc('\n{} = arith.constant 1 : index'.format(step),
                                  node)
            elif step_ty != TFRTypes.INDEX:
              step_ = self._ssa_name('step')
              self._emit_with_loc(
                  '\n{} = arith.index_cast {} : {} to index'.format(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/opensearch/extension/analysis/FlexiblePorterStemFilterFactory.java

            super(indexSettings, name, settings);
    
            step1 = settings.getAsBoolean("step1", true);
            step2 = settings.getAsBoolean("step2", true);
            step3 = settings.getAsBoolean("step3", true);
            step4 = settings.getAsBoolean("step4", true);
            step5 = settings.getAsBoolean("step5", true);
            step6 = settings.getAsBoolean("step6", true);
        }
    
        @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Step 1 is not cancelled because it was done.
        assertWithMessage("step1.statusFuture().isCancelled()")
            .that(step1.statusFuture().isCancelled())
            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
        assertWithMessage("step2.statusFuture().isCancelled()")
            .that(step2.statusFuture().isCancelled())
            .isTrue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Step.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.execution.UnitOfWork;
    
    public interface Step<C extends Context, R extends Result> {
        R execute(UnitOfWork work, C context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 819 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Step 1 is not cancelled because it was done.
        assertWithMessage("step1.statusFuture().isCancelled()")
            .that(step1.statusFuture().isCancelled())
            .isFalse();
        // But its closeable is closed.
        assertClosed(closeable1);
    
        // Step 2 is cancelled because it wasn't complete.
        assertWithMessage("step2.statusFuture().isCancelled()")
            .that(step2.statusFuture().isCancelled())
            .isTrue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/first-steps.md

    ## ステップ毎の要約
    
    ### Step 1: `FastAPI`をインポート
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI`は、APIのすべての機能を提供するPythonクラスです。
    
    !!! note "技術詳細"
        `FastAPI`は`Starlette`を直接継承するクラスです。
    
        `FastAPI`でも<a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a>のすべての機能を利用可能です。
    
    ### Step 2: `FastAPI`の「インスタンス」を生成
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. docs/vi/docs/tutorial/first-steps.md

        Thông tin ở đây được biểu thị như là một chỉ dẫn, không phải là một yêu cầu bắt buộc.
    
        Ví dụ, khi sử dụng GraphQL bạn thông thường thực hiện tất cả các hành động chỉ bằng việc sử dụng các toán tử `POST`.
    
    ### Step 4: Định nghĩa **hàm cho đường dẫn toán tử**
    
    Đây là "**hàm cho đường dẫn toán tử**":
    
    * **đường dẫn**: là `/`.
    * **toán tử**: là `get`.
    * **hàm**: là hàm bên dưới "decorator" (bên dưới `@app.get("/")`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top