Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for death (0.17 sec)

  1. guava/src/com/google/common/base/Throwables.java

          Method langAccess = sharedSecrets.getMethod("getJavaLangAccess");
          return langAccess.invoke(null);
        } catch (ThreadDeath death) {
          throw death;
        } catch (Throwable t) {
          /*
           * This is not one of AppEngine's allowed classes, so even in Sun JDKs, this can fail with
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Throwables.java

          Method langAccess = sharedSecrets.getMethod("getJavaLangAccess");
          return langAccess.invoke(null);
        } catch (ThreadDeath death) {
          throw death;
        } catch (Throwable t) {
          /*
           * This is not one of AppEngine's allowed classes, so even in Sun JDKs, this can fail with
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  3. CREDITS

    *  and all other commercial damages or losses, even if such party      *
    *  shall have been informed of the possibility of such damages. This   *
    *  limitation of liability shall not apply to liability for death or   *
    *  personal injury resulting from such party's negligence to the       *
    *  extent applicable law prohibits such limitation. Some               *
    *  jurisdictions do not allow the exclusion or limitation of           *
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

            this.createdTime = value;
        }
    
        public Integer getDepth() {
            checkSpecifiedProperty("depth");
            return depth;
        }
    
        public void setDepth(Integer value) {
            registerModifiedProperty("depth");
            this.depth = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

            this.createdTime = value;
        }
    
        public Integer getDepth() {
            checkSpecifiedProperty("depth");
            return depth;
        }
    
        public void setDepth(Integer value) {
            registerModifiedProperty("depth");
            this.depth = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  6. internal/logger/logonce.go

    func unwrapErrs(err error) (leafErr error) {
    	uerr := errors.Unwrap(err)
    	depth := 1
    	for uerr != nil {
    		// Save the current `uerr`
    		leafErr = uerr
    		// continue to look for leaf errors underneath
    		uerr = errors.Unwrap(leafErr)
    		depth++
    		if depth == unwrapErrsDepth {
    			// If we have reached enough depth we
    			// do not further recurse down, this
    			// is done to avoid any unnecessary
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebConfigCQ.java

        public void setDepth_Equal(Integer depth) {
            setDepth_Term(depth, null);
        }
    
        public void setDepth_Equal(Integer depth, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDepth_Term(depth, opLambda);
        }
    
        public void setDepth_Term(Integer depth) {
            setDepth_Term(depth, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 172.1K bytes
    - Viewed (0)
  8. .github/workflows/build.yml

        permissions:
          checks: write # for mikepenz/action-junit-report
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
    Others
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

        public void setDepth_Equal(Integer depth) {
            setDepth_Term(depth, null);
        }
    
        public void setDepth_Equal(Integer depth, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDepth_Term(depth, opLambda);
        }
    
        public void setDepth_Term(Integer depth) {
            setDepth_Term(depth, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 165.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    wConfig.setBoost(1.0f);
                    wConfig.setCreatedBy(username);
                    wConfig.setCreatedTime(now);
                    if (form.depth != null) {
                        wConfig.setDepth(form.depth);
                    }
                    wConfig.setExcludedDocUrls(getDefaultString("default.config.web.excludedDocUrls", StringUtil.EMPTY));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top