Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 703 for Variant (0.1 sec)

  1. tools/docker-builder/common.go

    				// If we need a default as well, add it as a second tag for the same image to avoid building twice
    				if variant == PrimaryVariant && hasDoubleDefault {
    					tags = append(tags, fmt.Sprintf("%s/%s:%s%s", h, target, tg, a.suffix))
    				}
    			}
    		}
    	}
    	return tags
    }
    
    func createArgs(args Args, target string, variant string, architecture string) map[string]string {
    	baseDist := variant
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedVariantResultSerializer.java

                encoder.writeString(variant.getDisplayName());
                attributeContainerSerializer.write(encoder, variant.getAttributes());
                writeCapabilities(encoder, variant.getCapabilities());
                write(encoder, variant.getExternalVariant().orElse(null));
            } else {
                encoder.writeSmallInt(index);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

    import java.util.List;
    import java.util.Set;
    
    /**
     * Immutable metadata for a component variant instance that is used to perform dependency graph resolution.
     *
     * <p>Note that this metadata does not provide any information about the available artifacts of this variants, as this may be expensive to resolve.
     * Information about the artifacts can be accessed via the methods of {@link ComponentGraphResolveState}.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

        @Override
        public List<DependencyResult> getDependenciesForVariant(ResolvedVariantResult variant) {
            if (!selectedVariants.contains(variant)) {
                reportInvalidVariant(variant);
            }
            return ImmutableList.copyOf(variantDependencies.get(variant));
        }
    
        private void reportInvalidVariant(ResolvedVariantResult variant) {
            Optional<ResolvedVariantResult> sameName = selectedVariants.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveState.java

    import javax.annotation.Nullable;
    
    /**
     * State for a component variant that is used to perform dependency graph resolution.
     *
     * <p>This does not include any information about the artifacts of the variant, which are generally not required during graph resolution.</p>
     */
    public interface VariantGraphResolveState extends HasAttributes {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/tensor-list.pbtxt

    # Nested variant type.
    # CHECK:  tf.TensorListReserve{{.*}}(tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*x!tf_type.variant>>>
    
    # CHECK:  tf.TensorListSetItem{{.*}}(tensor<!tf_type.variant<tensor<*xf32>>>, tensor<i32>, tensor<2x2xf32>) -> tensor<*x!tf_type.variant>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.dot

        mainVariantImplementation[label=<main<i>Variant</i>Implementation>]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
        swiftCompileVariant -> nativeLinkVariant -> nativeRuntimeVariant [style=invis, weight=1000]
    
        swiftCompileVariant[label=<swiftCompile<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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/custom_tensorlist_reserve.mlir

    func.func @main(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<!tf_type.variant<tensor<*xi32>>> {
      %0 = "tfl.custom"(%arg0, %arg1) {custom_code = "TensorListReserve", custom_option = #tfl<const_bytes : "0x02">} : (tensor<i32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*xi32>>>
      func.return %0 : tensor<!tf_type.variant<tensor<*xi32>>>
    }
    
    // CHECK:   operator_codes: [ {
    // CHECK:       custom_code: "TensorListReserve",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 23:05:53 UTC 2023
    - 918 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

                    project(':dep', "test:dep:unspecified") {
                        variant "${color}Variant", [color: color]
                        noArtifacts()
                    }
                }
            }
    
            where:
            color << ['blue', 'red']
        }
    
        def "Fails with reasonable error message when no target variant can be found"() {
            given:
            settingsFile << "include 'dep'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top