Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for STREAM (0.16 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        return *this;
      }
    
      // Allows streaming basic output manipulators such as endl or flush into
      // this object.
      AssertionResult& operator<<(
          ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
        AppendMessage(Message() << basic_manipulator);
        return *this;
      }
    
     private:
      // Appends the contents of message to message_.
      void AppendMessage(const Message& a_message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        return *this;
      }
    
      // Allows streaming basic output manipulators such as endl or flush into
      // this object.
      AssertionResult& operator<<(
          ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
        AppendMessage(Message() << basic_manipulator);
        return *this;
      }
    
     private:
      // Appends the contents of message to message_.
      void AppendMessage(const Message& a_message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			fmt.Fprintf(stdout, "?   \t%s\t[no test files]\n", p.ImportPath)
    		}
    		return nil
    	}
    
    	var buf bytes.Buffer
    	if len(pkgArgs) == 0 || testBench != "" || testFuzz != "" {
    		// Stream test output (no buffering) when no package has
    		// been given on the command line (implicit current directory)
    		// or when benchmarking or fuzzing.
    		// No change to stdout.
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                if ( size < 33 || ( 4 + size ) > this.getContext().getConfig().getReceiveBufferSize() ) {
                    /* log message? */
                    log.warn("Flusing stream input");
                    this.in.skip(this.in.available());
                }
                else {
                    Response notification = createNotification(key);
                    if ( notification != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    #ifdef REG_DISCIPLINE
    		state.disc.disc.re_version = REG_VERSION;
    		state.disc.disc.re_compf = compf;
    		state.disc.disc.re_execf = execf;
    		if (!(state.disc.sp = sfstropen()))
    			bad("out of space [discipline string stream]\n", NiL, NiL, 0, 0);
    		preg.re_disc = &state.disc.disc;
    #endif
    		if (test & TEST_CATCH)
    		{
    			signal(SIGALRM, gotcha);
    			signal(SIGBUS, gotcha);
    			signal(SIGSEGV, gotcha);
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    		}
    
    	case 11: /* word */
    		c.aclass(&p.To)
    
    		o1 = uint32(c.instoffset)
    		if p.To.Sym != nil {
    			// This case happens with words generated
    			// in the PC stream as part of the literal pool (c.pool).
    			rel := obj.Addrel(c.cursym)
    
    			rel.Off = int32(c.pc)
    			rel.Siz = 4
    			rel.Sym = p.To.Sym
    			rel.Add = p.To.Offset
    
    			if c.ctxt.Flag_shared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

        result = Maps.fromProperties(testProp);
        assertEquals("true", result.get("first"));
        assertEquals("null", result.get("second"));
        assertEquals(2, result.size());
    
        // Now test values loaded from a stream.
        String props = "test\n second = 2\n Third item :   a short  phrase   ";
    
        testProp.load(new StringReader(props));
    
        result = Maps.fromProperties(testProp);
        assertEquals(4, result.size());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    			if !ldr.AttrReachable(s) {
    				continue
    			}
    			if ldr.SymValue(s) >= int64(eaddr) {
    				break
    			}
    
    			// Compute external relocations on the go, and pass to Xcoffreloc1 to stream out.
    			// Relocation must be ordered by address, so create a list of sorted indices.
    			relocs := ldr.Relocs(s)
    			sorted := make([]int, relocs.Count())
    			for i := 0; i < relocs.Count(); i++ {
    				sorted[i] = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    func TestServeContentHeadersWithError(t *testing.T) {
    	contents := []byte("content")
    	ts := newClientServerTest(t, http1Mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Content-Type", "application/octet-stream")
    		w.Header().Set("Content-Length", strconv.Itoa(len(contents)))
    		w.Header().Set("Content-Encoding", "gzip")
    		w.Header().Set("Etag", `"abcdefgh"`)
    		w.Header().Set("Last-Modified", "Wed, 21 Oct 2015 07:28:00 GMT")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			testCheckNoMoreResults(t, w)
    		})
    	}
    }
    
    // RunWatchSemanticInitialEventsExtended checks if the bookmark event
    // marking the end of the list stream contains the global RV.
    //
    // note that this scenario differs from the one in RunWatchSemantics
    // by adding the pod to a different ns to advance the global RV
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top