Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 741 for isStandard (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    But it might be useful to understand the _standard attributes_ defined by Gradle and its core plugins.
    
    As a plugin author, these attributes, and the way they are defined, can serve as a basis for <<#sec:declaring_attributes,building your own set of attributes>> in your ecosystem plugin.
    
    [[sec:standard_attributes]]
    == Standard attributes defined by Gradle
    
    Gradle defines a list of standard attributes used by Gradle's core plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/time/zoneinfo_abbrs_windows.go

    	"SA Eastern Standard Time":        {"-03", "-03"},     // America/Cayenne
    	"Central Standard Time":           {"CST", "CDT"},     // America/Chicago
    	"Central Brazilian Standard Time": {"-04", "-04"},     // America/Cuiaba
    	"Mountain Standard Time":          {"MST", "MDT"},     // America/Denver
    	"Greenland Standard Time":         {"-03", "-02"},     // America/Godthab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  4. internal/config/storageclass/storage-class.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Standard constants for all storage class
    const (
    	// Reduced redundancy storage class
    	RRS = "REDUCED_REDUNDANCY"
    	// Standard storage class
    	STANDARD = "STANDARD"
    )
    
    // Standard constats for config info storage class
    const (
    	ClassStandard = "standard"
    	ClassRRS      = "rrs"
    	Optimize      = "optimize"
    	InlineBlock   = "inline_block"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                    'org.gradle.jvm.environment': of('', 'standard-jvm')
                ])}
    
    ${variantOf('mainSourceElements', [
                    'org.gradle.verificationtype': of('main-sources', ''),
                    'org.gradle.category': of('verification', 'library'),
                    'org.gradle.dependency.bundling': of('external', 'external'),
                    'org.gradle.jvm.environment': of('', 'standard-jvm'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

            private final AtomicBoolean didWarn = new AtomicBoolean();
    
            CheckStandardLayoutSpec(Provider<Boolean> standard) {
                this.standard = standard;
            }
    
            @Override
            public boolean isSatisfiedBy(GenerateModuleMetadata element) {
                if (!standard.get() && !didWarn.getAndSet(true)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. src/log/log.go

    	return l.out
    }
    
    // SetOutput sets the output destination for the standard logger.
    func SetOutput(w io.Writer) {
    	std.SetOutput(w)
    }
    
    // Flags returns the output flags for the standard logger.
    // The flag bits are [Ldate], [Ltime], and so on.
    func Flags() int {
    	return std.Flags()
    }
    
    // SetFlags sets the output flags for the standard logger.
    // The flag bits are [Ldate], [Ltime], and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            alsoPassedClassFile.assertHasLinkTo('../packages/org.gradle.passing', 'org.gradle.passing')
            alsoPassedClassFile.assertHasStandardOutput('this is\nstandard output')
            alsoPassedClassFile.assertHasStandardError('this is\nstandard error')
    
            def alsoPassedTestDetails = alsoPassedClassFile.testDetails('passedToo')
            alsoPassedTestDetails.assertDuration("1.000s")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    Annotation processors and their dependencies for source set 'main'.
    
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.environment     = standard-jvm
        - org.gradle.libraryelements     = jar
        - org.gradle.usage               = java-runtime
    
    --------------------------------------------------
    Configuration compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    Many tools out there still use the standard output for logging.
    By default, Gradle redirects standard output to the `QUIET` log level and standard error to the `ERROR` level.
    This behavior is configurable.
    
    The `project` object provides a link:{javadocPath}/org/gradle/api/logging/LoggingManager.html[LoggingManager], which allows you to change the log levels that standard out or error are redirected to when your build script is evaluated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top