Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 65 of 65 for writelns (0.23 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        TF_Int32Tensor:$flush_millis,
        TF_StrTensor:$filename_suffix
      );
    
      let results = (outs);
    }
    
    def TF_FlushSummaryWriterOp : TF_Op<"FlushSummaryWriter", []> {
      let summary = "Flushes the writer's unwritten events.";
    
      let description = [{
    writer: A handle to the summary writer resource.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    }
    
    // Sorted the same as extraHeader.Write's loop.
    var extraHeaderKeys = [][]byte{
    	[]byte("Content-Type"),
    	[]byte("Connection"),
    	[]byte("Transfer-Encoding"),
    }
    
    var (
    	headerContentLength = []byte("Content-Length: ")
    	headerDate          = []byte("Date: ")
    )
    
    // Write writes the headers described in h to w.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    // ServeConn serves HTTP/2 requests on the provided connection and
    // blocks until the connection is no longer readable.
    //
    // ServeConn starts speaking HTTP/2 assuming that c has not had any
    // reads or writes. It writes its initial settings frame and expects
    // to be able to read the preface and settings frame from the
    // client. If c has a ConnectionState method like a *tls.Conn, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top