Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for sourcePath (0.25 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if len(functionNodes) == 0 {
    		return fmt.Errorf("no matches found for regexp: %s", o.Symbol)
    	}
    
    	sourcePath := o.SourcePath
    	if sourcePath == "" {
    		wd, err := os.Getwd()
    		if err != nil {
    			return fmt.Errorf("could not stat current dir: %v", err)
    		}
    		sourcePath = wd
    	}
    	reader := newSourceReader(sourcePath, o.TrimPath)
    
    	fmt.Fprintf(w, "Total: %s\n", rpt.formatValue(rpt.total))
    	for _, fn := range functions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEventLogger.kt

        prettyPrint(
            "KotlinBuildScriptModel",
            sequenceOf(
                "classPath" to compactStringFor(classPath),
                "sourcePath" to compactStringFor(sourcePath),
                "implicitImports" to compactStringFor(implicitImports, '.'),
                "editorReports" to editorReports.toString(),
                "exceptions" to stringForExceptions(exceptions, indentation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WbResourceTest.groovy

            then:
            new WbResource(rootNode.'wb-resource'[0]) == createWbResource()
        }
    
        def equality() {
            WbResource wbResource = createWbResource()
            wbResource.sourcePath += 'x'
    
            expect:
            wbResource != createWbResource()
        }
    
        private WbResource createWbResource() {
            return new WbResource("/", "src/main/webapp")
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent.xml

                    <td><literal>eclipse.project.name</literal></td>
                </tr>
                <tr>
                    <td>resources</td>
                    <td><literal>[deployPath: '/', sourcePath: project.webAppDirName]</literal></td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>properties</td>
                    <td><literal>[]</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

            }
    
    
            Container_Boundary(tapiBuilder, "IDE ToolingAPI Models") {
    
                Component(tapiModels, "TAPI Models", "classpath, sourcepath, implicit imports, user reports")
                Component(tapiModelBuilders, "TAPI Model Builders", "On-demand source distro download, Calculates editor warnings and errors")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

                final List<String> tags = parseTags(fileDeclaration);
                final String sourceSyntax = getSourceSyntax(sourceRelativeLocation);
                String sourcePath = String.format("%s/%s/%s", sampleBaseDir, sampleDir, sourceRelativeLocation);
                String source = getContent(sourcePath);
                source = filterByTags(source, sourceSyntax, tags);
                source = trimIndent(source);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

        public Variable(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromVariablePath((String) node.attribute("sourcepath")));
        }
    
        public Variable(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "var";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/swiftpm/tasks/GenerateSwiftPackageManagerManifest.java

                            sorted.add(productPath.relativize(sourceFile.toPath()).toString());
                        }
                        for (String sourcePath : sorted) {
                            writer.print("                \"");
                            writer.print(sourcePath);
                            writer.println("\",");
                        }
                        writer.print("            ]");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCustomLibrarySourceAndJavadocCrossVersionSpec.groovy

                                def lib = classpath.entries.find { it.path.contains('example-lib') }
                                lib.javadocPath = fileReference('$customJavadocPath')
                                lib.sourcePath  = fileReference('$customSourcePath')
                            }
                        }
                    }
                }
            """
    
            when:
            def project = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGeneratorTest.groovy

            Lists.newArrayList(args) == ["-J-Xmx256m", "@$argsFile"]
            println argsFile.text
    
            and: "args file contains remaining arguments (one per line, quoted)"
            argsFile.readLines() == ["-g", "-sourcepath", quote(""), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", quote("${spec.compileClasspath.join(File.pathSeparator)}"), *(spec.sourceFiles*.path.collect { quote(it) })]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top