Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for flavor (0.1 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

            jvmTarget = '1.8'
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        def buildTypes = android.buildTypes.collect { type ->
            type.name
        }
        def productFlavors = android.productFlavors.collect { flavor ->
            flavor.name
        }
        // When no product flavors defined, use empty
        if (!productFlavors) productFlavors.add('')
        productFlavors.each { productFlavorName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. README.md

    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    
    Guava comes in two flavors:
    
    *   The JRE flavor requires JDK 1.8 or higher.
    *   If you need support for Android, use
        [the Android flavor](https://github.com/google/guava/wiki/Android). You can
        find the Android Guava source in the [`android` directory].
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

            jvmTarget = "1.8"
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        val buildTypes = android.buildTypes.map { type ->
            type.name
        }
        // When no product flavors defined, use empty
        val productFlavors = android.productFlavors.map { flavor -> flavor.name }
            .takeIf { it.isNotEmpty() }
            ?: listOf("")
        productFlavors.forEach { productFlavorName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. helm/minio/templates/ciliumnetworkpolicy.yaml

    {{- if and (.Values.networkPolicy.enabled) (eq .Values.networkPolicy.flavor "cilium") }}
    kind: CiliumNetworkPolicy
    apiVersion: cilium.io/v2
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    spec:
      endpointSelector:
        matchLabels:
          app: {{ template "minio.name" . }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 936 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_update_uuid.go

    	// want the "version" of this UUID to appear as 'hashed' as opposed
    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    	// to how other linkers handle this (for example this code in lld:
    	// https://github.com/llvm/llvm-project/blob/2a3a79ce4c2149d7787d56f9841b66cacc9061d0/lld/MachO/Writer.cpp#L524).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/dataclasses.md

    So, even with the code above that doesn't use Pydantic explicitly, FastAPI is using Pydantic to convert those standard dataclasses to Pydantic's own flavor of dataclasses.
    
    And of course, it supports the same:
    
    * data validation
    * data serialization
    * data documentation, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/internal/coverage/encodecounter/encode.go

    		var buf []byte
    		var towr int
    		if cfw.cflavor == coverage.CtrRaw {
    			binary.LittleEndian.PutUint32(ctrb, val)
    			buf = ctrb
    			towr = 4
    		} else if cfw.cflavor == coverage.CtrULeb128 {
    			cfw.tmp = cfw.tmp[:0]
    			cfw.tmp = uleb128.AppendUleb128(cfw.tmp, uint(val))
    			buf = cfw.tmp
    			towr = len(buf)
    		} else {
    			panic("internal error: bad counter flavor")
    		}
    		if sz, err := ws.Write(buf); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If the {@code is}-getter is generated, and the {@code get}-getter is not ignored explicitly, then the generated
     * {@code is}-getter is automatically ignored in favor of the {@code get}-getter.
     * </p>
     */
    @ServiceScope(Scope.Global.class)
    public interface TypeAnnotationMetadataStore {
        TypeAnnotationMetadata getTypeAnnotationMetadata(Class<?> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    // available in TF such as INT4, and ideally should be removed in favor of
    // stronger type propagation.
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top