Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,184 for relativeTo (0.36 sec)

  1. docs/en/docs/img/deployment/https/https04.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Script.java

        /**
         * <p>Returns the relative path from the directory containing this script to the given path. The given path object
         * is (logically) resolved as described for {@link #file(Object)}, from which a relative path is calculated.</p>
         *
         * @param path The path to convert to a relative path.
         * @return The relative path. Never returns null.
         */
        String relativePath(Object path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/build.gradle.kts

        override val args
            get() = super.args
    
    
        @get:InputDirectory
        @get:SkipWhenEmpty
        @get:PathSensitive(PathSensitivity.RELATIVE)     // <3>
        abstract val scripts: DirectoryProperty
    
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)     // <4>
        abstract val configFiles: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val bundle: RegularFileProperty
    
        init {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/StagePasses.kt

    import common.uuidPrefix
    import jetbrains.buildServer.configs.kotlin.Dependencies
    import jetbrains.buildServer.configs.kotlin.DslContext
    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import jetbrains.buildServer.configs.kotlin.SnapshotDependency
    import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.VcsTrigger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

            then:
            output.contains("from plugin")
    
            where:
            repoType | pathType
            IVY      | PathType.ABSOLUTE
            IVY      | PathType.RELATIVE
            MAVEN    | PathType.ABSOLUTE
            MAVEN    | PathType.RELATIVE
        }
    
        def "can access classes from plugin from #repoType repo"() {
            given:
            publishTestPlugin(repoType)
            buildScript """
              plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_env.properties

    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    time.adjust.time.millis = 0
    
    # ----------------------------------------------------------
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Aug 07 04:53:24 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

    import static org.gradle.api.tasks.PathSensitivity.ABSOLUTE
    import static org.gradle.api.tasks.PathSensitivity.NAME_ONLY
    import static org.gradle.api.tasks.PathSensitivity.NONE
    import static org.gradle.api.tasks.PathSensitivity.RELATIVE
    
    abstract class AbstractPathSensitivityIntegrationSpec extends AbstractIntegrationSpec {
    
        def "single source file renamed with #pathSensitive as input is loaded from cache: #expectedOutcome"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	R_RISCV_CALL_PLT      R_RISCV = 19 /* PC-relative call (PLT) */
    	R_RISCV_GOT_HI20      R_RISCV = 20 /* PC-relative GOT reference */
    	R_RISCV_TLS_GOT_HI20  R_RISCV = 21 /* PC-relative TLS IE GOT offset */
    	R_RISCV_TLS_GD_HI20   R_RISCV = 22 /* PC-relative TLS GD reference */
    	R_RISCV_PCREL_HI20    R_RISCV = 23 /* PC-relative reference */
    	R_RISCV_PCREL_LO12_I  R_RISCV = 24 /* PC-relative reference */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. docs/en/docs/img/deployment/https/https05.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

        ListProperty<String> getArgs() {
            super.getArgs()
        }
    
        @InputDirectory
        @SkipWhenEmpty
        @PathSensitive(PathSensitivity.RELATIVE)         // <3>
        abstract DirectoryProperty getScripts()
    
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)         // <4>
        abstract ConfigurableFileCollection getConfigFiles()
    
        @OutputFile
        abstract RegularFileProperty getBundle()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top