Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hashContent (0.15 sec)

  1. src/net/http/filetransport.go

    // body. Once writes begin or finish() is called, the response is sent
    // on ch.
    type populateResponse struct {
    	res          *Response
    	ch           chan *Response
    	wroteHeader  bool
    	hasContent   bool
    	sentResponse bool
    	pw           *io.PipeWriter
    }
    
    func (pr *populateResponse) finish() {
    	if !pr.wroteHeader {
    		pr.WriteHeader(500)
    	}
    	if !pr.sentResponse {
    		pr.sendResponse()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                }
            }
    
            @Override
            void flushOutput() {
                if (shouldForward()) {
                    boolean hasContent = !bufferedLogs.isEmpty();
                    if (!hasForeground() || statusHasChanged()) {
                        if (needHeaderSeparator || hasContent) {
                            listener.onOutput(spacerLine(lastUpdateTime, category));
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

         */
        protected static boolean visitAll(FileSystemMirroringFileTree tree) {
            final MutableBoolean hasContent = new MutableBoolean();
            tree.visit(new FileVisitor() {
                @Override
                public void visitDir(FileVisitDetails dirDetails) {
                    dirDetails.getFile();
                    hasContent.set(true);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            return file;
        }
    
        private boolean probeCaseSensitive(File file, String content) {
            try {
                File upperCased = new File(file.getPath().toUpperCase(Locale.ROOT));
                return !hasContent(upperCased, content);
            } catch (IOException e) {
                // not fully accurate but a sensible fallback
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top