Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for denial (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.32.md

        - [Container Images](#container-images-6)
      - [Changelog since v1.32.1](#changelog-since-v1321)
      - [Important Security Information](#important-security-information-2)
        - [CVE-2025-0426: Node Denial of Service via Kubelet Checkpoint API](#cve-2025-0426-node-denial-of-service-via-kubelet-checkpoint-api)
      - [Changes by Kind](#changes-by-kind-6)
        - [Feature](#feature-3)
        - [Bug or Regression](#bug-or-regression-6)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

        - [Container Images](#container-images-6)
      - [Changelog since v1.31.5](#changelog-since-v1315)
      - [Important Security Information](#important-security-information-1)
        - [CVE-2025-0426: Node Denial of Service via Kubelet Checkpoint API](#cve-2025-0426-node-denial-of-service-via-kubelet-checkpoint-api)
      - [Changes by Kind](#changes-by-kind-6)
        - [Feature](#feature-3)
        - [Bug or Regression](#bug-or-regression-6)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SMBProtocolDowngradeException.java

         * @param cause the cause of the exception
         */
        public SMBProtocolDowngradeException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a new SMBProtocolDowngradeException with the specified detail message.
         *
         * @param message the detail message
         */
        public SMBProtocolDowngradeException(final String message) {
            super(message);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. docs/id/docs/tutorial/path-params.md

    Sebaliknya, path `/users/{user_id}` juga akan sesuai dengan `/users/me`, "menganggap" menerima parameter `user_id` dengan nilai `"me"`.
    
    Serupa, anda juga tidak bisa mendefinisikan operasi path:
    
    {* ../../docs_src/path_params/tutorial003b.py hl[6,11] *}
    
    Path pertama akan selalu digunakan karena path sesuai dengan yang pertama.
    
    ## Nilai terdefinisi
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. tests/migrate_test.go

    	AssertEqual(t, err, nil)
    
    	defVal, ok := columnType.DefaultValue()
    	AssertEqual(t, defVal, "null")
    	AssertEqual(t, ok, true)
    
    	columnType2, err := findColumnType(tableName, "active")
    	AssertEqual(t, err, nil)
    
    	defVal, ok = columnType2.DefaultValue()
    	bv, _ := strconv.ParseBool(defVal)
    	AssertEqual(t, bv, false)
    	AssertEqual(t, ok, true)
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 65.2K bytes
    - Viewed (0)
  6. docs/id/docs/index.md

        * Semua ini juga sama untuk objek json yang bersarang mendalam.
    * Konversi dari dan ke JSON secara otomatis.
    * Dokumentasi segalanya dengan OpenAPI, dengan menggunakan:
        * Sistem dokumentasi interaktif.
        * Sistem otomatis penghasil kode, untuk banyak bahasa.
    * Menyediakan 2 tampilan dokumentasi web interaktif dengan langsung.
    
    ---
    
    Kita baru menyentuh permukaannya saja, tetapi anda sudah mulai paham gambaran besar cara kerjanya.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/RuntimeCIFSException.java

        /**
         * Constructs a runtime CIFS exception with no detail message.
         */
        public RuntimeCIFSException() {
        }
    
        /**
         * Constructs a runtime CIFS exception with the specified detail message and cause.
         *
         * @param message the detail message
         * @param cause the cause of this exception
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/CIFSUnsupportedCryptoException.java

        /**
         * Constructs a CIFS unsupported crypto exception with no detail message.
         */
        public CIFSUnsupportedCryptoException() {
        }
    
        /**
         * Constructs a CIFS unsupported crypto exception with the specified detail message and cause.
         *
         * @param message the detail message
         * @param cause the cause of this exception
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/transport/TransportException.java

        private static final long serialVersionUID = 3743631204022885618L;
    
        /**
         * Constructs a new TransportException with no detail message.
         */
        public TransportException() {
        }
    
        /**
         * Constructs a new TransportException with the specified detail message.
         * @param msg the detail message
         */
        public TransportException(final String msg) {
            super(msg);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/transport/TransportException.java

        private Throwable rootCause;
    
        /**
         * Constructs a new TransportException with no detail message.
         */
        public TransportException() {
        }
    
        /**
         * Constructs a new TransportException with the specified detail message.
         *
         * @param msg the detail message
         */
        public TransportException(final String msg) {
            super(msg);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top