Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for closeStream (0.23 sec)

  1. src/net/http/h2_bundle.go

    		case http2stateHalfClosedRemote:
    			sc.closeStream(st, http2errHandlerComplete)
    		}
    	} else {
    		switch v := wr.write.(type) {
    		case http2StreamError:
    			// st may be unknown if the RST_STREAM was generated to reject bad input.
    			if st, ok := sc.streams[v.StreamID]; ok {
    				sc.closeStream(st, v)
    			}
    		case http2handlerPanicRST:
    			sc.closeStream(wr.stream, http2errHandlerPanicked)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                closeStreams()
                buildScopedFingerprint.moveFrom(buildScopedSpoolFile.file)
                projectScopedFingerprint.moveFrom(projectScopedSpoolFile.file)
                return Committed()
            }
    
            override fun dispose(): WritingState {
                closeStreams()
                if (buildScopedSpoolFile.file.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top