Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 66 for areas (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. CHANGELOG/CHANGELOG-1.13.md

    - The `node.status.volumes.attached.devicePath` field is deprecated for CSI volumes and will not be set in future releases...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Click Count (0)
  2. docs/es/docs/advanced/events.md

    Puedes leer más sobre los manejadores `lifespan` de Starlette en [la documentación de `Lifespan` de Starlette](https://www.starlette.dev/lifespan/).
    
    Incluyendo cómo manejar el estado de lifespan que puede ser usado en otras áreas de tu código.
    
    ///
    
    ## Sub Aplicaciones { #sub-applications }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  3. CHANGELOG/CHANGELOG-1.15.md

    #### Extensibility
    
    - The community has been asking for continuing support of extensibility, so this cycle features more work around CRDs and API Machinery. Most of the enhancements in this cycle were from SIG API Machinery and related areas.
    
    ### Extensibility around core Kubernetes APIs
    
    #### CustomResourceDefinitions Pruning
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 278.9K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.11.md

    ### SIG Node
    
    SIG-Node advanced several features and made incremental improvements in a few key topic areas this release.
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

        end
    
        operation ->> client: Devolver response al cliente
        Note over client,operation: El response ya fue enviado, no se puede cambiar
        opt Tasks
            operation -->> tasks: Enviar tareas en background
        end
        opt Lanzar otra excepción
            tasks -->> tasks: Manejar excepciones en el código de la tarea en background
        end
    ```
    
    /// info | Información
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  6. tests/test_computed_fields.py

                                "area": {
                                    "type": "integer",
                                    "title": "Area",
                                    "readOnly": True,
                                },
                            },
                            "type": "object",
                            "required": ["width", "length", "area"],
                            "title": "Rectangle",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/resources/changelog-schema.json

            },
            "notable": {
              "type": "boolean"
            }
          },
          "required": [
            "area",
            "title",
            "details",
            "impact"
          ],
          "additionalProperties": false
        },
        "Deprecation": {
          "properties": {
            "area": {
              "$ref": "#/definitions/breakingArea"
            },
            "title": {
              "type": "string",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 5K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

        }
    
        public static class Breaking {
            private String area;
            private String title;
            private String details;
            private String impact;
            private boolean notable;
    
            public String getArea() {
                return area;
            }
    
            public void setArea(String area) {
                this.area = area;
            }
    
            public String getTitle() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  9. docs/es/docs/tutorial/background-tasks.md

    # Tareas en Segundo Plano { #background-tasks }
    
    Puedes definir tareas en segundo plano para que se ejecuten *después* de devolver un response.
    
    Esto es útil para operaciones que necesitan ocurrir después de un request, pero para las que el cliente realmente no necesita esperar a que la operación termine antes de recibir el response.
    
    Esto incluye, por ejemplo:
    
    * Notificaciones por email enviadas después de realizar una acción:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 5K bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/HeadersChallengesTest.kt

            .add("WWW-Authenticate: Basic realm=\"protected area\"")
            .build()
        assertThat(headers.parseChallenges("WWW-Authenticate"))
          .isEqualTo(listOf(Challenge("Basic", mapOf("realm" to "protected area"))))
      }
    
      @Test fun basicChallengeWithCharset() {
        val headers =
          Headers
            .Builder()
            .add("WWW-Authenticate: Basic realm=\"protected area\", charset=\"UTF-8\"")
            .build()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 16.8K bytes
    - Click Count (0)
Back to Top