Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,067 for write1 (0.46 sec)

  1. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

                TestUtil.checksumService
            ).writeTo(writer, spec)
        }
    
        def "fails to write file for component with no variants"() {
            def writer = new StringWriter()
            def component = Stub(TestComponent)
            def publication = publication(component, id)
    
            when:
            writeTo(writer, publication, [publication])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                private
                val writer = HtmlReportWriter(hashingStream.writer())
    
                init {
                    executor.submit {
                        Thread.currentThread().contextClassLoader = groovyJsonClassLoader
                        writer.beginHtmlReport()
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    //
    // If the writer gets ahead of the reader, so that the buffer fills,
    // future writes are discarded and replaced in the output stream by an
    // overflow entry, which has size 2+hdrsize+1, time set to the time of
    // the first discarded write, a header of all zeroed words, and a "stack"
    // containing one word, the number of discarded writes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. internal/ringbuffer/ring_buffer.go

    	r.isFull = false
    	return b, r.readErr(true)
    }
    
    // Write writes len(p) bytes from p to the underlying buf.
    // It returns the number of bytes written from p (0 <= n <= len(p))
    // and any error encountered that caused the write to stop early.
    // If blocking n < len(p) will be returned only if an error occurred.
    // Write returns a non-nil error if it returns n < len(p).
    // Write will not modify the slice data, even temporarily.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          }
          if (associatedStreamId == 0) {
            writer.headers(outFinished, streamId, requestHeaders)
          } else {
            require(!client) { "client streams shouldn't have associated stream IDs" }
            // HTTP/2 has a PUSH_PROMISE frame.
            writer.pushPromise(associatedStreamId, streamId, requestHeaders)
          }
        }
    
        if (flushHeaders) {
          writer.flush()
        }
    
        return stream
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. cmd/local-locker.go

    		return true, nil
    	}
    	if isWriteLock(lri) {
    		// A write-lock is held, cannot release a read lock
    		return false, fmt.Errorf("RUnlock attempted on a write locked entity: %s", resource)
    	}
    	l.removeEntry(resource, args, &lri)
    	return reply, nil
    }
    
    type lockStats struct {
    	Total  int
    	Writes int
    	Reads  int
    }
    
    func (l *localLocker) stats() lockStats {
    	l.mutex.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/net/tcpsock_test.go

    				if err != nil {
    					t.Error(err)
    					return
    				}
    				buf := make([]byte, x)
    				var n int
    				if writev {
    					var n64 int64
    					n64, err = (&Buffers{buf}).WriteTo(c)
    					n = int(n64)
    				} else {
    					n, err = c.Write(buf)
    				}
    				if n != len(buf) || err != nil {
    					t.Errorf("Write(buf) = %d, %v, want %d, nil", n, err, x)
    				}
    				c.Close()
    			}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/log/log.go

    }
    
    // SetPrefix sets the output prefix for the standard logger.
    func SetPrefix(prefix string) {
    	std.SetPrefix(prefix)
    }
    
    // Writer returns the output destination for the standard logger.
    func Writer() io.Writer {
    	return std.Writer()
    }
    
    // These functions write to the standard logger.
    
    // Print calls Output to print to the standard logger.
    // Arguments are handled in the manner of [fmt.Print].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/strings/replace.go

    		r.root.add(oldnew[i], oldnew[i+1], len(oldnew)-i, r)
    	}
    	return r
    }
    
    type appendSliceWriter []byte
    
    // Write writes to the buffer to satisfy io.Writer.
    func (w *appendSliceWriter) Write(p []byte) (int, error) {
    	*w = append(*w, p...)
    	return len(p), nil
    }
    
    // WriteString writes to the buffer without string->[]byte->string allocations.
    func (w *appendSliceWriter) WriteString(s string) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. internal/ioutil/ioutil.go

    			// we have written the entire stream, return right here.
    			return written, nil
    		}
    
    		if eof {
    			// We reached EOF prematurely but we did not write everything
    			// that we promised that we would write.
    			if totalSize > 0 && written != totalSize {
    				return written, io.ErrUnexpectedEOF
    			}
    			return written, nil
    		}
    	}
    }
    
    // SafeClose safely closes any channel of any type
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top