Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 918 for isStandard (0.31 sec)

  1. src/internal/goroot/gc.go

    			lastDirs = append(lastDirs, dir)
    		}
    	}
    	gd.dirs = append(gd.dirs, lastDirs...)
    }
    
    // isStandard reports whether path is a standard library for gccgo.
    func (gd *gccgoDirs) isStandard(path string) bool {
    	// Quick check: if the first path component has a '.', it's not
    	// in the standard library. This skips most GOPATH directories.
    	i := strings.Index(path, "/")
    	if i < 0 {
    		i = len(path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

        }
    
        def "can group standard output streams with task if configured"() {
            given:
            buildFile << testLoggingStandardStream()
    
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
                """
                    System.out.println("standard output");
                    System.err.println("standard error");
                """
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/SocketChannelTest.kt

              listOf(TLS_1_3, TLS_1_2).flatMap { tlsVersion ->
                listOf(Channel, Standard).flatMap { socketMode ->
                  listOf(DISABLED, STANDARD).map { tlsExtensionMode ->
                    TlsInstance(provider, protocol, tlsVersion, socketMode, tlsExtensionMode)
                  }
                }
              }
            }
          } + Channel + Standard
      }
    }
    
    sealed class SocketMode
    
    object Channel : SocketMode() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

            then:
            expectAndroid()
        }
    
        def "prefers standard JVM variant by default"() {
            given:
            prepareResolve('legacy', 'jre')
    
            when:
            run ':checkDeps'
    
            then:
            expectStandardJVM()
        }
    
        def "can enforce standard JVM variant on Android by constraint"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

        }
    
        @Override
        public void apply(Project target) {
            // tag::problems-api-report[]
            problems.forNamespace("reporters.standard.plugin").reporting(problem -> problem
                    .id("adhoc-plugin-deprecation", "Plugin is deprecated")
                    .contextualLabel("The 'standard-plugin' is deprecated")
                    .documentedAt("https://github.com/gradle/gradle/README.md")
                    .severity(Severity.WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * Listens to the output events like printing to standard output or error
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestOutputListener {
    
        /**
         * Fired when during test execution anything is printed to standard output or error
         *
         * @param testDescriptor describes the test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

        Attribute<TargetJvmEnvironment> TARGET_JVM_ENVIRONMENT_ATTRIBUTE = Attribute.of("org.gradle.jvm.environment", TargetJvmEnvironment.class);
    
        /**
         * A standard JVM environment (e.g. running on desktop or server machines).
         */
        String STANDARD_JVM = "standard-jvm";
    
        /**
         * An Android environment.
         */
        String ANDROID = "android";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top