Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 9,719 for Else (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AuthenticationSupporter.java

                return Cast.uncheckedCast(DefaultPasswordCredentials.class);
            } else if (publicType == AwsCredentials.class) {
                return Cast.uncheckedCast(DefaultAwsCredentials.class);
            } else if (publicType == HttpHeaderCredentials.class) {
                return Cast.uncheckedCast(DefaultHttpHeaderCredentials.class);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategy.java

            } else if (method.equalsIgnoreCase(HttpPost.METHOD_NAME)) {
                return this.copyEntity(new HttpPost(uri), request);
            } else if (method.equalsIgnoreCase(HttpPut.METHOD_NAME)) {
                return this.copyEntity(new HttpPut(uri), request);
            } else if (method.equalsIgnoreCase(HttpDelete.METHOD_NAME)) {
                return new HttpDelete(uri);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/gotos.go

    	} else if false {
    	L:
    	} else {
    	}
    }
    
    func _() {
    	if true {
    		goto L /* ERROR "goto L jumps into block" */
    	} else if false {
    	} else {
    	L:
    	}
    }
    
    func _() {
    	if true {
    		goto L /* ERROR "goto L jumps into block" */
    	} else {
    		L:
    	}
    }
    
    func _() {
    	if true {
    		L:
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializer.java

            } else if (Implementation.MODULE.getId() == id) {
                return DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId(decoder.readString(), decoder.readString()), readVersionConstraint(decoder), readAttributes(decoder), readCapabilities(decoder));
            } else if (Implementation.LIBRARY.getId() == id) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. helm/minio/templates/_helper_create_svcacct.txt

        else
          ${MC} admin user svcacct add --access-key $(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP) --secret-key $(tail -n1 $MINIO_ACCESSKEY_SECRETKEY_TMP) --policy /config/$FILENAME.json myminio $USER
        fi
      else
        echo "Svcacct '$SVCACCT' already exists."
      fi
      #clean up credentials files.
      rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:20:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

            if (id != null) {
                writeSmallInt(id)
            } else {
                val scope = scopeLookup.scopeFor(type.classLoader)
                val newId = classes.putInstance(type)
                writeSmallInt(newId)
                writeString(type.name)
                if (scope == null) {
                    writeBoolean(false)
                } else {
                    writeBoolean(true)
                    writeScope(scope.first)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

        @Nullable
        private static TypeWrapper wrap(Type type) {
            if (type == null) {
                return null;
            } else if (type instanceof Class) {
                return new ClassTypeWrapper((Class<?>) type);
            } else if (type instanceof ParameterizedType) {
                ParameterizedType parameterizedType = (ParameterizedType) type;
                return new ParameterizedTypeWrapper(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

                                    alphanumSize++;
                                }
                            } else {
                                buf.appendCodePoint(c);
                                alphanumSize++;
                            }
                            isSpace = false;
                            symbolSize = 0;
                        } else if ((c >= '!' && c <= '/') || (c >= ':' && c <= '@') || (c >= '[' && c <= '`') || (c >= '{' && c <= '~')) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                                                        } else {
                                                            interpolationTargets.add(value);
                                                        }
                                                    }
                                                } else {
                                                    // add the null back in...not sure what else to do...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                return 0L;
            } else if (matcher.group(8) == null) {
                return null;
            } else if ("SNAPSHOT".equals(matcher.group(8))) {
                return 0L;
            } else {
                try {
                    if (matcher.group(9) != null) {
                        return new SimpleDateFormat("yyyyMMddHHmmssZ").parse(matcher.group(8)).getTime();
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top