Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 357 for Positions (0.13 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/internal/SymbolHider.java

            private byte[] dataBytes;
            private int position = 0;
    
            public DataReader(byte[] dataBytes) {
                this.dataBytes = dataBytes;
            }
    
            public int getPosition() {
                return position;
            }
    
            public void moveTo(int position) {
                this.position = position;
            }
    
            public int readByte() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultAnsiExecutor.java

        }
    
        private void positionCursorAt(Cursor position, Ansi ansi) {
            if (writeCursor.row == position.row) {
                if (writeCursor.col == position.col) {
                    return;
                }
                if (writeCursor.col < position.col) {
                    ansi.cursorRight(position.col - writeCursor.col);
                } else {
                    ansi.cursorLeft(writeCursor.col - position.col);
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    .boxbg {
      border-width: 0px;
      position: absolute;
      overflow: hidden;
      box-sizing: border-box;
      background: #d8d8d8;
    }
    .positive { position: absolute; background: #caa; }
    .negative { position: absolute; background: #aca; }
    /* Not-inlined frames are visually separated from their caller. */
    .not-inlined {
      border-top: 1px solid black;
    }
    /* Function name */
    .boxtext {
      position: absolute;
      width: 100%;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    var stringType = types.Universe.Lookup("string").Type()
    
    // A position describes what is expected to appear in an argument position.
    type position int
    
    const (
    	// key is an argument position that should hold a string key or an Attr.
    	key position = iota
    	// value is an argument position that should hold a value.
    	value
    	// unknown represents that we do not know if position should hold a key or a value.
    	unknown
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbRandomAccess.java

         * Current position in file
         * 
         * @return current position
         */
        long getFilePointer ();
    
    
        /**
         * Seek to new position
         * 
         * @param pos
         */
        void seek ( long pos );
    
    
        /**
         * Get the current file length
         * 
         * @return file length
         * @throws SmbException
         */
        long length () throws SmbException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/legacy/source/kube/origin.go

    	return o.Cluster
    }
    
    // Position is a representation of the location of a source.
    type Position struct {
    	Filename string // filename, if any
    	Line     int    // line number, starting at 1
    }
    
    // String outputs the string representation of the position.
    func (p *Position) String() string {
    	s := p.Filename
    	// TODO: support json file position.
    	if p.isValid() && filepath.Ext(p.Filename) != ".json" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Parameter.java

        if (obj instanceof Parameter) {
          Parameter that = (Parameter) obj;
          return position == that.position && declaration.equals(that.declaration);
        }
        return false;
      }
    
      @Override
      public int hashCode() {
        return position;
      }
    
      @Override
      public String toString() {
        return type + " arg" + position;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Parameter.java

        if (obj instanceof Parameter) {
          Parameter that = (Parameter) obj;
          return position == that.position && declaration.equals(that.declaration);
        }
        return false;
      }
    
      @Override
      public int hashCode() {
        return position;
      }
    
      @Override
      public String toString() {
        return type + " arg" + position;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

            if (position == 0) {
                setPosition(1);
            }
            return (attribute == null) ? null : new Xpp3DomAttributePointer(parent, attribute);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtRendererTypeApproximator.kt

        public object TO_DENOTABLE : KaRendererTypeApproximator {
            override fun approximateType(analysisSession: KaSession, type: KaType, position: Variance): KaType {
                with(analysisSession) {
                    val effectiveType = type.getEnhancedType() ?: type
    
                    return when (position) {
                        Variance.INVARIANT -> effectiveType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top