Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 161 for unhappy (0.25 sec)

  1. src/net/http/response.go

    		var buf [1]byte
    		n, err := r1.Body.Read(buf[:])
    		if err != nil && err != io.EOF {
    			return err
    		}
    		if n == 0 {
    			// Reset it to a known zero reader, in case underlying one
    			// is unhappy being read repeatedly.
    			r1.Body = NoBody
    		} else {
    			r1.ContentLength = -1
    			r1.Body = struct {
    				io.Reader
    				io.Closer
    			}{
    				io.MultiReader(bytes.NewReader(buf[:1]), r.Body),
    				r.Body,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // enums can be implicitly cast to BiggestInt.
      //
      // Even though its body looks the same as the above version, we
      // cannot merge the two, as it will make anonymous enums unhappy.
      static AssertionResult Compare(const char* expected_expression,
                                     const char* actual_expression,
                                     BiggestInt expected,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // enums can be implicitly cast to BiggestInt.
      //
      // Even though its body looks the same as the above version, we
      // cannot merge the two, as it will make anonymous enums unhappy.
      static AssertionResult Compare(const char* expected_expression,
                                     const char* actual_expression,
                                     BiggestInt expected,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    effect, and she grew no larger:  still it was very uncomfortable,
    and, as there seemed to be no sort of chance of her ever getting
    out of the room again, no wonder she felt unhappy.
    
      `It was much pleasanter at home,' thought poor Alice, `when one
    wasn't always growing larger and smaller, and being ordered about
    by mice and rabbits.  I almost wish I hadn't gone down that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    effect, and she grew no larger:  still it was very uncomfortable,
    and, as there seemed to be no sort of chance of her ever getting
    out of the room again, no wonder she felt unhappy.
    
      `It was much pleasanter at home,' thought poor Alice, `when one
    wasn't always growing larger and smaller, and being ordered about
    by mice and rabbits.  I almost wish I hadn't gone down that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTypeBenchmark.java

    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingTypeBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy", "tar.snappy.commons", "tar.snappy.dain"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            .put("tar.snappy", new SnappyPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.commons", new SnappyCommonsPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.dain", new SnappyDainPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.small", new SnappyPacker(new CommonsTarPacker(2)))
            .put("tar.snappy.large", new SnappyPacker(new CommonsTarPacker(64)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.iq80.snappy.SnappyFramedInputStream;
    import org.iq80.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyDainPacker implements Packer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import io.airlift.compress.snappy.SnappyFramedInputStream;
    import io.airlift.compress.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyPacker implements Packer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/code4.txt

    go test -more \
      -pkg first/package \
      -pkg second/package \
      -pkg third/package
    
    Happy testing!
    -- gofmt --
    To test, run this command:
    
    	go test -more
    
    Or, to test specific things, run this command:
    
    	go test -more \
    	  -pkg first/package \
    	  -pkg second/package \
    	  -pkg third/package
    
    Happy testing!
    -- markdown --
    To test, run this command:
    
    	go test -more
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 623 bytes
    - Viewed (0)
Back to top