Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 196 for vagrant (0.49 sec)

  1. LICENSES/vendor/sigs.k8s.io/kustomize/kustomize/v5/LICENSE

          "Contributor" shall mean Licensor and any individual or Legal Entity
          on behalf of whom a Contribution has been received by Licensor and
          subsequently incorporated within the Work.
    
       2. Grant of Copyright License. Subject to the terms and conditions of
          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:40:28 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. LICENSES/vendor/go.opentelemetry.io/otel/exporters/otlp/otlptrace/LICENSE

          "Contributor" shall mean Licensor and any individual or Legal Entity
          on behalf of whom a Contribution has been received by Licensor and
          subsequently incorporated within the Work.
    
       2. Grant of Copyright License. Subject to the terms and conditions of
          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 18 01:47:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  3. LICENSES/vendor/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/LICENSE

          "Contributor" shall mean Licensor and any individual or Legal Entity
          on behalf of whom a Contribution has been received by Licensor and
          subsequently incorporated within the Work.
    
       2. Grant of Copyright License. Subject to the terms and conditions of
          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 18 01:47:24 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        portions thereof with code not governed by the terms of this License.
    
        1.7. "License" means this document.
    
        1.8. "Licensable" means having the right to grant, to the maximum
        extent possible, whether at the time of the initial grant or
        subsequently acquired, any and all of the rights conveyed herein.
    
        1.9. "Modifications" means the Source Code and Executable form of
        any of the following:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    │       └── lib
    │           └── app  // <2>
    └── test
        ├── appTest      // <1>
        └── lib
            └── appTest  // <3>
    ----
    <1> The script for executing the application variant
    <2> The main executable binary (debug variant)
    <3> The test executable binary
    
    NOTE: When a build has dependencies, the dependent libraries are also copied into the installation folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    There is no mitigation from this issue.  Cluster admins should take care to secure aggregated API servers and should not grant access to mutate `APIService`s to untrusted parties.
    
    **Affected Versions**:
      - kube-apiserver v1.25.0
      - kube-apiserver v1.24.0 - v1.24.4
      - kube-apiserver v1.23.0 - v1.23.10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-capabilitySubstitutionRule/kotlin/build.gradle.kts

    dependencies {
        implementation("com.acme:lib:1.0")
    }
    
    // tag::substitution_rule[]
    configurations.testCompileClasspath {
        resolutionStrategy.dependencySubstitution {
            substitute(module("com.acme:lib:1.0")).using(variant(module("com.acme:lib:1.0")) {
                capabilities {
                    requireCapability("com.acme:lib-test-fixtures")
                }
            })
        }
    }
    // end::substitution_rule[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 655 bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.24.md

    There is no mitigation from this issue.  Cluster admins should take care to secure aggregated API servers and should not grant access to mutate `APIService`s to untrusted parties.
    
    **Affected Versions**:
      - kube-apiserver v1.25.0
      - kube-apiserver v1.24.0 - v1.24.4
      - kube-apiserver v1.23.0 - v1.23.10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/tests/runtimeClasspath.out

    > Task :consumer:dependencyInsight
    mysql:mysql-connector-java:8.0.14
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 934 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/groovy/consumer/build.gradle

        }
    }
    // end::substitution_rule[]
    
    // tag::substitution_rule_alternative[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute variant(module('com.google.guava:guava:28.2-jre')) {
                attributes {
                    attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.REGULAR_PLATFORM))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top