Search Options

Results per page
Sort
Preferred Languages
Advance

Results 721 - 730 of 2,283 for else (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            if (isByteStream) {
                inputStream.mark(0);
                tempFile = null;
                contentLength = ((ByteArrayInputStream) inputStream).available();
            } else {
                try {
                    tempFile = File.createTempFile("tikaExtractor-", ".out");
                } catch (final IOException e) {
                    throw new ExtractException("Could not create a temp file.", e);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

            val performanceProjectName = "performance"
    
            val taskName = if (performanceTestSpec.type == PerformanceTestType.flakinessDetection)
                "performanceTestFlakinessReport"
            else
                "performanceTestReport"
    
            artifactRules = """
    testing/$performanceProjectName/build/performance-test-results.zip
    """
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Sep 10 13:15:00 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. docs_src/python_types/tutorial009.py

    from typing import Optional
    
    
    def say_hi(name: Optional[str] = None):
        if name is not None:
            print(f"Hey {name}!")
        else:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 12 21:44:23 UTC 2020
    - 164 bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    						write([]byte(err.Error()))
    					} else {
    						write([]byte{0})
    					}
    					return
    				default:
    				}
    
    				// Response not ready, write a filler byte.
    				write([]byte{32})
    				if canWrite {
    					w.(http.Flusher).Flush()
    				}
    			case err := <-doneCh:
    				if err != nil {
    					write([]byte{1})
    					write([]byte(err.Error()))
    				} else {
    					write([]byte{0})
    				}
    				return
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 14 17:11:51 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                    this.supportsEncryption = true;
                }
                else if ( ncr.getContextType() == EncryptionNegotiateContext.NEGO_CTX_ENC_TYPE ) {
                    log.error("Multiple encryption negotiate contexts");
                    return false;
                }
                else if ( !foundPreauth && ncr.getContextType() == PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  6. cmd/http-stats.go

    			s3InputBytes: uint64(n),
    		}
    	} else {
    		stats.s3InputBytes += uint64(n)
    	}
    	s.stats[bucket] = stats
    }
    
    // Increase S3 total output bytes for input bucket
    func (s *bucketConnStats) incS3OutputBytes(bucket string, n int64) {
    	s.Lock()
    	defer s.Unlock()
    	stats, ok := s.stats[bucket]
    	if !ok {
    		stats = &bucketS3RXTX{
    			s3OutputBytes: uint64(n),
    		}
    	} else {
    		stats.s3OutputBytes += uint64(n)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                        final List<String> l;
                        if (readingTokens == null) {
                            l = readingConverter.convert(word, field, lang);
                        } else {
                            final String reading = readingTokens.get(i).getTerm();
                            l = contentsReadingConverter.convert(reading, field, lang);
                        }
                        l.add(word);
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/SingletonImmutableBiMap.java

      public ImmutableBiMap<V, K> inverse() {
        if (inverse != null) {
          return inverse;
        } else {
          // racy single-check idiom
          ImmutableBiMap<V, K> result = lazyInverse;
          if (result == null) {
            return lazyInverse = new SingletonImmutableBiMap<>(singleValue, singleKey, this);
          } else {
            return result;
          }
        }
      }
    
      // redeclare to help optimizers with b/310253115
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    		return
    	}
    	file, err := zipindex.FindSerialized(zipInfo, object)
    	if err != nil {
    		if err == io.EOF {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNoSuchKey), r.URL)
    		} else {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		}
    		return
    	}
    
    	// New object info
    	fileObjInfo := ObjectInfo{
    		Bucket:      bucket,
    		Name:        object,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                        final CharMappingItem newItem = updater.write(item);
                        if (newItem != null) {
                            itemList.add(newItem);
                        } else {
                            id--;
                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final CharMappingItem item = updater.commit();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top