Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 415 for mirror (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.34.md

    - Simplied validation error message for invalid fields by removing redundant field name. ([#132513](https://github.com/kubernetes/kubernetes/pull/132513), [@xiaoweim](https://github.com/xiaoweim)) [SIG API Machinery, Apps, Auth, Node and Scheduling]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.32.md

      If you specify the kubelet command line flag `--runonce`, this is an error.
      Setting `runOnce` in a kubelet configuration file is also an error, and specifying any
      value for that configuration option is now deprecated. ([#126336](https://github.com/kubernetes/kubernetes/pull/126336), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Node and Scalability]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.33.md

    
    **Affected Versions**:
      - kube-apiserver v1.32.0 - v1.32.5
      - kube-apiserver v1.33.0 - v1.33.1
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/RequestParamTest.java

        }
    
        // Sanity: Enum.valueOf(Class, String) behaves identically to RequestParam.valueOf(String)
        @Test
        @DisplayName("Enum.valueOf mirrors RequestParam.valueOf for valid names")
        void enumValueOfParity() {
            for (RequestParam rp : RequestParam.values()) {
                assertSame(rp, Enum.valueOf(RequestParam.class, rp.name()));
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

    author_link: https://bolha.us/@dunossauro link: https://fastapidozero.dunossauro.com/ title: FastAPI do ZERO - author: Jessica Temporal author_link: https://jtemporal.com/socials link: https://jtemporal.com/dicas-para-migrar-de-flask-para-fastapi-e-vice-versa/ title: Dicas para migrar uma aplicação de Flask para FastAPI e vice-versa Russian: - author: Troy Köhler author_link: https://www.linkedin.com/in/trkohler/ link: https://trkohler.com/fast-api-introduction-to-framework title: 'FastAPI: знакомимся...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 23K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java

        }
    
        /**
         * Test constructor DcerpcException(int error) with an unknown error code.
         */
        @Test
        void testConstructorWithError_unknownCode() {
            int errorCode = 0x12345678; // An arbitrary unknown error code
            DcerpcException exception = new DcerpcException(errorCode);
    
            assertEquals(errorCode, exception.getErrorCode(), "Error code should match the input.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java

                    .setLevel(Level.ERROR)
                    .setMessage(new SimpleMessage("test error message"))
                    .build();
    
            LogEvent result = policy.rewrite(event);
    
            assertNotSame(event, result);
            assertEquals(Level.WARN, result.getLevel());
            assertEquals("test.logger.sublogger", result.getLoggerName());
            assertEquals("test error message", result.getMessage().getFormattedMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/DcerpcException.java

        }
    
        /** The DCERPC error code */
        private int error;
        /** The root cause exception */
        private Throwable rootCause;
    
        DcerpcException(final int error) {
            super(getMessageByDcerpcError(error));
            this.error = error;
        }
    
        /**
         * Constructs a DcerpcException with the specified message
         *
         * @param msg the error message
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            DataStoreException withIOException = new DataStoreException("IO Error", new java.io.IOException("File not found"));
            DataStoreException withNPE = new DataStoreException("NPE Error", new NullPointerException("Null value"));
            DataStoreException withCustom = new DataStoreException("Custom Error", new FessSystemException("System error"));
    
            assertTrue(withIOException.getCause() instanceof java.io.IOException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/RuntimeCIFSExceptionTest.java

                assertEquals(runtimeException, exception.getCause());
            });
    
            // Test with error
            Error error = new OutOfMemoryError("Out of memory");
            assertDoesNotThrow(() -> {
                RuntimeCIFSException exception = new RuntimeCIFSException(error);
                assertEquals(error, exception.getCause());
            });
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top