- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 1,763 for collects (0.04 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java
package org.apache.maven.plugin.prefix; import java.util.List; import org.apache.maven.model.Model; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; /** * Collects settings required to resolve a plugin prefix. * * @since 3.0 */ public interface PluginPrefixRequest { /** * Gets the prefix of the plugin. * * @return The prefix of the plugin.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.settings.building; import java.io.File; import java.util.Properties; /** * Collects settings that control building of effective settings. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.SettingsBuilder} instead */ @Deprecated(since = "4.0.0")Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java
import org.apache.maven.model.Model; import org.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; /** * Collects settings required to resolve a plugin prefix. * * @since 3.0 */ public class DefaultPluginPrefixRequest implements PluginPrefixRequest { private String prefix;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java
package org.apache.maven.model.building; import java.util.EnumSet; import java.util.List; import java.util.Set; import org.apache.maven.model.Model; import org.apache.maven.model.io.ModelParseException; /** * Collects problems that are encountered during model building. The primary purpose of this component is to account for * the fact that the problem reporter has/should not have information about the calling context and hence cannot provide
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 5.5K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
* under the License. */ package org.apache.maven.model.building; import java.util.List; import org.apache.maven.model.Model; import org.apache.maven.model.Profile; /** * Collects the output of the model builder. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelBuildingResult { /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4.2K bytes - Click Count (0) -
docs/metrics/prometheus/list.md
# Cluster Metrics MinIO collects the following metrics at the cluster level. Metrics may include one or more labels, such as the server that calculated that metric. These metrics can be obtained from any MinIO server once per collection by using the following URL: ```shell https://HOSTNAME:PORT/minio/v2/metrics/cluster ``` Replace ``HOSTNAME:PORT`` with the hostname of your MinIO deployment.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 43.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
import static java.util.Objects.requireNonNull; /** * Collects problems that were encountered during project building. * * @param <P> The type of the problem. * @since 4.0.0 */ @Experimental public interface ProblemCollector<P extends BuilderProblem> { /** * Returns {@code true} if there is at least one problem collected with severity equal or more severe than
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jul 18 17:30:19 GMT 2025 - 11.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.NotThreadSafe; import org.apache.maven.api.annotations.Nullable; import static java.util.Objects.requireNonNull; /** * Collects settings that control the building of effective settings. */ @Experimental @Immutable public interface SettingsBuilderRequest extends Request<ProtoSession> { /** * Gets the installation settings source.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
append(b, "used", () -> p.getUsed().getBytes()).append(','); append(b, "capacity", () -> p.getTotalCapacity().getBytes()).append('}'); return b.toString(); }).collect(Collectors.joining(","))); buf.append("},"); final GarbageCollectors gc = jvmStats.getGc(); buf.append("\"gc\":{"); buf.append(Arrays.stream(gc.getCollectors()).map(c -> {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.8K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
* environment like {@link System#getProperties()} and environment variables. * * @return The system properties, never {@code null}. */ Properties getSystemProperties(); /** * Sets the system properties to use for interpolation. The system properties are collected from the runtimeCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6K bytes - Click Count (0)