Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for Auditor (0.2 sec)

  1. docs/en/docs/tutorial/body-nested-models.md

        ```Python hl_lines="15"
        {!> ../../../docs_src/body_nested_models/tutorial008.py!}
        ```
    
    ## Editor support everywhere
    
    And you get editor support everywhere.
    
    Even for items inside of lists:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    You couldn't get this kind of editor support if you were working directly with `dict` instead of Pydantic models.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorReportSeverity.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.kotlin.dsl;
    
    
    /**
     * Severity of an editor report.
     *
     * @since 6.0
     */
    public enum EditorReportSeverity {
        WARNING,
        ERROR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 782 bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons-test.sh

        return 1
      fi
    
      # Finally, the users configuration will not be respected.
      echo_blue "Changes the user makes should be overwritten by kube-addon-manager"
      EDITOR="sed -i 's/50m/600m/'" kubectl edit limits/limits -n ${TEST_NS}
      if kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "50m"; then
        error "failed to edit resource with sed -- test is broken"
        return 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorReport.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.kotlin.dsl;
    
    import javax.annotation.Nullable;
    
    
    /**
     * Report to the editor.
     *
     * @since 6.0
     */
    public interface EditorReport {
    
        EditorReportSeverity getSeverity();
    
        String getMessage();
    
        @Nullable
        EditorPosition getPosition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 899 bytes
    - Viewed (0)
  5. .gitignore

    /test.out
    /test/garbage/*.out
    /test/pass.out
    /test/run.out
    /test/times.out
    
    # This file includes artifacts of Go build that should not be checked in.
    # For files created by specific development environment (e.g. editor),
    # use alternative ways to exclude files from git.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorPosition.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.kotlin.dsl;
    
    
    /**
     * Position in the editor.
     *
     * @since 6.0
     */
    public interface EditorPosition {
    
        int getLine();
    
        int getColumn();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 794 bytes
    - Viewed (0)
  7. tests/integration/GKE.md

    `[PROJECT_NUMBER]******@****.***`) includes the following roles:
    
    * **Kubernetes Engine Admin** (`roles/container.admin`)
    * **Editor** (`roles/editor`, included by default)
    
    ## Step 2: Set up a cluster
    
    The following steps are automated with the script `create_cluster_gke.sh` located in this directory. To create a cluster with the script, simply run:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  8. pkg/apis/discovery/types.go

    	//   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    	//   * 'kubernetes.io/ws'  - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455
    	//   * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455
    	//
    	// * Other protocols should use implementation-defined prefixed names such as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/runtime/internal/sys/consts.go

    // of a frame (just above the architectural stack pointer).
    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = goarch.MinFrameSize
    
    // StackAlign is the required alignment of the SP register.
    // The stack must be at least word aligned, but some architectures require more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    Kubernetes-defined prefixed names:\n  * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n  * 'kubernetes.io/ws'  - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455\n  * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455\n\n* Other protocols should use implementation-defined prefixed names such as mycompany.com/my-custom-protocol.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top