Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 632 for getLine (0.41 sec)

  1. src/encoding/pem/pem.go

    }
    
    // getLine results the first \r\n or \n delineated line from the given byte
    // array. The line does not include trailing whitespace or the trailing new
    // line bytes. The remainder of the byte array (also not including the new line
    // bytes) is also returned and this will always be smaller than the original
    // argument.
    func getLine(data []byte) (line, rest []byte) {
    	i := bytes.IndexByte(data, '\n')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-models/src/main/java/org/gradle/kotlin/dsl/tooling/models/EditorPosition.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.tooling.models;
    
    
    public interface EditorPosition {
    
        int getLine();
    
        int getColumn();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 743 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorPosition.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.kotlin.dsl;
    
    
    /**
     * Position in the editor.
     *
     * @since 6.0
     */
    public interface EditorPosition {
    
        int getLine();
    
        int getColumn();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 794 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultLineInFileLocation.java

            super(path);
            this.line = line;
            this.column = column;
            this.length = length;
        }
    
        @Override
        public int getLine() {
            return line;
        }
    
        @Override
        public int getColumn() {
            return column;
        }
    
        @Override
        public int getLength() {
            return length;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalLineInFileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.problem;
    
    public interface InternalLineInFileLocation extends InternalFileLocation {
    
        int getLine();
    
        int getColumn();
    
        int getLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 813 bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLineInFileLocation.java

            super(path);
            this.line = line;
            this.column = column;
            this.length = length;
        }
    
        @Override
        public int getLine() {
            return line;
        }
    
        @Override
        public int getColumn() {
            return column;
        }
    
        @Override
        public int getLength() {
            return length;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    			if tc.allowAltNodeIP {
    				runPacketFlowTests(t, getLine(), nft, testNodeIPs, []packetFlowTest{
    					{
    						name:     "external to nodePort on secondary IP",
    						sourceIP: externalClientIP,
    						destIP:   altNodeIP,
    						destPort: 3001,
    						output:   output,
    						masq:     true,
    					},
    				})
    			} else {
    				runPacketFlowTests(t, getLine(), nft, testNodeIPs, []packetFlowTest{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

        /**
         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultLineInFileLocation.java

            super(path);
            this.line = line;
            this.column = column;
            this.length = length;
        }
    
        @Override
        public int getLine() {
            return line;
        }
    
        @Override
        public int getColumn() {
            return column;
        }
    
        @Override
        public int getLength() {
            return length;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         * @since 8.6
         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is column number 1.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top