Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 61 for provision (0.09 seconds)

  1. build-tools-internal/src/main/groovy/elasticsearch.runtime-jdk-provision.gradle

    Mark Vieira <******@****.***> 1632770950 -0700
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  2. misc/ios/detect.go

    	udids := getLines(exec.Command("idevice_id", "-l"))
    	if len(udids) == 0 {
    		fail("no udid found; is a device connected?")
    	}
    
    	mps := detectMobileProvisionFiles(udids)
    	if len(mps) == 0 {
    		fail("did not find mobile provision matching device udids %q", udids)
    	}
    
    	fmt.Println("# Available provisioning profiles below.")
    	fmt.Println("# NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID")
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Click Count (0)
  3. docs/iam/access-management-plugin.md

    Latency sensitive applications may notice an increased latency due to a request to the external plugin upon every authenticated request to MinIO. User are advised to provision their infrastructure such that latency and performance is acceptable.
    
    ## Quickstart
    
    To easily try out the feature, run the included demo Access Management Plugin program in this directory:
    
    ```sh
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Dec 13 22:28:48 GMT 2022
    - 4.4K bytes
    - Click Count (1)
  4. docs/federation/lookup/README.md

    NOTE: `mybucket` only exists on one cluster either `cluster1` or `cluster2` this is random and
    is decided by how `domain.com` gets resolved, if there is a round-robin DNS on `domain.com` then
    it is randomized which cluster might provision the bucket.
    
    ### 3. Test your setup
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantMachine.java

            // properly in virtualbox. Virtualbox is vagrant's default but its possible to change that default and folks do.
            execute(spec -> {
                spec.setCommand("up");
                spec.setArgs("--provision", "--provider", "virtualbox");
            });
            isVMStarted = true;
        }
    
        // stops the VM if refs are down to 0, or force was called
        void maybeStopVM(boolean force) {
            assert refs >= 1;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.5K bytes
    - Click Count (0)
  6. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-revision.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-revision</artifactId>
      <version>${revision}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  7. src/test/java/jcifs/pac/PacDataInputStreamTest.java

            data[7] = (byte) (high >> 24);
    
            PacDataInputStream pdis = createInputStream(data);
            Date date = pdis.readFiletime();
            assertNotNull(date);
            // Allow for a small difference due to precision loss
            assertEquals(time / 1000, date.getTime() / 1000);
    
            // Test with null date (0x7fffffff ffffffff)
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+intake.yml

                  git-revision: true
                - name: elastic+elasticsearch+%BRANCH%+intake+multijob+bwc
                  kill-phase-on: NEVER
                  current-parameters: true
                  git-revision: true
                - name: elastic+elasticsearch+%BRANCH%+intake+multijob+rest-compat
                  kill-phase-on: NEVER
                  current-parameters: true
                  git-revision: true
          - multijob:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/QualifiedVersion.java

            return major == version.major
                && minor == version.minor
                && revision == version.revision
                && Objects.equals(qualifier, version.qualifier);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(major, minor, revision, qualifier);
        }
    
        public int getMajor() {
            return major;
        }
    
        public int getMinor() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  10. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/GitInfo.java

        private final String revision;
        private final String origin;
    
        private GitInfo(String revision, String origin) {
            this.revision = revision;
            this.origin = origin;
        }
    
        public String getRevision() {
            return revision;
        }
    
        public String getOrigin() {
            return origin;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.8K bytes
    - Click Count (0)
Back to Top