Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 216 for strnames (0.11 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/streams/DefaultValueStoreTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache.internal.streams
    
    import org.gradle.internal.serialize.BaseSerializerFactory
    import org.gradle.internal.serialize.Decoder
    import org.gradle.internal.serialize.Serializer
    import org.gradle.internal.serialize.kryo.KryoBackedDecoder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/MessageDeflaterInflaterTest.kt

        val message = "f248cdc9c957c8cc4bcb492cc9cccf530400".decodeHex()
        assertThat(inflater.inflate(message)).isEqualTo("Hello inflation!".encodeUtf8())
      }
    
      /**
       * We had a bug where self-finishing inflater streams would infinite loop!
       * https://github.com/square/okhttp/issues/8078
       */
      @Test fun `inflate returns finished before bytesRead reaches input length`() {
        val inflater = MessageInflater(false)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/net/http/response.go

    }
    
    // Response represents the response from an HTTP request.
    //
    // The [Client] and [Transport] return Responses from servers once
    // the response headers have been received. The response body
    // is streamed on demand as the Body field is read.
    type Response struct {
    	Status     string // e.g. "200 OK"
    	StatusCode int    // e.g. 200
    	Proto      string // e.g. "HTTP/1.0"
    	ProtoMajor int    // e.g. 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pilot/pkg/features/tuning.go

    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    	// MaxRecvMsgSize The max receive buffer size of gRPC received channel of Pilot in bytes.
    	MaxRecvMsgSize = env.Register(
    		"ISTIO_GPRC_MAXRECVMSGSIZE",
    		4*1024*1024,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

                doColumn("state");
            }
    
            public void columnStreet() {
                doColumn("street");
            }
    
            public void columnSurname() {
                doColumn("surname");
            }
    
            public void columnTelephoneNumber() {
                doColumn("telephoneNumber");
            }
    
            public void columnTeletexTerminalIdentifier() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MoreCollectors.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    @IgnoreJRERequirement // Users will use this only if they're already using streams.
    public final class MoreCollectors {
    
      /*
       * TODO(lowasser): figure out if we can convert this to a concurrent AtomicReference-based
       * collector without breaking j2cl?
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

     * <p>
     * Enables tracking progress via listeners that will receive events from the Gradle operation.
     * <p>
     * Allows providing standard output streams that will receive output if the Gradle operation writes to standard streams.
     * <p>
     * Allows providing standard input that can be consumed by the gradle operation (useful for interactive builds).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

            then:
            def taskOutput = getTaskOutput(result)
            matchesTaskOutput(taskOutput, testLogEventRegex(TestLogEvent.STARTED.consoleMarker))
        }
    
        def "can group standard output streams with task if configured"() {
            given:
            buildFile << testLoggingStandardStream()
    
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
                """
                    System.out.println("standard output");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    // justQueueStream skips the usual stream validation before
    // queueing the stream on the stream channel.
    func justQueueStream(streams chan httpstream.Stream) func(httpstream.Stream, <-chan struct{}) error {
    	return func(stream httpstream.Stream, replySent <-chan struct{}) error {
    		streams <- stream
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/net/http/roundtrip_js.go

    		// See https://github.com/web-platform-tests/wpt/issues/7693 for WHATWG tests issue.
    		// See https://developer.mozilla.org/en-US/docs/Web/API/Streams_API for more details on the Streams API
    		// and browser support.
    		// NOTE(haruyama480): Ensure HTTP/1 fallback exists.
    		// See https://go.dev/issue/61889 for discussion.
    		body, err := io.ReadAll(req.Body)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top