Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 252 for flavor (0.12 sec)

  1. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

        return this;
      }
    
      /**
       * Advances the ticker value by {@code duration}.
       *
       * @since 33.1.0 (but since 28.0 in the JRE <a
       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
       */
      @GwtIncompatible
      @J2ktIncompatible
      @CanIgnoreReturnValue
      @SuppressWarnings("Java7ApiChecker") // guava-android can rely on library desugaring now.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

                    // setTimeLocal() is better but it is Java 9+.
                    setTime(CONSTANT_TIME_FOR_ZIP_ENTRIES)
                }
            }
    
            /**
             * Writes a versioned flavor of a JAR entry. The {@code path} should be a non-versioned path, e.g. {@code path/to/Foo.class}.
             * @param version the java version (9, 10, etc.), must be &gt;8
             * @param path the path of the entry (non-versioned)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetedNativeComponent.java

     */
    @Incubating @HasInternalProtocol
    public interface TargetedNativeComponent extends PlatformAwareComponentSpec, NativeComponentSpec {
    
        /**
         * Specifies the names of one or more {@link Flavor}s that this component should be built for.
         */
        void targetFlavors(String... flavorSelectors);
    
        /**
         * Specifies the names of one or more {@link BuildType}s that this component should be built for.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>buildType</td>
                </tr>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>component</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. helm/minio/values.yaml

      comment: ""
      displayName: ""
    
    networkPolicy:
      enabled: false
      # Specifies whether the policies created will be standard Network Policies (flavor: kubernetes)
      # or Cilium Network Policies (flavor: cilium)
      flavor: kubernetes
      allowExternal: true
      # only when using flavor: cilium
      egressEntities:
       - kube-apiserver
    
    ## PodDisruptionBudget settings
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            taskTypeLogsInputFileCollectionContent()
    
            buildFile << """
                def flavor = Attribute.of('flavor', String)
    
                allprojects {
                    configurations {
                        outgoing.outgoing.variants {
                            one {
                                attributes.attribute(flavor, 'bland')
                                artifact(producer.output)
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

         * non-initialized {@link Lazy} at the same time but one value will eventually be cached and
         * published to all threads.
         * <br>
         * <b>WARNING:</b> Given the above, this flavor of {@code Lazy} initialization should not be used
         * with a {@code Supplier} that can have undesirable side effects if executed more than once.
         */
        static Factory atomic() {
            return AtomicLazy::new;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            given:
            buildFile << """
                def buildType = Attribute.of("buildType", String)
                def flavor = Attribute.of("flavor", String)
                allprojects {
                    dependencies.attributesSchema.attribute(buildType)
                    dependencies.attributesSchema.attribute(flavor)
                }
    
                project(':lib') {
                    task jar1(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[native_binaries:flavor]]
    === Flavor
    
    Each component can have a set of named `flavors`, and a separate binary variant can be produced for each flavor. While the `build type` and `target platform` variant dimensions have a defined meaning in Gradle, each project is free to define any number of flavors and apply meaning to them in any way.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/Parameter.java

      private final TypeToken<?> type;
      private final ImmutableList<Annotation> annotations;
    
      /**
       * An {@code AnnotatedType} instance, or {@code null} under Android VMs (possible only when using
       * the Android flavor of Guava). The field is declared with a type of {@code Object} to avoid
       * compatibility problems on Android VMs. The corresponding accessor method, however, can have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top