Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 485 for relativeTo (0.21 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        }
    
        /**
         * Sets the source for this task. Delegates to {@link #setSource(Object)}.
         *
         * If the source is of type {@link SourceDirectorySet}, then the relative path of each source grammar files
         * is used to determine the relative output path of the generated source
         * If the source is not of type {@link SourceDirectorySet}, then the generated source files end up
         * flattened in the specified output directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/os/file_windows.go

    	runtime.SetFinalizer(file, nil)
    	return err
    }
    
    // seek sets the offset for the next Read or Write on file to offset, interpreted
    // according to whence: 0 means relative to the origin of the file, 1 means
    // relative to the current offset, and 2 means relative to the end.
    // It returns the new offset and an error, if any.
    func (f *File) seek(offset int64, whence int) (ret int64, err error) {
    	if info := f.dirinfo.Swap(nil); info != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            def location = tmpDir.createDir("dir")
    
            expect:
            def dir = factory.dir(location)
            dir.asFile == location
        }
    
        def "can create directory instance from relative file"() {
            def location = projectDir.createDir("dir")
    
            expect:
            def dir = factory.dir(new File("dir"))
            dir.asFile == location
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        /**
         * Returns the relative path from this script's target base directory to the given path.
         *
         * The given path object is (logically) resolved as described for [file],
         * from which a relative path is calculated.
         *
         * @param path The path to convert to a relative path.
         * @return The relative path.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TopKSelector.java

    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An accumulator that selects the "top" {@code k} elements added to it, relative to a provided
     * comparator. "Top" can mean the greatest or the lowest elements, specified in the factory used to
     * create the {@code TopKSelector} instance.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/GeneralRange.java

            upperEndpoint,
            upperBoundType);
      }
    
      /** Returns the whole range relative to the specified comparator. */
      static <T extends @Nullable Object> GeneralRange<T> all(Comparator<? super T> comparator) {
        return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN);
      }
    
      /**
       * Returns everything above the endpoint relative to the specified comparator, with the specified
       * endpoint behavior.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
     * @return the image at the specified URL
     * @see Image
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/GeneralRange.java

            upperEndpoint,
            upperBoundType);
      }
    
      /** Returns the whole range relative to the specified comparator. */
      static <T extends @Nullable Object> GeneralRange<T> all(Comparator<? super T> comparator) {
        return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN);
      }
    
      /**
       * Returns everything above the endpoint relative to the specified comparator, with the specified
       * endpoint behavior.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/os/exec/lp_windows_test.go

    		os.Exit(1)
    	}
    	fmt.Println(exe)
    }
    
    // makePATH returns a PATH variable referring to the
    // given directories relative to a root directory.
    //
    // The empty string results in an empty entry.
    // Paths beginning with . are kept as relative entries.
    func makePATH(root string, dirs []string) string {
    	paths := make([]string, 0, len(dirs))
    	for _, d := range dirs {
    		switch {
    		case d == "":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TopKSelector.java

    import java.util.Iterator;
    import java.util.List;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An accumulator that selects the "top" {@code k} elements added to it, relative to a provided
     * comparator. "Top" can mean the greatest or the lowest elements, specified in the factory used to
     * create the {@code TopKSelector} instance.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top