Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 361 for flavor (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':linkMainReleaseExecutable'.")
            failure.assertHasCause("No static library binary available for library 'hello' with [flavor: 'default', platform: '${NativePlatformsTestFixture.defaultPlatformName}', buildType: 'release']")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top