Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for getLine (0.32 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. 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)
  3. pkg/proxy/iptables/proxier_test.go

    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    		})
    	}
    }
    
    // getLine returns the line number of the caller, if possible.  This is useful in
    // tests with a large number of cases - when something goes wrong you can find
    // which case more easily.
    func getLine() int {
    	_, _, line, ok := stdruntime.Caller(1)
    	if ok {
    		return line
    	}
    	return 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/metrics/types_util.cc

    void ExtractFileLine(const FileLineColLoc& loc,
                         tflite::metrics::ConverterErrorData::FileLoc* fileline) {
      fileline->set_filename(loc.getFilename().str());
      fileline->set_line(loc.getLine());
      fileline->set_column(loc.getColumn());
    }
    
    // Defines a child class of Location to access its protected members.
    class LocationExtractor : public Location {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

                super(location)
                line = location['line'] as int
                column = location['column'] as int
                length = location['length'] as int
            }
    
            @Override
            int getLine() {
                line
            }
    
            @Override
            int getColumn() {
                column
            }
    
            @Override
            int getLength() {
                length
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

                    LineInFileLocation fileLocation = (LineInFileLocation) location;
                    return new org.gradle.internal.build.event.types.DefaultLineInFileLocation(fileLocation.getPath(), fileLocation.getLine(), fileLocation.getColumn(), fileLocation.getLength());
                } else if (location instanceof OffsetInFileLocation) {
                    OffsetInFileLocation fileLocation = (OffsetInFileLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                    }
                }
            }
    
            SyntaxException syntaxError = e.getErrorCollector().getSyntaxError(0);
            int lineNumber = syntaxError == null ? -1 : syntaxError.getLine();
            String message = String.format("Could not compile %s.", source.getDisplayName());
            throw ((InternalProblems) getProblemsService()).getInternalReporter().throwing(builder -> builder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                if (value instanceof LineInFileLocation) {
                    out.name("subtype").value("lineInFile");
                    LineInFileLocation l = (LineInFileLocation) value;
                    out.name("line").value(l.getLine());
                    out.name("column").value(l.getColumn());
                    out.name("length").value(l.getLength());
                } else if (value instanceof OffsetInFileLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                if (location instanceof InternalLineInFileLocation) {
                    InternalLineInFileLocation l = (InternalLineInFileLocation) location;
                    result.add(new DefaultLineInFileLocation(l.getPath(), l.getLine(), l.getColumn(), l.getLength()));
                } else if (location instanceof InternalOffsetInFileLocation) {
                    InternalOffsetInFileLocation l = (InternalOffsetInFileLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                    AbstractLibrary library = (AbstractLibrary) entry;
                    final File file = library.getLibrary().getFile();
                    final File source = library.getSourcePath() == null ? null : library.getSourcePath().getFile();
                    final File javadoc = library.getJavadocPath() == null ? null : library.getJavadocPath().getFile();
                    DefaultEclipseExternalDependency dependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top