Search Options

Results per page
Sort
Preferred Languages
Advance

Results 621 - 630 of 2,143 for ELSE (0.03 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                        }
                    }
                    is TaskFailureResult -> {
                        addExecutedTaskPath(taskPath)
                        addFailedTaskPath(taskPath)
                    }
                    else -> {
                    }
                }
            }
        }
    
        private
        fun containsFailedTest(taskPath: String): Boolean {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. internal/logger/target/http/http.go

    	defer func() {
    		if err != nil {
    			if xnet.IsNetworkOrHostDown(err, false) {
    				h.status.Store(statusOffline)
    			}
    			h.failedMessages.Add(int64(payloadCount))
    		} else {
    			h.status.Store(statusOnline)
    		}
    	}()
    
    	ctx, cancel := context.WithTimeout(ctx, timeout)
    	defer cancel()
    
    	req, err := http.NewRequestWithContext(ctx, http.MethodPost,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 11 22:20:42 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Base64Util.java

            if (mod != 0) {
                outData = new char[(num + 1) * 4];
            } else {
                outData = new char[num * 4];
            }
            for (int i = 0; i < num; i++) {
                encode(inData, i * 3, outData, i * 4);
            }
            if (mod == 1) {
                encode2pad(inData, num * 3, outData, num * 4);
            } else if (mod == 2) {
                encode1pad(inData, num * 3, outData, num * 4);
            }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            listOf(PerformanceTestType.per_commit, PerformanceTestType.per_day)
        } else {
            listOf(performanceTestSpec.performanceTestType)
        }
        return performanceTestConfigurations.flatMap { configuration ->
            configuration.groups
                .filter { group ->
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            }
            waitForQueryThreads(q1x, q20);
            if ( q1x.getAnswer() != null ) {
                return q1x.getAnswer();
            }
            else if ( q20.getAnswer() != null ) {
                return q20.getAnswer();
            }
            else {
                throw q1x.getException();
            }
        }
    
    
        private static void waitForQueryThreads ( QueryThread q1x, QueryThread q20 ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  6. cmd/auth-handler.go

    		return authTypeSignedV2
    	} else if isRequestPresignedSignatureV2(r) {
    		return authTypePresignedV2
    	} else if isRequestSignStreamingV4(r) {
    		return authTypeStreamingSigned
    	} else if isRequestSignStreamingTrailerV4(r) {
    		return authTypeStreamingSignedTrailer
    	} else if isRequestUnsignedTrailerV4(r) {
    		return authTypeStreamingUnsignedTrailer
    	} else if isRequestSignatureV4(r) {
    		return authTypeSigned
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

            if (total >= 1024) {
                return toKB(complete) + "/" + toKB(total) + " KB ";
            } else if (total >= 0) {
                return complete + "/" + total + " B ";
            } else if (complete >= 1024) {
                return toKB(complete) + " KB ";
            } else {
                return complete + " B ";
            }
        }
    
        private void pad(StringBuilder buffer, int spaces) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizerFactory.java

                if (settings.getAsList("synonyms", null) != null) {
                    logger.warn("synonyms values are empty.");
                } else if (settings.get("synonyms_path") != null) {
                    logger.warn("synonyms_path[{}] is empty.", settings.get("synonyms_path"));
                } else {
                    logger.debug("No synonym data.");
                }
            }
        }
    
        @Override
        public Tokenizer create() {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

          int positionFloor = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
          int remainder = (int) (numerator - positionFloor * scale);
          if (remainder == 0) {
            return dataset[positionFloor];
          } else {
            double positionFrac = (double) remainder / scale;
            return dataset[positionFloor]
                + positionFrac * (dataset[positionFloor + 1] - dataset[positionFloor]);
          }
        }
      },
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. cmd/metacache-server-pool.go

    			o.Create = false
    			o.ID = mustGetUUID()
    		} else {
    			if c.fileNotFound {
    				// No cache found, no entries found.
    				return entries, io.EOF
    			}
    			if c.status == scanStateError || c.status == scanStateNone {
    				o.ID = ""
    				o.Create = false
    				o.debugln("scan status", c.status, " - waiting a roundtrip to create")
    			} else {
    				// Continue listing
    				o.ID = c.id
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 16:23:16 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top