Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 140 for vagrant (0.25 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantShellTask.java

     */
    
    package org.elasticsearch.gradle.internal.vagrant;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.TaskAction;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.function.UnaryOperator;
    import java.util.stream.Collectors;
    
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertLinuxPath;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.3K bytes
    - Click Count (0)
  2. .ci/dockerOnLinuxExclusions

    # Docker tests to be skipped on that OS. If /etc/os-release doesn't exist
    # (as is the case on centos-6, for example) then that OS will again be
    # excluded.
    debian-8
    opensuse-leap-15.1
    ol-7.7
    sles-12.3 # older version used in Vagrant image
    sles-12.5
    sles-15.1
    sles-15.2
    sles-15.3
    
    # These OSes are deprecated and filtered starting with 8.0.0, but need to be excluded
    # for PR checks
    centos-6
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 29 23:07:12 GMT 2021
    - 615 bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantProgressLogger.java

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.vagrant;
    
    import java.util.function.UnaryOperator;
    
    public class VagrantProgressLogger implements UnaryOperator<String> {
    
        private static final String HEADING_PREFIX = "==> ";
    
        private final String squashedPrefix;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantExtension.java

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.vagrant;
    
    import org.gradle.api.Project;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.provider.MapProperty;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.4K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.10.md

    * RBAC: The system:kubelet-api-admin cluster role can be used to grant full access to the kubelet API  so integrators can grant this role to the --kubelet-client-certificate credential given to the apiserver. ([#57128](https://github.com/kubernetes/kubernetes/pull/57128), [@liggitt](https://github.com/liggitt))
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    To grow the developer community, SIG Windows  released multiple [tools](https://github.com/kubernetes-sigs/sig-windows-dev-tools/). The new tools support multiple CNI providers (Antrea, Calico), can run on multiple platforms (any vagrant compatible provider, such as Hyper-V, VirtualBox, or vSphere).
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Click Count (0)
  7. guava/module.json

          "buildId": "${maven.build.version}"
        }
      },
      "variants": [
        {
          "name": "${variant.jvmEnvironmentVariantName}ApiElements",
          "attributes": {
            "org.gradle.category": "library",
            "org.gradle.dependency.bundling": "external",
            "org.gradle.jvm.version": "8",
            "org.gradle.jvm.environment": "${variant.jvmEnvironment}",
            "org.gradle.libraryelements": "jar",
            "org.gradle.usage": "java-api"
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 29 19:50:42 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
       * <p>The C++ equivalent is the MurmurHash3_x86_32 function (Murmur3A), which however does not
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 29.8K bytes
    - Click Count (0)
  9. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

            WITH_CONFIG // configuration provided via StaticJAASConfiguration
        }
    
        private JAASAuthenticator buildAuthenticator(SubjectVariant variant) {
            switch (variant) {
            case DEFAULT_WITH_PS: {
                JAASAuthenticator a = new JAASAuthenticator();
                // Provide a preset Subject so the getSubject() path uses the (serviceName, ps, this) constructor
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java

        }
    
        /**
         * @param isRegex true if should inject the regex variant of allowed warnings
         * @param allowedWarnings The allowed warnings to inject
         */
        public InjectAllowedWarnings(boolean isRegex, List<String> allowedWarnings) {
            this(isRegex, allowedWarnings, null);
        }
    
        /**
         * @param isRegex true if should inject the regex variant of allowed warnings
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 15 08:50:42 GMT 2021
    - 3.3K bytes
    - Click Count (0)
Back to Top