Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 156 for vagrant (0.73 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      INT16 = 7,
      COMPLEX64 = 8,
      INT8 = 9,
      FLOAT64 = 10,
      COMPLEX128 = 11,
      UINT64 = 12,
      // Experimental: Resource and variant types are experimental, that are subject
      // to change. Do not implement custom kernels using resource & variant types
      // now.
      RESOURCE = 13,
      VARIANT = 14,
      UINT32 = 15,
    }
    
    // Custom quantization parameters for experimenting with new quantization
    // techniques.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1/generated.proto

      repeated string items = 1;
    }
    
    // LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace.
    // Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions
    // checking.
    message LocalSubjectAccessReview {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      repeated string items = 1;
    }
    
    // LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace.
    // Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions
    // checking.
    message LocalSubjectAccessReview {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top