Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,270 for WAY (0.02 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

    import org.jetbrains.kotlin.utils.SmartList
    import java.io.InputStream
    import java.util.concurrent.ConcurrentHashMap
    
    /**
     * The Analysis API has an XML-based declaration way to define services, extensions and so on.
     *
     * This class provides a way to register such definitions to avoid manual registration in [AnalysisApiServiceRegistrar].
     */
    @Suppress("UnstableApiUsage")
    @KaAnalysisNonPublicApi
    object PluginStructureProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/websockets.md

    Or you might have any other way to communicate with the WebSocket endpoint.
    
    ---
    
    But for this example, we'll use a very simple HTML document with some JavaScript, all inside a long string.
    
    This, of course, is not optimal and you wouldn't use it for production.
    
    In production you would have one of the options above.
    
    But it's the simplest way to focus on the server-side of WebSockets and have a working example:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

                    if (releasedVersion) {
                        return releasedVersion.version.version
                    } else if (isRcVersionOrSnapshot(version)) {
                        // for snapshots, we don't have a cheap way to check if it really exists, so we'll just
                        // blindly add it to the list and trust the test author
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes, is to publish a link:https://scans.gradle.com[build scan].
    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  5. pkg/apis/abac/latest/latest.go

    	_ "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    // TODO: this file is totally wrong, it should look like other latest files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 08:30:35 UTC 2019
    - 919 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

     * * at runtime, resolves property access to the `projects` property on [Project] instances.
     */
    @Suppress("unused") // temporarily excluded from the schema, awaiting rework in a way that does not require the target scope
    internal
    class TypesafeProjectAccessorsComponent(targetScope: ClassLoaderScope) : ObjectConversionComponent, AnalysisSchemaComponent {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/FileContentMerger.java

         * <p>
         * This is advanced api that gives access to internal implementation.
         * It might be useful if you want to alter the way gradle build information is merged into existing file content.
         * <p>
         * For examples see docs for {@link org.gradle.plugins.ide.eclipse.model.EclipseProject}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

        /**
         * See {@link #file(Action) }
         */
        public PropertiesFileContentMerger getFile() {
            return file;
        }
    
        /**
         * Enables advanced configuration like affecting the way existing jdt file content
         * is merged with gradle build information
         * <p>
         * The object passed to whenMerged{} and beforeMerged{} closures is of type {@link Jdt}
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    # CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## What is a Container
    
    Containers (mainly Linux containers) are a very **lightweight** way to package applications including all their dependencies and necessary files while keeping them isolated from other containers (other applications or components) in the same system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemEmitter.java

    import javax.annotation.Nullable;
    
    
    /**
     * Interface for emitting problems.
     */
    public interface ProblemEmitter {
    
        /**
         * Emits the given problem in an implementation specific way.
         * <p>
         * The problem will be associated with the given operation identifier.
         *
         * @param problem The problem to emit.
         */
        void emit(Problem problem, @Nullable OperationIdentifier id);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top