Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 615 for elseif (0.25 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

                  break
                } else {
                  currentLabelIndex++
                  currentLabelByteIndex = -1
                  expectDot = true
                }
              }
            }
    
            if (compareResult < 0) {
              high = mid - 1
            } else if (compareResult > 0) {
              low = mid + end + 1
            } else {
              // We found a match, but are the lengths equal?
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. cni/test/install_cni.go

    			if op == "add" {
    				t.Logf("PASS: File %v was added to %v", f, tempCNIBinDir)
    				return nil
    			} else if op == "del" {
    				return fmt.Errorf("FAIL: File %v was not removed from %v", f, tempCNIBinDir)
    			}
    		} else {
    			if op == "add" {
    				return fmt.Errorf("FAIL: File %v was not added to %v", f, tempCNIBinDir)
    			} else if op == "del" {
    				t.Logf("PASS: File %v was removed from %v", f, tempCNIBinDir)
    				return nil
    			}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableMap.java

        if (result == null) {
          return null;
        } else {
          return (V) result;
        }
      }
    
      @CheckForNull
      static Object get(
          @CheckForNull Object hashTableObject,
          @Nullable Object[] alternatingKeysAndValues,
          int size,
          int keyOffset,
          @CheckForNull Object key) {
        if (key == null) {
          return null;
        } else if (size == 1) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 15 22:32:14 GMT 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        // updated file
                        addDocument(localParams, dataMap);
                    } else if (getParamValue(localParams, "event.delete", "delete").equals(eventType)) {
                        // deleted file
                        deleteDocument(localParams, dataMap);
                    } else {
                        logger.warn("unknown event: {}, data: {}", eventType, dataMap);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                clickLogBhv.delete(clickLog);
            } else if (e instanceof final FavoriteLog favoriteLog) {
                favoriteLogBhv.delete(favoriteLog);
            } else if (e instanceof final UserInfo userInfo) {
                userInfoBhv.delete(userInfo);
            } else if (e instanceof final SearchLog searchLog) {
                searchLogBhv.delete(searchLog);
            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        public MavenExecutionRequest setRemoteRepositories(List<ArtifactRepository> remoteRepositories) {
            if (remoteRepositories != null) {
                this.remoteRepositories = new ArrayList<>(remoteRepositories);
            } else {
                this.remoteRepositories = null;
            }
    
            return this;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                        is IntersectionTypeConstructor -> typeConstructor.supertypes.flatMapTo(mutableSetOf()) { it.collectLowerBounds() }
                        else -> setOf(this)
                    }
    
                }
                else -> return emptySet()
            }
        }
    
        private fun KotlinType.collectUpperBounds(): Set<KotlinType> {
            when (this) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                return false;
            }
            final String value;
            if (urlStr.startsWith("://")) {
                value = "http" + urlStr;
            } else if (urlStr.startsWith("//")) {
                value = "http:" + urlStr;
            } else {
                value = urlStr;
            }
            try {
                final URL url = new java.net.URL(value);
                final String host = url.getHost();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

                    protocolString != null -> Protocol.get(protocolString)
                    else -> Protocol.HTTP_1_1
                  }
                Platform.get().afterHandshake(sslSocket)
              } else {
                protocol = Protocol.HTTP_1_1
              }
              openClientSockets.remove(raw)
            }
            else -> {
              protocol =
                when {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            is KtFirNamedClassOrObjectSymbol -> firSymbol.fir
            is KtFirPsiJavaClassSymbol -> firSymbol.fir
            is KtFirAnonymousObjectSymbol -> firSymbol.fir
            else -> error(
                "`${this::class.qualifiedName}` needs to be specially handled by the scope provider or is an unknown" +
                        " ${KtSymbolWithDeclarations::class.simpleName} implementation."
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
Back to top