- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for netpol (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
copy.setGoals(original.getGoals()); copy.setRecursive(original.isRecursive()); copy.setPom(original.getPom()); copy.setSystemProperties(original.getSystemProperties()); copy.setUserProperties(original.getUserProperties()); copy.setShowErrors(original.isShowErrors());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
throws MavenExecutionException { if (request.getPom() == null) { return projects; } MavenProject requestPomProject = projects.stream() .filter(project -> request.getPom().equals(project.getFile())) .findFirst() .orElseThrow(() -> new MavenExecutionException(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.6K bytes - Viewed (0) -
cni/pkg/nodeagent/informers.go
newPod := event.New.(*corev1.Pod) oldPod := event.Old.(*corev1.Pod) ns := s.namespaces.Get(newPod.Namespace, "") if ns == nil { return fmt.Errorf("failed to find namespace %v", ns) } wasAnnotated := oldPod.Annotations != nil && oldPod.Annotations[annotation.AmbientRedirection.Name] == constants.AmbientRedirectionEnabled
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 11.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Recursive (really to just process the top-level POM) MavenExecutionRequest setRecursive(boolean recursive); boolean isRecursive(); MavenExecutionRequest setPom(File pom); File getPom(); // Errors MavenExecutionRequest setShowErrors(boolean showErrors); boolean isShowErrors(); // Transfer listeners
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.4K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
} while (approxCmp > 0); } else { BigInteger nextPow = BigInteger.TEN.multiply(approxPow); int nextCmp = nextPow.compareTo(x); while (nextCmp <= 0) { approxLog10++; approxPow = nextPow; approxCmp = nextCmp; nextPow = BigInteger.TEN.multiply(approxPow); nextCmp = nextPow.compareTo(x); } } int floorLog = approxLog10;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 18.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
} public Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project) { PluginPrefixRequest request = new DefaultPluginPrefixRequest(prefix, session); request.setPom(project.getModel()); try { PluginPrefixResult result = pluginPrefixResolver.resolve(request); Plugin plugin = new Plugin(); plugin.setGroupId(result.getGroupId());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
} protected MavenExecutionRequest createMavenExecutionRequest(File pom) throws Exception { MavenExecutionRequest request = new DefaultMavenExecutionRequest() .setPom(pom) .setProjectPresent(true) .setShowErrors(true) .setPluginGroups(Arrays.asList("org.apache.maven.plugins")) .setLocalRepository(getLocalRepository())
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
request.setGlobalChecksumPolicy(determineGlobalChecksumPolicy(context)); Path pom = determinePom(context); if (pom != null) { request.setPom(pom.toFile()); if (pom.getParent() != null) { request.setBaseDirectory(pom.getParent().toFile()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
src/archive/zip/struct.go
const ( minOffset = -12 * time.Hour // E.g., Baker island at -12:00 maxOffset = +14 * time.Hour // E.g., Line island at +14:00 offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45 ) offset = offset.Round(offsetAlias) if offset < minOffset || maxOffset < offset { offset = 0 } return time.FixedZone("", int(offset/time.Second)) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/pl/docs/index.md
<small>* oszacowania bazowane na testach wykonanych przez wewnętrzny zespół deweloperów, budujących aplikacie używane na środowisku produkcyjnym.</small> ## Sponsorzy <!-- sponsors --> {% if sponsors %} {% for sponsor in sponsors.gold -%}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 19.3K bytes - Viewed (0)