Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for datagram (0.14 sec)

  1. architecture/platforms.md

      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    Gradle is arranged into coarse-grained components called "architecture modules" and "platforms".
    See [ADR4](standards/0004-use-a-platform-architecture.md) for a definition of these terms.
    
    The diagram below shows the current set of architecture modules and platforms:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. settings.gradle.kts

                    throw IllegalArgumentException("Could not locate the generated diagram in $markdownFile")
                }
                val endPos = content.subList(markerPos, content.size).indexOfFirst { it.contains(endDiagram) && !it.contains(startDiagram) }
                if (endPos < 0) {
                    throw IllegalArgumentException("Could not locate the end of the generated diagram in $markdownFile")
                }
                content.subList(0, markerPos)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

        this.withLock {
          if (closed) throw IOException("closed")
          var flags = FLAG_NONE
          if (outFinished) flags = flags or FLAG_END_STREAM
          dataFrame(streamId, flags, source, byteCount)
        }
      }
    
      @Throws(IOException::class)
      fun dataFrame(
        streamId: Int,
        flags: Int,
        buffer: Buffer?,
        byteCount: Int,
      ) {
        frameHeader(
          streamId = streamId,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. architecture/runtimes.md

    - Worker processes. Long-running daemon processes that the Gradle daemon starts to run specific kinds of work, such as compilation or test execution.
    
    The diagram below shows the relationships between the different processes:
    
    ```mermaid
        graph LR
            
            gradle["Gradle CLI client"]
        
            gradlew["Gradlew CLI client"]
        
            subgraph IDE    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		ui.options.UI.PrintErr(err)
    		return
    	}
    	w.Header().Set("Content-Type", "text/html")
    	w.Write(html.Bytes())
    }
    
    // dot generates a web page containing an svg diagram.
    func (ui *webInterface) dot(w http.ResponseWriter, req *http.Request) {
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, nil)
    	if rpt == nil {
    		return // error already reported
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	return &signalInterceptingTestStep{
    		doneCh: make(chan struct{}),
    	}
    }
    
    //	 This test exercises the graceful termination scenario
    //	 described in the following diagram
    //	   - every vertical line is an independent timeline
    //	   - the leftmost vertical line represents the go routine that
    //	     is executing GenericAPIServer.Run method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	return s.RunWithContext(ctx)
    }
    
    // RunWithContext spawns the secure http server. It only returns if ctx is canceled
    // or the secure port cannot be listened on initially.
    // This is the diagram of what contexts/channels/signals are dependent on each other:
    //
    // |                                   ctx
    // |                                    |
    // |           ---------------------------------------------------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This means all the paths in a file tree must have a shared parent directory.
    The following diagram highlights the distinction between file trees and file collections in the typical case of copying files:
    
    image::file-collection-vs-file-tree.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    // The fact that it is a separate list from the main goroutine
    // defer list means that the main goroutine's defers can still
    // be handled non-atomically.
    //
    // In the diagram, dY and dX are meant to be processed when
    // drangefunc would be processed, which is to say the defer order
    // should be d4, d3, dY, dX, d2, d1. To make that happen,
    // when defer processing reaches a d with rangefunc=true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	if fr.frameCache != nil {
    		return
    	}
    	fr.frameCache = &http2frameCache{}
    }
    
    type http2frameCache struct {
    	dataFrame http2DataFrame
    }
    
    func (fc *http2frameCache) getDataFrame() *http2DataFrame {
    	if fc == nil {
    		return &http2DataFrame{}
    	}
    	return &fc.dataFrame
    }
    
    // NewFramer returns a Framer that writes frames to w and reads them from r.
    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