Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for distrib (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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)
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 3.7K bytes
    - Click Count (0)
  2. ci/devinfra/docker/windows/Dockerfile

        [Environment]::SetEnvironmentVariable('PATH', $env:PATH, 'Machine');
    
    # Install MSYS2, and add some extra tools.
    RUN (New-Object Net.WebClient).DownloadFile( \
             'https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20240113.tar.xz', \
             'msys2.tar.xz'); \
        Start-Process -FilePath \"C:\Program Files\7-Zip\7z.exe\" -ArgumentList 'x msys2.tar.xz -oC:\TEMP\msys2.tar' -Wait; \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Jan 17 16:35:57 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/test/java/org/elasticsearch/gradle/AbstractDistributionDownloadPluginTests.java

            return distros.create(name, distro -> {
                if (version != null) {
                    distro.setVersion(version);
                }
                if (type != null) {
                    distro.setType(type);
                }
                if (platform != null) {
                    distro.setPlatform(platform);
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 4.7K bytes
    - Click Count (0)
  4. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

            );
        }
    
        public void testTypeDefault() {
            ElasticsearchDistribution distro = checkDistro(createProject(null), "testdistro", "5.0.0", null, Platform.LINUX, true);
            assertEquals(distro.getType(), ElasticsearchDistributionTypes.ARCHIVE);
        }
    
        public void testPlatformDefault() {
            ElasticsearchDistribution distro = checkDistro(
                createProject(null),
                "testdistro",
                "5.0.0",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

                }
    
                // expanded distro
                configurations.create("expanded-${testArchiveProjectName}")
                def expandedTask = tasks.register("buildBwcExpandedTask", Copy) {
                    from('bwc-marker.txt')
                    into('build/install/elastic-distro')
                }
                artifacts {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle

                include("**/build/test-results/**/*.xml")
                include("**/build/testclusters/**")
                exclude("**/build/testclusters/**/data/**")
                exclude("**/build/testclusters/**/distro/**")
                exclude("**/build/testclusters/**/repo/**")
                exclude("**/build/testclusters/**/extract/**")
              }
                .files
                .findAll { Files.isRegularFile(it.toPath()) }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2K bytes
    - Click Count (0)
  7. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/ParallelDetector.java

            if (_defaultParallel == null) {
                File cpuInfoFile = new File("/proc/cpuinfo");
                if (cpuInfoFile.exists()) {
                    // Count physical cores on any Linux distro ( don't count hyper-threading )
                    Map<String, Integer> socketToCore = new HashMap<>();
                    String currentID = "";
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Aug 09 07:39:30 GMT 2021
    - 3.6K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/plugins/form-validator/location.js

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 5.2K bytes
    - Click Count (0)
  9. docs/fr/docs/deployment/server-workers.md

    Je vous montrerai comment créer votre propre image à partir de zéro pour exécuter un seul processus Uvicorn. C'est un processus simple et c'est probablement ce que vous voudrez faire lorsque vous utilisez un système distribué de gestion de conteneurs comme **Kubernetes**.
    
    ## Récapitulatif { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  10. docs/en/docs/css/custom.css

    /* Fira Code, including characters used by Rich output, like the "heavy right-pointing angle bracket ornament", not included in Google Fonts */
    @import url(https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css);
    /* Noto Color Emoji for emoji support with the same font everywhere */
    @import url(https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap);
    
    /* Override default code font in Material for MkDocs to Fira Code */
    :root {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:56:46 GMT 2026
    - 6.6K bytes
    - Click Count (0)
Back to Top