Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,087 for Krause (0.29 sec)

  1. internal/s3select/parquet/errors.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package parquet
    
    type s3Error struct {
    	code       string
    	message    string
    	statusCode int
    	cause      error
    }
    
    func (err *s3Error) Cause() error {
    	return err.cause
    }
    
    func (err *s3Error) ErrorCode() string {
    	return err.code
    }
    
    func (err *s3Error) ErrorMessage() string {
    	return err.message
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  2. docs_src/app_testing/app_b/main.py

        if x_token != fake_secret_token:
            raise HTTPException(status_code=400, detail="Invalid X-Token header")
        if item_id not in fake_db:
            raise HTTPException(status_code=404, detail="Item not found")
        return fake_db[item_id]
    
    
    @app.post("/items/", response_model=Item)
    async def create_item(item: Item, x_token: str = Header()):
        if x_token != fake_secret_token:
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 09 14:44:08 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java

        }
    
        /**
         * @param cause a cause
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(Throwable cause) {
            super(null, cause, null);
        }
    
        /**
         * @param message a message
         * @param cause a cause
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/RemovalNotification.java

        return new RemovalNotification<>(key, value, cause);
      }
    
      private RemovalNotification(@CheckForNull K key, @CheckForNull V value, RemovalCause cause) {
        super(key, value);
        this.cause = checkNotNull(cause);
      }
    
      /** Returns the cause for which the entry was removed. */
      public RemovalCause getCause() {
        return cause;
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 01 20:46:24 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/cache/AbstractLoadingCacheTest.java

        assertThat(expected).hasCauseThat().isEqualTo(cause);
    
        Object newValue = new Object();
        valueRef.set(newValue);
        assertSame(newValue, cache.getUnchecked(new Object()));
      }
    
      public void testGetUnchecked_unchecked() {
        final RuntimeException cause = new RuntimeException();
        final AtomicReference<Object> valueRef = new AtomicReference<>();
        LoadingCache<Object, Object> cache =
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

            super(message, cause);
    
            this.project = project;
            pluginGroupId = plugin.getGroupId();
            pluginArtifactId = plugin.getArtifactId();
            pluginVersion = plugin.getVersion();
        }
    
        public PluginManagerException(Plugin plugin, String message, Throwable cause) {
            super(message, cause);
    
            pluginGroupId = plugin.getGroupId();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/SAXRuntimeException.java

         *
         * @param cause
         *            原因となった例外
         */
        public SAXRuntimeException(final SAXException cause) {
            super("ECL0054", asArray(createMessage(cause)), cause);
        }
    
        /**
         * メッセージを作成します。
         *
         * @param cause
         *            原因
         * @return メッセージ
         */
        protected static String createMessage(final SAXException cause) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/ThrowablesTest.java

        assertSame(cause, Throwables.getRootCause(exception));
      }
    
      public void testGetRootCause_Loop() {
        Exception cause = new Exception();
        Exception exception = new Exception(cause);
        cause.initCause(exception);
        try {
          Throwables.getRootCause(cause);
          fail("Should have throw IAE");
        } catch (IllegalArgumentException expected) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/ThrowablesTest.java

        assertSame(cause, Throwables.getRootCause(exception));
      }
    
      public void testGetRootCause_Loop() {
        Exception cause = new Exception();
        Exception exception = new Exception(cause);
        cause.initCause(exception);
        try {
          Throwables.getRootCause(cause);
          fail("Should have throw IAE");
        } catch (IllegalArgumentException expected) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  10. common/config/license-lint.yml

    unrestricted_licenses:
      - Apache-2.0
      - CC-BY-3.0
      - ISC
      - AFL-2.1
      - AFL-3.0
      - Artistic-1.0
      - Artistic-2.0
      - Apache-1.1
      - BSD-1-Clause
      - BSD-2-Clause
      - BSD-3-Clause
      - 0BSD
      - FTL
      - LPL-1.02
      - MS-PL
      - MIT
      - NCSA
      - OpenSSL
      - PHP-3.0
      - TCP-wrappers
      - W3C
      - Xnet
      - Zlib
    
    reciprocal_licenses:
      - CC0-1.0
      - APSL-2.0
      - CDDL-1.0
      - CDDL-1.1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
Back to top