Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for vagrant (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-library-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.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/base-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.6K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/_helpers.tpl

    {{- define "name" -}}
        istio-cni
    {{- end }}
    
    
    {{- define "istio-tag" -}}
        {{ .Values.cni.tag | default .Values.global.tag }}{{with (.Values.cni.variant | default .Values.global.variant)}}-{{.}}{{end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 218 bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/README.md

     * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
     * Code distributed by Google as part of the polymer project is also
     * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
     */
    // Copyright (c) 2014 The Polymer Authors. All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/order_by_dialect.mlir

      // CHECK: tf.Assign
      // CHECK: tf.Read
      return
    }
    
    // -----
    
    func.func private @id(%arg0: tensor<!tf_type.variant>) -> tensor<!tf_type.variant> {
      return %arg0 : tensor<!tf_type.variant>
    }
    
    // CHECK-LABEL: iterators
    func.func private @iterators(%arg0 : tensor<!tf_type.variant>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

            The only attribute distinguishing these variants is 'org.gradle.native.architecture'. Add this attribute to the consumer's configuration to resolve the ambiguity:
              - Value: 'x86-64' selects variant: 'natives-windows-runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    #ifndef HANDLE_CUSTOM_TF_TYPE
    #define HANDLE_CUSTOM_TF_TYPE(class, enumerant, name) \
      HANDLE_TF_TYPE(class, enumerant, name)
    #endif
    HANDLE_CUSTOM_TF_TYPE(Resource, RESOURCE, "resource")
    HANDLE_CUSTOM_TF_TYPE(Variant, VARIANT, "variant")
    #undef HANDLE_CUSTOM_TF_TYPE
    
    // All ref types are listed below this line and FloatRef is the first ref type.
    // This helps in easily differentiating ref and non-ref types, and converting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    1. Does the particular binary variant (legacy, nft, ip6tables) even exist in $PATH?
    1. In the current netns context, are there already rules defined in one of (legacy, nft) tables? If so, prefer that one.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top