Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lineNumber (0.36 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            buildScript '''
                task (copy, type:Copy) {
                    from "src/two/two.b"
                    into "dest"
                    def lineNumber = 1
                    filter { lineNumber++ % 2 == 0 ? null : it }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            def it = file('dest/two.b').readLines().iterator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        white-space: normal;
    }
    /*
     * Styles for formatting effect.
     */
    .source-line-no {
        /* Color of line numbers in source pages can be set via custom property below */
        color:var(--source-linenumber-color, green);
        padding:0 30px 0 0;
    }
    .block {
        display:block;
        margin:0 10px 5px 0;
        color:var(--block-text-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            filename=asset_file,
            key_dtype=dtypes.string,
            key_index=lookup_ops.TextFileIndex.WHOLE_LINE,
            value_dtype=dtypes.int64,
            value_index=lookup_ops.TextFileIndex.LINE_NUMBER,
        )
        table = lookup_ops.StaticHashTable(init, default_value=-1)
    
        input_vocabs_placeholder = array_ops.placeholder(
            dtypes.string, shape=(None,), name='input_vocabs'
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // should use the assertion macros instead of calling this directly.
      void AddTestPartResult(TestPartResult::Type result_type,
                             const char* file_name,
                             int line_number,
                             const std::string& message,
                             const std::string& os_stack_trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // should use the assertion macros instead of calling this directly.
      void AddTestPartResult(TestPartResult::Type result_type,
                             const char* file_name,
                             int line_number,
                             const std::string& message,
                             const std::string& os_stack_trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top