Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 813 for isStandard (0.15 sec)

  1. src/runtime/fds_unix.go

    		}
    
    		if errno != EBADF {
    			print("runtime: unexpected error while checking standard file descriptor ", i, ", errno=", errno, "\n")
    			throw("cannot open standard fds")
    		}
    
    		if ret := open(&devNull[0], O_RDWR, 0); ret < 0 {
    			print("runtime: standard file descriptor ", i, " closed, unable to open /dev/null, errno=", errno, "\n")
    			throw("cannot open standard fds")
    		} else if ret != int32(i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:20:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/issue18331.go

    // for code that resides in the standard library.
    package issue18331
    
    //go:unknown // ERROR "//go:unknown is not allowed in the standard library"
    func foo()
    
    //go:nowritebarrierc // ERROR "//go:nowritebarrierc is not allowed in the standard library"
    func bar()
    
    //go:noesape // ERROR "//go:noesape is not allowed in the standard library"
    func groot()
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 22:28:17 UTC 2017
    - 685 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/base-dependency-insight.out

        | org.gradle.usage               | java-runtime | java-runtime |
        | org.gradle.dependency.bundling |              | external     |
        | org.gradle.jvm.environment     |              | standard-jvm |
        | org.gradle.jvm.version         |              | 11           |
    
    io.vertx:vertx-lang-groovy:3.9.4
    \--- runtimeClasspath
    
    io.vertx:vertx-lang-groovy-gen:3.9.4
      Variant runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/gofmt/doc.go

    		If a file's formatting is different than gofmt's, print diffs
    		to standard output.
    	-e
    		Print all (including spurious) errors.
    	-l
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, print its name
    		to standard output.
    	-r rule
    		Apply the rewrite rule to the source before reformatting.
    	-s
    		Try to simplify code (after applying the rewrite rule, if any).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingOutput.java

    @HasInternalProtocol
    public interface LoggingOutput {
        /**
         * Adds a listener which receives output written to standard output by the Gradle logging system.
         *
         * @param listener The listener to add.
         */
        void addStandardOutputListener(StandardOutputListener listener);
    
        /**
         * Removes a listener from standard output.
         *
         * @param listener The listener to remove.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

        | org.gradle.usage               | java-runtime | java-runtime |
        | org.gradle.dependency.bundling |              | external     |
        | org.gradle.jvm.environment     |              | standard-jvm |
        | org.gradle.jvm.version         |              | 11           |
    
    io.vertx:vertx-lang-groovy:3.9.4
    \--- runtimeClasspath
    
    io.vertx:vertx-lang-groovy-gen:3.9.4
      Variant runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpec.java

        @Override
        public BaseExecSpec setStandardInput(InputStream inputStream) {
            throw new UnsupportedOperationException("Standard streams cannot be configured for exec output provider");
        }
    
        @Override
        public InputStream getStandardInput() {
            throw new UnsupportedOperationException("Standard streams cannot be configured for exec output provider");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutputFactory.java

        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
         * @param logCategory The log category.
         * @return the output
         */
        StyledTextOutput create(String logCategory);
    
        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
         * @param logCategory The log category.
         * @return the output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top