Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 969 for realtime (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java

        public String getLocation() {
            return location;
        }
    
        @Override
        public Source resolve(String relative) {
            return new PathSource(path.resolve(relative));
        }
    
        @Override
        public ModelSource resolve(ModelLocator locator, String relative) {
            String norm = relative.replace('\\', File.separatorChar).replace('/', File.separatorChar);
            Path path = getPath().getParent().resolve(norm);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_write.txt

    [GOOS:windows] ! go env -w CC=bin\clang
    [GOOS:windows] stderr 'go: CC entry is relative; must be absolute path'
    
    # go env -w rejects relative CXX values
    [!GOOS:windows] go env -w CC=/usr/bin/cpp
    go env -w CXX=cpp
    [!GOOS:windows] ! go env -w CXX=./cpp
    [!GOOS:windows] ! go env -w CXX=bin/cpp
    [!GOOS:windows] stderr 'go: CXX entry is relative; must be absolute path'
    
    [GOOS:windows] go env -w CXX=$WORK\bin\cpp
    [GOOS:windows] ! go env -w CXX=.\cpp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/Directory.java

        /**
         * Returns a {@link Directory} whose location is the given path, resolved relative to this directory.
         *
         * @param path The path. Can be absolute.
         * @return The directory.
         */
        Directory dir(String path);
    
        /**
         * Returns a {@link Provider} whose value is a {@link Directory} whose location is the given path resolved relative to this directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:52:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/workcmd/use.go

    // go.work file located in directory workDir.
    //
    // If dir is relative, it is interpreted relative to base.Cwd()
    // and its canonical form is relative to workDir if possible.
    // If dir is absolute or cannot be made relative to workDir,
    // its canonical form is absolute.
    //
    // Canonical absolute paths are clean.
    // Canonical relative paths are clean and slash-separated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    an "enumerated type", the value is case sensitive. - In elements that specify a pathname to a file within the same JAR file, relative filenames (i.e., those not starting with "/") are considered relative to the root of the JAR file's namespace. Absolute filenames (i.e., those starting with "/") also specify names in the root of the JAR file's namespace. In general, relative names are preferred. The exception is .war files where absolute names are preferred for consistency with the servlet API. -->...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/RelativeFilePathResolver.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    /**
     * Resolves a path object relative to some base directory.
     */
    public interface RelativeFilePathResolver {
        /**
         * Converts the given path to a relative path.
         */
        String resolveAsRelativePath(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https.drawio

                        <mxGeometry relative="1" as="geometry"/>
                    </mxCell>
                    <mxCell id="58" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;dashed=1;startArrow=none;" edge="1" parent="1" source="102" target="57">
                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="410" y="400" as="targetPoint"/>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 25.7K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/shade/transforms/ShadeClasses.kt

            }
        }
    }
    
    
    @DisableCachingByDefault(because = "Only filters the input artifact")
    abstract class FindClassTrees : TransformAction<TransformParameters.None> {
        @get:PathSensitive(PathSensitivity.RELATIVE)
        @get:InputArtifact
        abstract val input: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            outputs.file(input.get().asFile.resolve(classTreeFileName))
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

        /**
         * Returns a new source identified by a relative path. Implementation <strong>MUST</strong>
         * be able to accept <code>relative</code> parameter values that
         * <ul>
         * <li>use either / or \ file path separator,</li>
         * <li>have .. parent directory references,</li>
         * <li>point either at file or directory.</li>
         * </ul>
         *
         * @param relative is the path of the requested source relative to this source
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

            /**
             * Relative to the build setting {@code SDKROOT}.
             */
            SDKROOT("SDKROOT"),
    
            /**
             * Relative to the directory containing the project file {@code SOURCE_ROOT}.
             */
            SOURCE_ROOT("SOURCE_ROOT"),
    
            /**
             * Relative to the Developer content directory inside the Xcode application
             * (e.g. {@code /Applications/Xcode.app/Contents/Developer}).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top