Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 852 for positioner (0.15 sec)

  1. src/cmd/vendor/rsc.io/markdown/parse.go

    type Block interface {
    	Pos() Position
    	PrintHTML(buf *bytes.Buffer)
    	printMarkdown(buf *bytes.Buffer, s mdState)
    }
    
    type mdState struct {
    	prefix  string
    	prefix1 string // for first line only
    	bullet  rune   // for list items
    	num     int    // for numbered list items
    }
    
    type Position struct {
    	StartLine int
    	EndLine   int
    }
    
    func (p Position) Pos() Position {
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

          int b_priority = priorityFunction(previous_op, b);
          if (a_priority != b_priority) {
            return a_priority > b_priority;
          } else {
            return position[a] < position[b];  // preserve order
          }
        };
    
        Operation* best = nullptr;
        for (Operation* op : ready) {
          if (best == nullptr || better(op, best)) {
            best = op;
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/source.go

    }
    
    // starting points for line and column numbers
    const linebase = 1
    const colbase = 1
    
    // pos returns the (line, col) source position of s.ch.
    func (s *source) pos() (line, col uint) {
    	return linebase + s.line, colbase + s.col
    }
    
    // error reports the error msg at source position s.pos().
    func (s *source) error(msg string) {
    	line, col := s.pos()
    	s.errh(line, col, msg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  4. src/internal/pkgbits/decoder.go

    	// elemEnds stores the byte-offset end positions of element
    	// bitstreams within elemData.
    	//
    	// For example, element I's bitstream data starts at elemEnds[I-1]
    	// (or 0, if I==0) and ends at elemEnds[I].
    	//
    	// Note: elemEnds is indexed by absolute indices, not
    	// section-relative indices.
    	elemEnds []uint32
    
    	// elemEndsEnds stores the index-offset end positions of relocation
    	// sections within elemEnds.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *
     *  @param pos The 1-based position of the suite to fetch.
     *  @return Returns a pointer to the suite, or 0 if not found or an error occurred.
     *  @see CU_get_suite()
     */
    
    CU_EXPORT 
    unsigned int CU_get_suite_pos(CU_pSuite pSuite);
    /**<
     *  Looks up the position of the specified suite.
     *  The position is a 1-based index of suites in the active test registry which 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

        /**
         * @return the current context with the characters moving forward from the write position erased.
         */
        AnsiContext eraseForward();
    
        /**
         * @return the current context with the entire line erased.
         */
        AnsiContext eraseAll();
    
        /**
         * @return the current context moved to the specified position.
         */
        AnsiContext cursorAt(Cursor cursor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/generate_cpp_main.cc

        }
    
        QCHECK(!source_dir_.empty()) << usage;  // Crash OK
        QCHECK(!output_dir_.empty()) << usage;  // Crash OK
        QCHECK(!category_.empty()) << usage;    // Crash OK
    
        // Remaining arguments (i.e. the positional args) are the requested Op names
        op_names_.assign((*argv) + 1, (*argv) + (*argc));
      }
    
      generator::cpp::CppConfig CppConfig() {
        return generator::cpp::CppConfig(category_);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/index_format.txt

    		len(imports) uint32
    		for each rawImport:
    			path - string offset
    			position - file, offset, line, column - uint32
    		len(embeds) uint32
    		for each embed:
    			pattern - string offset
    			position - file, offset, line, column - uint32
    		len(directives) uint32
    		for each directive:
    			text - string offset
    			position - file, offset, line, column - uint32
    [string table]
    0xFF (marker)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

     * limitations under the License.
     */
    
    /* Adjust top left logo */
    
    .library-name a {
        position: relative;
        margin-left: 65px;
    }
    
    .library-name a::before {
        content: '';
        background: url("../images/gradle-logo.svg") center no-repeat;
        background-size: contain;
        position: absolute;
        width: 65px;
        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

        return "AddInput";
      }
    }
    
    std::vector<string> ArgView::SetterArgs() const { return {VariableName()}; }
    
    bool ArgView::IsList() const { return arg_.arg_type().is_list(); }
    
    int ArgView::Position() const { return arg_.position(); }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top