Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 212 for somme (0.04 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *     <li>the {@link org.gradle.internal.serialize.graph.DecodingProvider decoding provider}
     *  </ul>
     *  <p>
     *  On serialization of an object of some type, the {@link org.gradle.internal.serialize.graph.codecs.BindingsBackedCodec bindings-backed composite codec}
     *  will query all bindings to find which one knows how to encode the type at hand,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.instrumented-project")
    }
    
    description = """Contains some base and shared classes for JVM language support, like AbstractCompile class and BaseForkOptions classes,
    JVM-specific dependencies blocks and JVM test suite interfaces."""
    
    errorprone {
        disabledChecks.addAll(
            "OverridesJavaxInjectableMethod", // 1 occurrences
            "UnusedMethod", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaTypeParameterSymbol.kt

    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.types.Variance
    
    /**
     * [KaFirPsiJavaTypeParameterSymbol] is a PSI-based type parameter symbol with a lazy [firSymbol]. Some properties such as [name] are
     * computed based on the PSI. This is used by [KaFirPsiJavaClassSymbol] to avoid building its own FIR symbol when a list of type parameters
     * is requested.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/client-services/build.gradle.kts

        api(project(":messaging"))
        api(project(":logging"))
        api(project(":daemon-protocol"))
        api(project(":base-services"))
    
        // The client should not depend on core, but core still contains some types that are shared between the client and daemon
        api(project(":core"))
    
        implementation(libs.jsr305)
        implementation(libs.guava)
        implementation(libs.asm)
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

            model2.size() == 1
            model2[0].message == "It works from project :b"
    
            and:
            fixture.assertStateLoaded()
    
            when:
            file("a/build.gradle") << """
                // Some change
            """
            executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
            def model3 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model3.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils.go

    	// If x-amz-content-sha256 is set and the value is not
    	// 'UNSIGNED-PAYLOAD' we should validate the content sha256.
    	switch v[0] {
    	case unsignedPayload, unsignedPayloadTrailer:
    		return true
    	case emptySHA256:
    		// some broken clients set empty-sha256
    		// with > 0 content-length in the body,
    		// we should skip such clients and allow
    		// blindly such insecure clients only if
    		// S3 strict compatibility is disabled.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

     * Events are not visible to listeners in descendent scopes.
     *
     * <p>This annotation is used primarily to indicate to developers the scopes where this listener are available. There is also
     * some validation when a broadcaster or listener of this type is used in an incorrect scope.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface EventScope {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. cmd/bucket-listobjects-handlers.go

    	writeSuccessResponseXML(w, encodeResponseList(response))
    }
    
    // ListObjectsV2MHandler - GET Bucket (List Objects) Version 2 with metadata.
    // --------------------------
    // This implementation of the GET operation returns some or all (up to 1000)
    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            }
            runner.withArguments("--configuration-cache")
            runner.forwardOutput()
            runner.withProjectDir(testDirectory)
            runner.withPluginClasspath([new File("some-dir")])
            def result = runner.buildAndFail()
            def output = result.output
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.annotations
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top