Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,184 for relativeTo (1.54 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/ProjectDescriptor.java

        /**
         * Returns the name of the build file for this project. This name is interpreted relative to the project
         * directory.
         *
         * @return The build file name.
         */
        String getBuildFileName();
    
        /**
         * Sets the name of the build file. This name is interpreted relative to the project directory.
         *
         * @param name The build file name. Should not be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    // which should be a constant, may be used to classify them.
    // It is primarily intended to make it easy to look up documentation.
    //
    // All Pos values are interpreted relative to Pass.Fset. If End is
    // provided, the diagnostic is specified to apply to the range between
    // Pos and End.
    type Diagnostic struct {
    	Pos      token.Pos
    	End      token.Pos // optional
    	Category string    // optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/buildSrc/src/main/java/org/example/Instrument.java

    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.api.tasks.*;
    
    public abstract class Instrument extends DefaultTask {
    
        @SkipWhenEmpty
        @IgnoreEmptyDirectories
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public abstract ConfigurableFileCollection getClassFiles();
    
        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 893 bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * All other timestamps are calculated as the wall clock time at last sync + elapsed time since.
     * <p>
     * This clock deals relatively well when the system wall clock shift is adjusted by small amounts.
     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * You can use an absolute link for extdocURL to enable your docs to link to a document on any website,
         * or can use a relative link to link only to a relative location. If relative,
         * the value you pass in should be the relative path from the destination directory (specified with -d) to the directory containing the packages being linked to.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.ProjectFeatures
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import jetbrains.buildServer.configs.kotlin.buildFeatures.PullRequests
    import jetbrains.buildServer.configs.kotlin.buildFeatures.commitStatusPublisher
    import jetbrains.buildServer.configs.kotlin.buildFeatures.parallelTests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

         * @throws IOException Model read problem
         */
        @Test
        void testFlatTrickyUrls() throws IOException {
            // parent references child with artifactId (which is not directory name)
            // then relative path calculation will fail during build from disk but success when calculated from repo
            try {
                // build from disk expected to fail
                testInheritance("tricky-flat-artifactId-urls", false);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

        /**
         * Returns the path of this file, relative to the root of the containing file tree. Always uses '/' as the hierarchy
         * separator, regardless of platform file separator. Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path. Never returns null.
         */
        String getPath();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/go/ast/example_test.go

    	// src is the input for which we want to inspect the AST.
    	src := `
    package p
    const c = 1.0
    var X = f(3.14)*2 + c
    `
    
    	// Create the AST by parsing src.
    	fset := token.NewFileSet() // positions are relative to fset
    	f, err := parser.ParseFile(fset, "src.go", src, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	// Inspect the AST and print all identifiers and literals.
    	ast.Inspect(f, func(n ast.Node) bool {
    		var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Optional;
    
    /**
     * Relativizes paths relative to a set of source directories in order to create a platform-independent mapping
     * from source file to class file.
     */
    @NonNullApi
    public class CompilationSourceDirs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top