Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for place (0.29 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]ide-native[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]plugins[/\\]ide[/\\]api[/\\][^/\\]+"/>
    
        <!-- These packages are duplicated in platform-native from language-native, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
         *           place the test directory in a {@code --patch-module} option.</li>
         *       <li>Otherwise, place the test directory on the module-path. However, this case
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * For example, an artifact of type {@value org.apache.maven.api.Type#JAR} can be placed
         * either on the class-path or on the module-path. The project needs to make a choice
         * (possibly using heuristic rules), then to add the dependency in only one of the options
         * identified by {@link PathType}.
         *
         * @return file paths to place on the different tool options
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/build-events/build.gradle.kts

        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/Contextual.java

    /**
     * This annotation is attached to an exception class to indicate that it provides contextual information about the
     * exception which might help the user determine what the failed operation was, or where it took place. Generally, this
     * annotation is only attached to exceptions which chain lower-level exceptions.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface Contextual {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/lib-grid.libsonnet

          and `panelHeight`. Row panels are used as "linebreaks", if a Row panel is collapsed,
          then all panels below it will be folded into the row.
    
          Optional `startY` can be provided to place generated grid above or below existing panels.
        |||,
        args=[
          d.arg('panels', d.T.array),
          d.arg('panelHeight', d.T.number),
          d.arg('startY', d.T.number),
        ],
      ),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/config/constants/constants.go

    	CertProviderKubernetesSignerPrefix = "k8s.io/"
    	// CertProviderCustom uses the custom root certificate mounted in a well known location for the control plane
    	CertProviderCustom = "custom"
    	// CertProviderNone does not create any certificates for the control plane. It is assumed that some external
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    private
    val allowedProperties = setOf(
        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
        "java.awt.headless", // Some popular plugins modify this property at runtime.
        "java.version",
        "java.version.date",
        "java.vendor",
        "java.vendor.url",
        "java.vendor.version",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

     */
    public inline fun <reified PSI : PsiElement> KaSymbol.sourcePsiSafe(): PSI? {
        if (origin != KaSymbolOrigin.SOURCE && origin != KaSymbolOrigin.JAVA_SOURCE) return null
    
        return psi as? PSI
    }
    
    /**
     * A place where [KaSymbol] came from
     */
    public enum class KaSymbolOrigin {
        /**
         * Declaration from Kotlin sources
         */
        SOURCE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
            )
        }
    
        private fun checkSessionValidityBeforeModification(
            sessions: List<SESSION>,
            testServices: TestServices,
        ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top