Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 358 for striped (0.13 sec)

  1. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt

              response,
            )
            return
          }
    
          // This is a long-lived response. Cancel full-call timeouts.
          call?.timeout()?.cancel()
    
          // Replace the body with a stripped one so the callbacks can't see real data.
          val response = response.stripBody()
    
          val reader = ServerSentEventReader(body.source(), this)
          try {
            if (!canceled) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

     * implementations and replacing them with a "stub" that will throw an
     * {@link UnsupportedOperationException} if called at runtime. All members (including but
     * not limited to stripped and stubbed methods) are delegated to a {@link ClassWriter}
     * responsible for writing new API classes.
     */
    public class MethodStubbingApiMemberAdapter extends ClassVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

         * Creates an executor which can run multiple actions concurrently. It is the caller's responsibility to stop the executor.
         *
         * The executor will collect failures thrown by actions and rethrow when the executor is stopped.
         *
         * @param displayName The display name for the this executor. Used for thread names, logging and error message.
         * @return The executor.
         */
        ManagedExecutor create(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. docs/distributed/DESIGN.md

    Refer to the sizing guide with details on the default parity count chosen for different erasure stripe sizes [here](https://github.com/minio/minio/blob/master/docs/distributed/SIZING.md)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/deployment/internal/DefaultDeploymentRegistryTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot modify deployment handles once the registry has been stopped."
        }
    
        def "cannot register a handle once the registry is stopped" () {
            given:
            registry.stop()
    
            when:
            registry.start("id", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/parse.go

    // failed it returns an error and any part of the tag that could be parsed.
    // If parsing succeeded but an unknown value was found, it returns
    // ValueError. The Tag returned in this case is just stripped of the unknown
    // value. All other values are preserved. It accepts tags in the BCP 47 format
    // and extensions to this standard defined in
    // https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStoppedException.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.api;
    
    /**
     * Thrown when the daemon is stopped while running a command.
     */
    public class DaemonStoppedException extends RuntimeException {
        public static final String MESSAGE = "Gradle build daemon has been stopped";
    
        public DaemonStoppedException() {
            super(MESSAGE);
        }
    
        public DaemonStoppedException(String reason) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/go/types/commentMap_test.go

    	for {
    		pos, tok, lit := s.Scan()
    		switch tok {
    		case token.EOF:
    			return
    		case token.COMMENT:
    			if lit[1] == '*' {
    				lit = lit[:len(lit)-2] // strip trailing */
    			}
    			lit = lit[2:] // strip leading // or /*
    			if rx.MatchString(lit) {
    				p := fset.Position(prev)
    				err := comment{p.Line, p.Column, lit}
    				if res == nil {
    					res = make(map[int][]comment)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            assertExists()
            file.delete()
        }
    
        TestFile getStrippedRuntimeFile() {
            if (toolChain?.visualCpp) {
                return file
            } else {
                return file.parentFile.file("stripped/${file.name}")
            }
        }
    
        private NativeBinaryFixture getStrippedBinaryFixture() {
            return new NativeBinaryFixture(strippedRuntimeFile, toolChain)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/lex.go

    	Col() int
    	// Close does any teardown required.
    	Close()
    }
    
    // A Token is a scan token plus its string value.
    // A macro is stored as a sequence of Tokens with spaces stripped.
    type Token struct {
    	ScanToken
    	text string
    }
    
    // Make returns a Token with the given rune (ScanToken) and text representation.
    func Make(token ScanToken, text string) Token {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top