Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 195 for getLine (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                        .filter(pair -> pair.getDistance() < pair.getLine().length() / 2)
                        // Find the closest match
                        .min(Comparator.comparingInt(LineWithDistance::getDistance))
                        .map(LineWithDistance::getLine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

    }
    
    
    internal
    data class StandardEditorPosition(
        private val line: Int,
        private val column: Int = 0
    ) : EditorPosition, Serializable {
    
        override fun getLine() = line
    
        override fun getColumn() = column
    }
    
    
    internal
    abstract class AbstractKotlinDslScriptsModelBuilder : ToolingModelBuilder {
    
        companion object {
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/helpers_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	netutils "k8s.io/utils/net"
    	"sigs.k8s.io/knftables"
    )
    
    // getLine returns a string containing the file and 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() string {
    	_, file, line, ok := runtime.Caller(1)
    	if !ok {
    		return ""
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/encoding/pem/pem_test.go

    	{"abc\t \nd", "abc", "d"},
    	{"\t abc\nd", "\t abc", "d"},
    	{"abc\n\t d", "abc", "\t d"},
    	{"abc\nd\t ", "abc", "d\t "},
    }
    
    func TestGetLine(t *testing.T) {
    	for i, test := range getLineTests {
    		x, y := getLine([]byte(test.in))
    		if string(x) != test.out1 || string(y) != test.out2 {
    			t.Errorf("#%d got:%+v,%+v want:%s,%s", i, x, y, test.out1, test.out2)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  9. 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)
  10. maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java

                                    .getResource("/poms/depmgmt/import.xml")
                                    .getFile()));
                        case "test:other:pom":
                            return new FileModelSource(new File(getClass()
                                    .getResource("/poms/depmgmt/other-import.xml")
                                    .getFile()));
                        default:
                            throw new UnresolvableModelException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top