Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Concept (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     * [org.gradle.api.plugins.ExtensionAware] of the specified type.
     *
     * If no extension is found, configures a project convention if available.
     * Note, that the concept of conventions is deprecated and scheduled for
     * removal in Gradle 9.
     *
     * @param T the project extension type.
     * @param configuration the configuration block.
     * @see [org.gradle.api.plugins.ExtensionAware]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

                // This is a legacy quirk.
                // Scans use this to determine that progress logging is indicating start/finish of tasks.
                // This can be removed in Gradle 5.0 (along with the concept of a “logging category” of an operation)
                category = ProgressStartEvent.TASK_CATEGORY;
            }
    
            ProgressLoggerImpl logger = new ProgressLoggerImpl(
                null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Turning this into proper variants is a bit more tricky, as Gradle first selects a version of a module and then selects the best fitting variant.
    So the concept that variants are encoded as versions is not supported directly.
    However, since both variants are always published together we can assume that the files are physically located in the same repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. cmd/globals.go

    	// This is a sha256 output of ``arn:aws:iam::minio:user/admin``,
    	// this is kept in present form to be compatible with S3 owner ID
    	// requirements -
    	//
    	// ```
    	//    The canonical user ID is the Amazon S3–only concept.
    	//    It is 64-character obfuscated version of the account ID.
    	// ```
    	// http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example4.html
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            DefaultMethodModelRuleExtractionContext context = new DefaultMethodModelRuleExtractionContext(this, problems);
    
            // TODO - exceptions thrown here should point to some extensive documentation on the concept of class rule sources
    
            StructSchema<T> schema = getSchema(source, context);
            if (schema == null) {
                throw new InvalidModelRuleDeclarationException(problems.format());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/crypto/tls/bogo_config.json

    {
        "DisabledTests": {
            "*-Async": "We don't support boringssl concept of async",
    
            "TLS-ECH-Client-Reject-NoClientCertificate-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-Reject-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-TLS12-RejectRetryConfigs": "We won't attempt to negotiate 1.2 if ECH is enabled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	PreFilterExtensions() PreFilterExtensions
    }
    
    // FilterPlugin is an interface for Filter plugins. These plugins are called at the
    // filter extension point for filtering out hosts that cannot run a pod.
    // This concept used to be called 'predicate' in the original scheduler.
    // These plugins should return "Success", "Unschedulable" or "Error" in Status.code.
    // However, the scheduler accepts other valid codes as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. doc/godebug.md

    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots).
    
    Go 1.20 removed the preinstalled `.a` files for the standard library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pom.xml

      <version>4.0.0-beta-4-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Apache Maven</name>
      <description>Maven is a software build management and
        comprehension tool. Based on the concept of a project object model:
        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
        the declarative file. Maven can be extended by plugins to utilise a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun artifacts(configureAction: Action<in ArtifactHandler>) {
                onAccess("artifacts")
                delegate.artifacts(configureAction)
            }
    
            @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
            override fun getConvention(): @Suppress("deprecation") org.gradle.api.plugins.Convention {
                onAccess("convention")
                @Suppress("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top