Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 72 for else_ (0.02 seconds)

  1. cmd/xl-storage-format-v2_gen.go

    	s = 1 + 5 + msgp.Uint8Size + 6
    	if z.ObjectV1 == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.ObjectV1.Msgsize()
    	}
    	s += 6
    	if z.ObjectV2 == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.ObjectV2.Msgsize()
    	}
    	s += 7
    	if z.DeleteMarker == nil {
    		s += msgp.NilSize
    	} else {
    		s += z.DeleteMarker.Msgsize()
    	}
    	s += 2 + msgp.Uint64Size
    	return
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 55.8K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            } else if (!cl.hasOption(CLIManager.ALSO_MAKE) && cl.hasOption(CLIManager.ALSO_MAKE_DEPENDENTS)) {
                return MavenExecutionRequest.REACTOR_MAKE_DOWNSTREAM;
            } else if (cl.hasOption(CLIManager.ALSO_MAKE) && cl.hasOption(CLIManager.ALSO_MAKE_DEPENDENTS)) {
                return MavenExecutionRequest.REACTOR_MAKE_BOTH;
            } else {
                return null;
            }
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                                lifecycle = lf.get();
                            } else {
                                throw new MavenException(new LifecycleNotFoundException(forkedLifecycle));
                            }
                        } else {
                            lifecycle = new PluginLifecycle(lifecycleOverlay, pluginDescriptor);
                        }
                    } else {
                        if (execution.getLifecyclePhase() != null) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                        totalSize += size;
                        last = chain;
                        chain = next;
                    } else if (last == null && totalSize + size > maxSize) {
                        throw new SmbException(String.format("Request size %d exceeds allowable size %d: %s", size, maxSize, chain));
                    } else if (last == null) {
                        // don't have enough credits/space for the first request, block until available
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 69.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            } else if (obj instanceof Boolean) {
                buf.append(obj.toString());
            } else if (obj instanceof Date) {
                final SimpleDateFormat sdf = new SimpleDateFormat(CoreLibConstants.DATE_FORMAT_ISO_8601_EXTEND, Locale.ROOT);
                buf.append('\"').append(StringEscapeUtils.escapeJson(sdf.format(obj))).append('\"');
            } else {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 55.4K bytes
    - Click Count (1)
  6. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        if (scope == ProjectScope.MAIN) {
                            return build.getOutputDirectory();
                        } else if (scope == ProjectScope.TEST) {
                            return build.getTestOutputDirectory();
                        } else {
                            return build.getDirectory();
                        }
                    };
                    boolean hasScript = false;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 51.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                                } else if (memberType.contains("role")) {
                                    addGroupOrRoleName(roleList, value, useDomainServices);
                                } else {
                                    addGroupOrRoleName(groupList, value, useDomainServices);
                                }
                            } else if (logger.isDebugEnabled()) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 56.7K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                null,
                                "Duplicate activation for profile " + profile.getId(),
                                profile);
                    }
                }
            } else if (request.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0) {
                Severity errOn30 = getSeverity(request, ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_0);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                ModelData parentData = readParent(tmpModel, currentData.getSource(), request, problems);
    
                if (parentData == null) {
                    currentData = superData;
                } else if (currentData == resultData) { // First iteration - add initial id after version resolution.
                    currentData.setGroupId(
                            currentData.getRawModel().getGroupId() == null
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                        buf.append(c);
                    } else {
                        try {
                            buf.append(URLEncoder.encode(String.valueOf(c), urlLinkEncoding));
                        } catch (final UnsupportedEncodingException e) {
                            buf.append(c);
                        }
                    }
                }
                url = buf.toString();
            } else if (url.startsWith("file:")) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
Back to Top