Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 324 for Positions (0.18 sec)

  1. src/cmd/compile/internal/syntax/testing.go

    // The position for each Error is the position of the token immediately
    // preceding the comment and the Error message is the comment text,
    // with all comments that are on the same line collected in a slice, in
    // source order. If there is no preceding token (the matching comment
    // appears at the beginning of the file), then the recorded position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. docs/en/docs/css/termynal.css

        border-radius: 4px;
        padding: 75px 45px 35px;
        position: relative;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        line-height: 1.2;
    }
    
    [data-termynal]:before {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        display: inline-block;
        width: 15px;
        height: 15px;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
      private ByteBuffer byteBuffer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
      private ByteBuffer byteBuffer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

         */
        int getArgsCount();
    
        /**
         * Returns an <b>unwrapped</b> argument at the position {@code pos}.
         * Arguments are numbered left-to-right, from 0 to {@code getArgsCount() - 1} inclusive.
         * Throws {@link ArrayIndexOutOfBoundsException} if {@code pos} is outside the bounds.
         *
         * @param pos the position of the argument
         * @return the unwrapped value of the argument
         */
        Object getArgument(int pos);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

                switch (ch) {
                    case '(':
                        if (insideOptionalPart) {
                            throw new IllegalArgumentException(
                                "invalid start of optional part at position " + i + " in pattern "
                                    + pattern);
                        }
    
                        optionalPart = new StringBuilder();
                        insideOptionalPart = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/internal/poll/sendfile_windows.go

    		})
    		if err != nil {
    			return written, err
    		}
    
    		curpos += int64(nw)
    
    		// Some versions of Windows (Windows 10 1803) do not set
    		// file position after TransmitFile completes.
    		// So just use Seek to set file position.
    		if _, err = syscall.Seek(o.handle, curpos, io.SeekStart); err != nil {
    			return written, err
    		}
    
    		n -= int64(nw)
    		written += int64(nw)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAnalysisApiSubstitutorsTest.kt

                    appendLine("${KaType::class.simpleName}: ${type.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substitute: ${substituted.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substituteOrNull: ${substitutedOrNull?.render(position = Variance.INVARIANT)}")
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top