- Sort Score
- Num 10 results
- Language All
Results 491 - 500 of 1,837 for New (0.01 seconds)
-
ci/devinfra/docker/windows/Dockerfile
RUN md C:\TEMP RUN md C:\TMP # Install 7-Zip. RUN (New-Object Net.WebClient).DownloadFile('https://www.7-zip.org/a/7z2201-x64.msi', '7z.msi'); \ Start-Process msiexec.exe -ArgumentList \"/i 7z.msi /qn /norestart /log C:\\TEMP\\7z_install_log.txt\" -wait; \ Remove-Item .\7z.msi; # Download the Visual Studio 2022 Installer.
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Fri Jan 17 16:35:57 GMT 2025 - 8.4K bytes - Click Count (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaDataTest.groovy
overloadedCalculateMethod.addParameter('x', new TypeMetaData("java.lang.Integer")) overloadedCalculateMethod.addParameter('y', new TypeMetaData("java.lang.String")) ClassLinkMetaData classLinkMetaData = new ClassLinkMetaData(classMetaData) when: LinkMetaData linkMetaData = classLinkMetaData.getMethod("$METHOD_NAME()") then: linkMetaData != null
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.7K bytes - Click Count (0) -
internal/arn/arn.go
ps := strings.Split(arnStr, ":") if len(ps) != 6 || ps[0] != string(arnPrefixArn) { err = errors.New("invalid ARN string format") return arn, err } if ps[1] != string(arnPartitionMinio) { err = errors.New("invalid ARN - bad partition field") return arn, err } if ps[2] != string(arnServiceIAM) { err = errors.New("invalid ARN - bad service field") return arn, err }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 3.5K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java
MethodMetaData methodMetaData = new MethodMetaData(id, extensionDoc.getTargetClass().getClassMetaData()); methodMetaData.addParameter("configClosure", new TypeMetaData(Closure.class.getName())); MethodDoc methodDoc = new MethodDoc(methodMetaData, Collections.singletonList(para)); extensionDoc.getExtraBlocks().add(new BlockDoc(methodDoc, propertyDoc, propertyMetaData.getType(), false));Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.9K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java
children = new ArrayList<>(artifacts.size()); for (Artifact a : artifacts) { if (parents.contains(a.getDependencyConflictId())) { a.setDependencyTrail(getDependencyTrail()); throw new CyclicDependencyException("A dependency has introduced a cycle", a); } children.add(new ResolutionNode(a, remoteRepositories, this));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java
scopesToResolveForCurrentProject = scopesToResolve; scopesToCollectForAggregatedProjects = Collections.synchronizedSet(new TreeSet<>()); scopesToResolveForAggregatedProjects = Collections.synchronizedSet(new TreeSet<>()); } public MavenProject getProject() { return project; } public Collection<String> getScopesToCollectForCurrentProject() {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/test/java/org/apache/maven/settings/building/DefaultSettingsBuilderFactoryTest.java
private File getSettings(String name) { return new File("src/test/resources/settings/factory/" + name + ".xml").getAbsoluteFile(); } @Test void testCompleteWiring() throws Exception { SettingsBuilder builder = new DefaultSettingsBuilderFactory().newInstance(); assertNotNull(builder); DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/MavenBuildTimestampTest.java
@Deprecated class MavenBuildTimestampTest { @Test void testMavenBuildTimestampUsesUTC() { Properties interpolationProperties = new Properties(); interpolationProperties.put("maven.build.timestamp.format", "yyyyMMdd'T'HHmm'Z'"); MavenBuildTimestamp timestamp = new MavenBuildTimestamp(new Date(), interpolationProperties); String formattedTimestamp = timestamp.formattedTimestamp();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 1.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
private List<Server> servers; private List<Mirror> mirrors; private List<Profile> profiles; private final ProjectActivation projectActivation = new ProjectActivation(); private final ProfileActivation profileActivation = new ProfileActivation(); private List<String> pluginGroups; private boolean isProjectPresent = true;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java
private List<String> blackList = new ArrayList<>(); private Map<String, BuildFailure> buildFailuresByProject = new HashMap<>(); private Map<String, Map<String, Map>> pluginContextsByProjectAndPluginKey = new HashMap<>(); private String failureBehavior = FAIL_FAST; private final ProjectSorter sorter; private Map<String, BuildSuccess> buildSuccessesByProject = new HashMap<>();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 6K bytes - Click Count (0)