Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 969 for realtime (0.31 sec)

  1. docs/en/docs/img/deployment/https/https06.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
    - 17.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/flags.go

    		"Specifies the default template file to be used when generating the Kubernetes Service for an instance of the echo application. "+
    			"Can be either an absolute path or relative to the templates directory under the echo test component. A default will be selected if not specified.")
    	flag.StringVar(&deploymentTemplateFile, "istio.test.echo.kube.template.deployment", deploymentTemplateFile,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DirectorySensitivityErrorHandlingIntegrationSpec.groovy

                @CacheableTask
                class TaskWithOutputs extends DefaultTask {
                    @InputFile
                    @PathSensitive(PathSensitivity.RELATIVE)
                    File input
    
                    @InputFiles
                    @PathSensitive(PathSensitivity.RELATIVE)
                    FileCollection sources
    
                    ${output.annotation}
                    @IgnoreEmptyDirectories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GenerateScriptPluginAdapters.kt

        )
    }
    
    
    private
    fun packageDir(outputDir: File, packageName: String) =
        outputDir.mkdir(packageName.replace('.', '/'))
    
    
    private
    fun File.mkdir(relative: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

            def executed = succeeds('tasks')
            executed.output.contains("Gradle Plugin received build finished!")
        }
    
        @ToBeFixedForConfigurationCache(because = "Gradle.buildFinished")
        def "can apply script with relative path"() {
            setup:
            def externalInitFile = temporaryFolder.createFile("initscripts/somePath/anInit.gradle")
            externalInitFile << """
            buildFinished {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     */
    package okhttp3
    
    import java.io.IOException
    import okhttp3.internal.authenticator.JavaNetAuthenticator
    
    /**
     * Performs either **preemptive** authentication before connecting to a proxy server, or
     * **reactive** authentication after receiving a challenge from either an origin web server or proxy
     * server.
     *
     * ## Preemptive Authentication
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelPathTranslator.java

     */
    package org.apache.maven.model.path;
    
    import java.io.File;
    import java.nio.file.Path;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    
    /**
     * Resolves relative paths of a model against a specific base directory.
     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.path;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportingExtension.java

        }
    
        /**
         * Creates a file object for the given path, relative to {@link #getBaseDir()}.
         * <p>
         * The reporting base dir can be changed, so users of this method should use it on demand where appropriate.
         *
         * @param path the relative path
         * @return a file object at the given path relative to {@link #getBaseDir()}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         * </p>
         *
         * <br>
         * Example: The property is an input directory.
         * <ul>
         *     <li>The path of the input directory is ignored.</li>
         *     <li>The path of the files in the input directory are considered relative to the input directory.</li>
         * </ul>
         */
        RELATIVE,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top