Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for pubs (0.04 sec)

  1. src/debug/buildinfo/buildinfo.go

    	// On some platforms, the blob will be in its own section, and DataStart
    	// returns the address of that section. On others, it's somewhere in the
    	// data segment; the linker puts it near the beginning.
    	// See cmd/link/internal/ld.Link.buildinfo.
    	dataAddr, dataSize := x.DataStart()
    	if dataSize == 0 {
    		return "", "", errNotGoExe
    	}
    	data, err := x.ReadData(dataAddr, dataSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    While the former are usually checked into source control, the latter are transient files Gradle uses to support features like incremental builds.
    
    The anatomy of a typical project root directory looks as follows:
    
    [listing,subs=+macros]
    ----
    ├── .gradle // <1>
    │   ├── 4.8 // <2>
    │   ├── 4.9 // <2>
    │   └── ⋮
    ├── build   // <3>
    ├── gradle
    │   └── wrapper // <4>
    ├── gradle.properties   // <5>
    ├── gradlew // <6>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
            return None
        else:
            return products[product_id]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The directory `buildSrc` is treated as an <<composite_builds.adoc#composite_build_intro,included build>>. Upon discovery of the directory, Gradle automatically compiles this code and puts it in the classpath of your build script.
    For multi-project builds there can be only one `buildSrc` directory, which has to sit in the root project directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. docs/em/docs/python-types.md

    ```Python
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    🤙 👉 📋 🔢:
    
    ```
    John Doe
    ```
    
    🔢 🔨 📄:
    
    * ✊ `first_name` &amp; `last_name`.
    * 🗜 🥇 🔤 🔠 1️⃣ ↖ 💼 ⏮️ `title()`.
    * <abbr title="Puts them together, as one. With the contents of one after the other.">🔢</abbr> 👫 ⏮️ 🚀 🖕.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### ✍ ⚫️
    
    ⚫️ 📶 🙅 📋.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    		},
    		{
    			// Verifies that HoldApplicationUntilProxyStarts in MeshConfig puts sidecar in front
    			in:   "hello.yaml",
    			want: "hello.proxyHoldsApplication.yaml.injected",
    			setFlags: []string{
    				`values.global.proxy.holdApplicationUntilProxyStarts=true`,
    			},
    		},
    		{
    			// Verifies that HoldApplicationUntilProxyStarts in MeshConfig puts sidecar in front
    			in:   "hello-probes.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

        )
    
        taskFaker.advanceUntil(540.ms)
        assertEvents(
          "plan 2 TCP connect canceled",
        )
    
        taskFaker.assertNoMoreTasks()
      }
    
      /**
       * This test puts several connections in flight that all fail at approximately the same time. It
       * confirms the fast fallback implements these invariants:
       *
       *  * if there's no TCP connect in flight, start one.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    // runqput tries to put g on the local runnable queue.
    // If next is false, runqput adds g to the tail of the runnable queue.
    // If next is true, runqput puts g in the pp.runnext slot.
    // If the run queue is full, runnext puts g on the global queue.
    // Executed only by the owner P.
    func runqput(pp *p, gp *g, next bool) {
    	if !haveSysmon && next {
    		// A runnext goroutine shares the same time slice as the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. docs/en/docs/python-types.md

    Calling this program outputs:
    
    ```
    John Doe
    ```
    
    The function does the following:
    
    * Takes a `first_name` and `last_name`.
    * Converts the first letter of each one to upper case with `title()`.
    * <abbr title="Puts them together, as one. With the contents of one after the other.">Concatenates</abbr> them with a space in the middle.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Edit it
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    * Ensure traffic between mesh workloads is securely encrypted with an Istio identity.
    * Be lightweight enough to not limit adoption.
      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top