- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 254 for fromfile (0.14 sec)
-
docs/tuning/README.md
## Prerequisites Please make sure the following packages are already installed via `dnf` or `apt`: - `tuned` - `curl` ### Install `tuned.conf` performance profile #### Step 1 - download `tuned.conf` from the referenced link ``` wget https://raw.githubusercontent.com/minio/minio/master/docs/tuning/tuned.conf ``` #### Step 2 - install tuned.conf as supported performance profile on all nodes
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 19 01:15:02 UTC 2024 - 644 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java
import java.util.List; import java.util.Map; import java.util.Properties; import org.apache.maven.model.Profile; import org.apache.maven.profiles.activation.ProfileActivationException; /** * ProfileManager */ @Deprecated public interface ProfileManager { void addProfile(Profile profile); void explicitlyActivate(String profileId); void explicitlyActivate(List<String> profileIds);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java
import org.apache.maven.model.profile.DefaultProfileInjector; import org.apache.maven.model.profile.DefaultProfileSelector; import org.apache.maven.model.profile.ProfileInjector; import org.apache.maven.model.profile.ProfileSelector; import org.apache.maven.model.profile.activation.FileProfileActivator; import org.apache.maven.model.profile.activation.JdkVersionProfileActivator;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
if (cleanup) { cmdList.add("--cleanup"); } final File propFile = ComponentUtil.getSystemHelper().createTempFile(getExecuteType() + "_", ".properties"); try { cmdList.add("-p"); cmdList.add(propFile.getAbsolutePath()); createSystemProperties(cmdList, propFile); final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
cmdList.add("--sessionId"); cmdList.add(sessionId); final File propFile = ComponentUtil.getSystemHelper().createTempFile(getExecuteType() + "_", ".properties"); try { cmdList.add("-p"); cmdList.add(propFile.getAbsolutePath()); createSystemProperties(cmdList, propFile); final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 10K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Profiles List<Profile> getProfiles(); MavenExecutionRequest addProfile(Profile profile); MavenExecutionRequest setProfiles(List<Profile> profiles); /** * @deprecated Since Maven 4: use {@link #getProfileActivation()}. */ @Deprecated MavenExecutionRequest addActiveProfile(String profile); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java
*/ @Deprecated Result<? extends Model> buildRawModel(File pomFile, int validationLevel, boolean locationTracking); /** * Performs only the part of {@link ModelBuilder#build(ModelBuildingRequest)} that loads the raw model * * @since 4.0.0 */ Result<? extends Model> buildRawModel(Path pomFile, int validationLevel, boolean locationTracking); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
} @Test public void mergeSameProfiles() { Profile profile = new Profile(); profile.setId( "profile" ); Model target = new Model(); target.setProfiles( Arrays.asList( profile ) ); Model source = new Model(); source.setProfiles( Arrays.asList( profile ) ); modelMerger.merge( target, source, true, null );
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
} @Override public MavenExecutionRequest addProfile(Profile profile) { Objects.requireNonNull(profile, "profile cannot be null"); for (Profile p : getProfiles()) { if (p.getId() != null && p.getId().equals(profile.getId())) { return this; } } getProfiles().add(profile); return this; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
apache-maven/pom.xml
</execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>versionlessMavenDist</id> <build> <finalName>${project.artifactId}</finalName> </build> </profile> </profiles>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:41:46 UTC 2024 - 13.4K bytes - Viewed (0)