Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 310 for isStandard (0.14 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. common-protos/k8s.io/api/rbac/v1/generated.proto

    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/generated.proto

    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/dataclasses.md

    In that case, you can simply swap the standard `dataclasses` with `pydantic.dataclasses`, which is a drop-in replacement:
    
    ```{ .python .annotate hl_lines="1  5  8-11  14-17  23-25  28" }
    {!../../../docs_src/dataclasses/tutorial003.py!}
    ```
    
    1. We still import `field` from standard `dataclasses`.
    
    2. `pydantic.dataclasses` is a drop-in replacement for `dataclasses`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top