Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 737 for pieces (0.16 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProgressEvent.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * Some information about a piece of work of a long running operation.
     * @since 1.0-milestone-3
     */
    public interface ProgressEvent {
        /**
         * A description of the current piece of work.
         *
         * @return The description.
         * @since 1.0-milestone-3
         */
        String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 950 bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		t.Errorf("unexpected number of local ready endpoints, expected 0 but got: %d", len(localReadyEndpoints))
    	}
    }
    
    // TODO(thockin): add *more* tests for syncProxyRules() or break it down further and test the pieces.
    
    // This test ensures that the iptables proxier supports translating Endpoints to
    // iptables output when internalTrafficPolicy is specified
    func TestInternalTrafficPolicy(t *testing.T) {
    	type endpoint struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/WebPlatformUrlTestData.kt

                else -> unescape(base)
              }
    
            while (i < parts.size) {
              val piece = parts[i]
              if (piece.startsWith("#")) {
                i++
                continue
              }
              val nameAndValue = piece.split(Regex(":"), 2).toTypedArray()
              element[nameAndValue[0]] = unescape(nameAndValue[1])
              i++
            }
    
            list += element
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/response-directly.md

    Pero puedes devolver una `JSONResponse` directamente de tu *operación de path*.
    
    Esto puede ser útil, por ejemplo, para devolver cookies o headers personalizados.
    
    ## Devolver una `Response`
    
    De hecho, puedes devolver cualquier `Response` o cualquier subclase de la misma.
    
    !!! tip "Consejo"
        `JSONResponse` en sí misma es una subclase de `Response`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/response-change-status-code.md

    Pero aún quieres poder filtrar y convertir los datos que retornas con un `response_model`.
    
    Para esos casos, puedes usar un parámetro `Response`.
    
    ## Usar un parámetro `Response`
    
    Puedes declarar un parámetro de tipo `Response` en tu *función de la operación de path* (como puedes hacer para cookies y headers).
    
    Y luego puedes establecer el `status_code` en ese objeto de respuesta *temporal*.
    
    ```Python hl_lines="1  9  12"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 06 19:56:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	// Guaranteed to be non-empty.
    	Display []string
    
    	// Places holds the list of stack slots where this source occurs.
    	// In particular, if [a,b] is an element in Places,
    	// StackSet.Stacks[a].Sources[b] points to this source.
    	//
    	// No stack will be referenced twice in the Places slice for a given
    	// StackSource. In case of recursion, Places will contain the outer-most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. docs/de/docs/python-types.md

        ```Python hl_lines="1  4"
        {!> ../../../docs_src/python_types/tutorial008.py!}
        ```
    
    Das bedeutet:
    
    * Die Variable `prices` ist ein `dict`:
        * Die Schlüssel dieses `dict` sind vom Typ `str` (z. B. die Namen der einzelnen Artikel).
        * Die Werte dieses `dict` sind vom Typ `float` (z. B. der Preis jedes Artikels).
    
    #### <abbr title="Union – Verbund, Einheit‚ Vereinigung: Eines von Mehreren">Union</abbr>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        pivots = urlPivots();
    
        // Get places where pivots occur.
        let places = [];
        for (let pivot of pivots) {
          const src = stacks.Sources[pivot];
          for (let p of src.Places) {
            places.push(p);
          }
        }
    
        const width = chart.clientWidth;
        elems.clear();
        actionTarget = null;
        const [pos, neg] = totalValue(places);
        const total = pos + neg;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. docs_src/python_types/tutorial008_py39.py

    def process_items(prices: dict[str, float]):
        for item_name, item_price in prices.items():
            print(item_name)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 16 14:44:08 UTC 2022
    - 145 bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/schema-extra-example.md

    Und dann basierte das neue OpenAPI 3.1.0 auf der neuesten Version (JSON Schema 2020-12), die dieses neue Feld `examples` enthielt.
    
    Und jetzt hat dieses neue `examples`-Feld Vorrang vor dem alten (und benutzerdefinierten) `example`-Feld, im Singular, das jetzt deprecated ist.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:53 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top