- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 482 for Building (0.06 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java
import org.apache.maven.lifecycle.internal.ReactorContext; import org.apache.maven.lifecycle.internal.TaskSegment; /** * <p> * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects. * </p>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java
* under the License. */ package org.apache.maven.model.profile.activation; import java.util.Properties; import org.apache.maven.api.model.Profile; import org.apache.maven.model.building.SimpleProblemCollector; import org.apache.maven.model.profile.DefaultProfileActivationContext; import org.apache.maven.model.profile.ProfileActivationContext; import org.junit.jupiter.api.AfterEach;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 2.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
File f2 = getTestFile("src/test/resources/projects/grandchild-check/child/grandchild/pom.xml"); getProject(f1); // it's the building of the grandchild project, having already cached the child project // (but not the parent project), which causes the problem. getProject(f2); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 33.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java
import javax.inject.Singleton; import org.apache.maven.model.DistributionManagement; import org.apache.maven.model.Model; import org.apache.maven.model.Scm; import org.apache.maven.model.Site; import org.apache.maven.model.building.ModelBuildingRequest; /** * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during * model inheritance. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.5K bytes - Click Count (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PackagingProfileActivator.java
import javax.inject.Singleton; import java.util.Objects; import java.util.Optional; import org.apache.maven.api.model.Activation; import org.apache.maven.api.model.Profile; import org.apache.maven.model.building.ModelProblemCollector; import org.apache.maven.model.profile.ProfileActivationContext; /** * Determines profile activation based on the project's packaging. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.5K bytes - Click Count (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/UrlSource.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.building; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.util.Objects; /** * Wraps an ordinary {@link URL} as a source. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 15 18:51:29 GMT 2025 - 2.4K bytes - Click Count (0) -
tensorflow/BUILD
":is_cuda_compiler_nvcc", ], ) # Config setting that is satisfied when building with --config=cuda in OSS. selects.config_setting_group( name = "is_cuda_enabled_and_oss", match_all = [ ":is_cuda_enabled", ":oss", ], ) # Config setting that is satisfied when building with --config=cuda for Windows selects.config_setting_group( name = "is_cuda_enabled_and_windows",Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Wed Nov 12 19:21:56 GMT 2025 - 53.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/superpom/DefaultSuperPomProvider.java
import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import java.util.Map; import org.apache.maven.model.InputSource; import org.apache.maven.model.Model; import org.apache.maven.model.building.ModelProcessor; /** * Provides the super POM that all models implicitly inherit from. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Named @SingletonCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java
*/ package org.apache.maven.api.services; import org.apache.maven.api.model.InputLocation; import org.apache.maven.api.model.Model; /** * 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: Thu Dec 19 14:50:21 GMT 2024 - 2.9K bytes - Click Count (0) -
src/buildall.bash
} # Note words in $targets are separated by both newlines and spaces. targets="$(linux_targets) $(non_linux_targets)" failed=false for target in $targets do echo "" echo "### Building $target" export GOOS=$(echo $target | sed 's/-.*//') export GOARCH=$(echo $target | sed 's/.*-//') unset GOARM if [ "$GOARCH" = "arm5" ]; then export GOARCH=arm export GOARM=5 fi
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Apr 23 17:45:23 GMT 2024 - 2.1K bytes - Click Count (0)