Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for vagrant (0.15 sec)

  1. src/cmd/vendor/golang.org/x/build/PATENTS

    Additional IP Rights Grant (Patents)
    
    "This implementation" means the copyrightable works distributed by
    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/PATENTS

    Additional IP Rights Grant (Patents)
    
    "This implementation" means the copyrightable works distributed by
    Google as part of the Go project.
    
    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/tests/outgoingVariants.out

    > Task :producer:outgoingVariants
    --------------------------------------------------
    Variant apiElements
    --------------------------------------------------
    API elements for the 'main' feature.
    
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.version         = 11
        - org.gradle.libraryelements     = jar
        - org.gradle.usage               = java-api
    
    Artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-application-configurations.dot

        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
        cppCompileVariant -> nativeLinkVariant -> nativeRuntimeVariant [style=invis, weight=1000]
    
        cppCompileVariant[label=<cppCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

    > Task :dependencyInsight
    io.vertx:vertx-lang-groovy:3.9.4
      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
    - 7.7K bytes
    - Viewed (0)
  6. architecture/networking/controllers.md

    `kube.Client` just bundles these all in one place, so we have a single object to pass around anywhere we need Kubernetes access.
    Additionally, it has a fake client variant, that does the same thing but with fake clients for use in unit tests.
    
    Aside from this, there are a few conveniences and workarounds built-in to the client to make things simpler.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

            extendsFrom(shadedImplementation)
            outgoing.artifact(shadedJarTask) {
                name = moduleIdentity.baseName.get()
                type = "jar"
            }
        }
    
        // publish only the shaded variant
        val javaComponent = components["java"] as AdhocComponentWithVariants
        javaComponent.addVariantsFromConfiguration(shadedRuntimeElements) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/listResolvedArtifacts.out

      id: commons-text-1.9.jar (org.apache.commons:commons-text:1.9)
      variant: org.apache.commons:commons-text:1.9 configuration runtime
      size: 216211
    
    FILE utilities.jar
      id: utilities.jar (project :utilities)
      variant: configuration ':utilities:runtimeElements'
      size: 261
    
    FILE commons-lang3-3.11.jar
      id: commons-lang3-3.11.jar (org.apache.commons:commons-lang3:3.11)
      variant: org.apache.commons:commons-lang3:3.11 configuration runtime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 593 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

    
    /**
     * Modifies a dependency to select the variant of the given module.
     *
     * @see DependencyModifier
     * @since 8.0
     */
    operator fun <D : ModuleDependency> DependencyModifier.invoke(dependency: D): D = modify(dependency)
    
    
    /**
     * Modifies a dependency to select the variant of the given module.
     *
     * @see DependencyModifier
     * @since 8.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/xctest-configurations.dot

        testVariantExecutableImplementation[label=<test<i>Variant</i>ExecutableImplementation>]
        implementation[style=dashed]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
        swiftCompileTestVariant -> nativeLinkTestVariant -> nativeRuntimeTestVariant [style=invis, weight=1000]
    
        swiftCompileTestVariant[label=<swiftCompileTest<i>Variant</i> (R)>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top