Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for distrib (0.17 sec)

  1. docs/debugging/hash-set/main.go

    	if file != "" {
    		distrib := make([][]string, setCount)
    		b, err := os.ReadFile(file)
    		if err != nil {
    			log.Fatalln(err)
    		}
    		b = bytes.ReplaceAll(b, []byte("\r"), []byte{})
    		sc := bufio.NewScanner(bytes.NewBuffer(b))
    		for sc.Scan() {
    			object = strings.TrimSpace(sc.Text())
    			set := sipHashMod(prefix+object, setCount, id)
    			distrib[set] = append(distrib[set], prefix+object)
    		}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
        Invoke-WebRequest "https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20220319.sfx.exe" \
            -OutFile msys2_install.exe -UseBasicParsing; \
        .\msys2_install.exe -y -oC:\; \
        Remove-Item msys2_install.exe; \
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  3. .teamcity/.mvn/wrapper/maven-wrapper.jar

    private static java.io.File mavenUserHome(); } org/apache/maven/wrapper/PathAssembler$LocalDistribution.class package org.apache.maven.wrapper; public synchronized class PathAssembler$LocalDistribution { private final java.io.File distZip; private final java.io.File distDir; public void PathAssembler$LocalDistribution(PathAssembler, java.io.File, java.io.File); public java.io.File getDistributionDir(); public java.io.File getZipFile(); } org/apache/maven/wrapper/PathAssembler.class package org.apache.maven.wrapper;...
    Archive
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml

            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <distributionManagement>
        <repository>
          <id>parent-distros</id>
          <name>parent-distros</name>
          <url>ssh://parent.url/distros</url>
          <uniqueVersion>false</uniqueVersion>
          <layout>legacy</layout>
        </repository>
        <snapshotRepository>
          <id>parent-snaps</id>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml

      </issueManagement>
      <ciManagement>
        <system>child-ci</system>
        <url>https://child.url/ci</url>
      </ciManagement>
      <distributionManagement>
        <repository>
          <id>child-distros</id>
          <url>ssh://child.url/distros</url>
        </repository>
        <snapshotRepository>
          <id>child-snaps</id>
          <url>ssh://child.url/snaps</url>
        </snapshotRepository>
        <site>
          <id>child-site</id>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/url-inheritance/pom.xml

      </issueManagement>
      <ciManagement>
        <url>https://parent.url/ci</url>
      </ciManagement>
      <distributionManagement>
        <repository>
          <url>https://parent.url/dist</url>
          <id>parent.distros</id>
        </repository>
        <snapshotRepository>
          <url>https://parent.url/snaps</url>
          <id>parent.snaps</id>
        </snapshotRepository>
        <site>
          <url>https://parent.url/site</url>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <distributionManagement>
        <repository>
          <url>https://project.url/dist</url>
          <id>project.distros</id>
          <name>distros</name>
        </repository>
        <snapshotRepository>
          <url>https://project.url/snaps</url>
          <id>project.snaps</id>
          <name>snaps</name>
          <uniqueVersion>false</uniqueVersion>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <distributionManagement>
        <repository>
          <url>https://project.url/dist</url>
          <id>project.distros</id>
          <name>distros</name>
        </repository>
        <snapshotRepository>
          <url>https://project.url/snaps</url>
          <id>project.snaps</id>
          <name>snaps</name>
          <uniqueVersion>false</uniqueVersion>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  9. README.md

    Quick Build
    -------
    If you want to bootstrap Maven, you'll need:
    - Java 17+
    - Maven 3.6.3 or later
    - Run Maven, specifying a location into which the completed Maven distro should be installed:
        ```
        mvn -DdistributionTargetDir="$HOME/app/maven/apache-maven-4.0.x-SNAPSHOT" clean package
        ```
    
    
    [home]: https://maven.apache.org/
    [jira]: https://issues.apache.org/jira/projects/MNG/
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  10. cni/pkg/ipset/nldeps_linux.go

    }
    
    func (m *realDeps) flush(name string) error {
    	err := netlink.IpsetFlush(name)
    	if err != nil {
    		return fmt.Errorf("failed to flush ipset %s: %w", name, err)
    	}
    	return nil
    }
    
    // Alpine and some distros struggles with this - ipset CLI utilities support this, but
    // the kernel can be out of sync with the CLI utility, leading to errors like:
    //
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top