Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,027 for Else (0.04 sec)

  1. src/internal/coverage/cfile/testdata/issue59563/repro.go

    	} else if x == 13 {
    		x += 13
    	} else if x == 14 {
    		x += 14
    	} else if x == 15 {
    		x += 15
    	} else if x == 16 {
    		x += 16
    	} else if x == 17 {
    		x += 17
    	} else if x == 18 {
    		x += 18
    	} else if x == 19 {
    		x += 19
    	} else if x == 20 {
    		x += 20
    	} else if x == 21 {
    		x += 21
    	} else if x == 22 {
    		x += 22
    	} else if x == 23 {
    		x += 23
    	} else if x == 24 {
    		x += 24
    	} else if x == 25 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            } else if (event instanceof TransformProgressEvent) {
                transformProgressListeners.getSource().statusChanged(event);
            } else if (event instanceof TestOutputEvent) {
                testOutputProgressListeners.getSource().statusChanged(event);
            } else if (event instanceof BuildPhaseProgressEvent) {
                buildPhaseListeners.getSource().statusChanged(event);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                if (client.existsIndex(index)) {
                    if (client.deleteIndex(index)) {
                        logger.warn("Deleted {}.", index);
                    } else {
                        logger.warn("Failed to delete {}.", index);
                    }
                } else if (logger.isDebugEnabled()) {
                    logger.debug("{} does not exist.", index);
                }
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- range $i, $p := $appContainer.ContainerPorts }}
    {{- if and $p.XDSServer (eq .Protocol "GRPC") }}
              - --xds-grpc-server={{ $p.Port }}
    {{- else if eq .Protocol "GRPC" }}
              - --grpc={{ $p.Port }}
    {{- else if eq .Protocol "TCP" }}
              - --tcp={{ $p.Port }}
    {{- else }}
              - --port={{ $p.Port }}
    {{- end }}
    {{- if $p.TLS }}
              - --tls={{ $p.Port }}
    {{- end }}
    {{- if $p.ServerFirst }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         * foo = when(direction) {
         *   Direction.NORTH -> 1
         *   Direction.SOUTH -> 2
         *   else -> 3
         * }
         *
         * If when-expression has no subject, then else-branch would be reported as missing even if it is explicitly present:
         *
         * fun test() {
         *     when {
         *         true -> {}
         *         else -> {}
         *     }
         * }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                if (dependency instanceof Buildable) {
                    context.add(dependency);
                } else if (dependency instanceof Task) {
                    context.add(dependency);
                } else if (dependency instanceof TaskDependency) {
                    context.add(dependency);
                } else if (dependency instanceof ProviderInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                is SamConstructorDescriptor -> KaSymbolKind.SAM_CONSTRUCTOR
                else -> when (containingDeclaration) {
                    is PackageFragmentDescriptor -> KaSymbolKind.TOP_LEVEL
                    is ClassDescriptor -> KaSymbolKind.CLASS_MEMBER
                    else -> KaSymbolKind.LOCAL
                }
            }
        }
    
    internal val CallableMemberDescriptor.isExplicitOverride: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. integration-tests/gradle/build.gradle.kts

              if (project.name.endsWith("Java")) configurations["runtimeClasspath"]
              else configurations["debugRuntimeClasspath"]
            } else if (project.name.contains("CompileClasspath")) {
              if (project.name.endsWith("Java")) configurations["compileClasspath"]
              else configurations["debugCompileClasspath"]
            } else {
              error("unexpected classpath type: " + project.name)
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/convert_type.cc

      if (type.isF16()) {
        return tflite::TensorType_FLOAT16;
      } else if (type.isBF16()) {
        return tflite::TensorType_BFLOAT16;
      } else if (type.isF32()) {
        return tflite::TensorType_FLOAT32;
      } else if (type.isF64()) {
        return tflite::TensorType_FLOAT64;
      } else if (mlir::isa<mlir::TF::StringType>(type)) {
        return tflite::TensorType_STRING;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectionExceptionTransformer.java

            } else if (failure instanceof UnsupportedOperationConfigurationException) {
                return new UnsupportedOperationConfigurationException(connectionFailureMessage(failure)
                    + "\n" + failure.getMessage(), failure.getCause());
            } else if (failure instanceof GradleConnectionException) {
                return (GradleConnectionException) failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top