Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

        /**
         * The component that this binary was built from.
         */
        NativeComponentSpec getComponent();
    
        /**
         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        @Variant
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        @Variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/config/http_test.go

    	header := make(http.Header)
    	header.Set("Metadata-Flavor", "Google")
    	c := sourceURL{testServer.URL, header, "localhost", ch, nil, 0, http.DefaultClient}
    	if err := c.extractFromURL(); err != nil {
    		t.Fatalf("Unexpected error extracting from URL: %v", err)
    	}
    	update := (<-ch).(kubetypes.PodUpdate)
    
    	headerVal := fakeHandler.RequestReceived.Header["Metadata-Flavor"]
    	if len(headerVal) != 1 || headerVal[0] != "Google" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top