Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 352 for flavor4 (0.28 sec)

  1. pkg/test/fakes/gce_metadata_server/main.go

    		log.Println("request for: " + r.URL.Path)
    		w.Header().Add("Server", "Metadata Server for VM (Fake)")
    		w.Header().Add("Metadata-Flavor", "Google")
    
    		flavor := r.Header.Get("Metadata-Flavor")
    		if flavor == "" && r.RequestURI != "/" {
    			http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
    			w.Header().Set("Content-Type", "text/html; charset=UTF-8")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

    import java.io.File;
    import java.util.Collection;
    import java.util.Map;
    
    public interface NativeBinarySpecInternal extends NativeBinarySpec, BinarySpecInternal {
    
        void setFlavor(Flavor flavor);
    
        void setToolChain(NativeToolChain toolChain);
    
        void setTargetPlatform(NativePlatform targetPlatform);
    
        void setBuildType(BuildType buildType);
    
        Tool getToolByName(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinary.java

    /**
     * Represents a particular binary artifact.
     */
    @Incubating
    public interface NativeBinary extends Binary {
        /**
         * The {@link org.gradle.nativeplatform.Flavor} that this binary was built with.
         */
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        NativePlatform getTargetPlatform();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/settings.gradle

    rootProject.name = 'flavors'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.nativeplatform.BuildType
    import org.gradle.nativeplatform.Flavor
    import org.gradle.nativeplatform.PrebuiltLibrary
    import org.gradle.nativeplatform.platform.NativePlatform
    import spock.lang.Specification
    
    class DefaultPrebuiltStaticLibraryBinaryTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/internal/coverage/decodecounter/decodecounterfile.go

    					return 0, err
    				}
    				if n != 4 {
    					return 0, io.EOF
    				}
    				return binary.LittleEndian.Uint32(cdr.u32b), nil
    			}
    		}
    	} else {
    		panic("internal error: unknown counter flavor")
    	}
    
    	// Alternative/experimental path: one way we could handling writing
    	// out counter data would be to just memcpy the counter segment
    	// out to a file, meaning that a region in the counter memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.prebuilt
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.nativeplatform.BuildType
    import org.gradle.nativeplatform.Flavor
    import org.gradle.nativeplatform.PrebuiltLibrary
    import org.gradle.nativeplatform.platform.NativePlatform
    import spock.lang.Specification
    
    class DefaultPrebuiltSharedLibraryBinaryTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            conf.attributes.getAttribute(flavor).name == 'free'
            conf.attributes.getAttribute(buildType).name == 'release'
        }
    
        def "cannot define two attributes with the same name but different types"() {
            def conf = conf()
            def flavor = Attribute.of('flavor', Flavor)
    
            when:
            conf.getAttributes().attribute(flavor, new FlavorImpl(name: 'free'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. helm/minio/templates/networkpolicy.yaml

    {{- if and (.Values.networkPolicy.enabled) (eq .Values.networkPolicy.flavor "kubernetes") }}
    kind: NetworkPolicy
    apiVersion: {{ template "minio.networkPolicy.apiVersion" . }}
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    spec:
      podSelector:
        matchLabels:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 819 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/build.gradle.kts

    plugins {
        // because this snippet is used in TestReportIntegrationTest which rewrites build files for different JUnit flavors
        java
    }
    
    // tag::test-report[]
    val testReportData by configurations.creating {
        isCanBeConsumed = false
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("test-report-data"))
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 756 bytes
    - Viewed (0)
Back to top