Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 361 for flavor (0.12 sec)

  1. pkg/test/echo/server/endpoint/http.go

    	}
    
    	// Choose a random "slice" from a pie
    	totalSlices := 0
    	for _, flavor := range codes {
    		totalSlices += flavor.slices
    	}
    	// nolint: gosec
    	// Test only code
    	slice := rand.Intn(totalSlices)
    
    	// What flavor is that slice?
    	responseCode := codes[len(codes)-1].httpResponseCode // Assume the last slice
    	position := 0
    	for n, flavor := range codes {
    		if position > slice {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinary.java

        private File sharedLibraryLinkFile;
    
        public DefaultPrebuiltSharedLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            super(name, library, buildType, targetPlatform, flavor, fileCollectionFactory);
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
            build using task: :nativeLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/TargetedNativeComponentInternal.java

    import org.gradle.nativeplatform.Flavor;
    import org.gradle.nativeplatform.TargetedNativeComponent;
    import org.gradle.platform.base.internal.PlatformAwareComponentSpecInternal;
    
    import java.util.Set;
    
    public interface TargetedNativeComponentInternal extends TargetedNativeComponent, PlatformAwareComponentSpecInternal {
        Set<Flavor> chooseFlavors(Set<? extends Flavor> candidates);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

    def usage = Attribute.of('usage', String)
    def buildType = Attribute.of('buildType', String)
    def flavor = Attribute.of('flavor', String)
    
    allprojects {
        repositories {
            ivy { url '${ivyHttpRepo.uri}' }
        }
        dependencies {
            attributesSchema {
               attribute(usage)
               attribute(buildType)
               attribute(flavor)
            }
        }
        configurations {
            compile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AttributeValuesIntegrationTest.groovy

            succeeds()
    
            where:
            type       | value
            "Integer"  | "123"
            "Number"   | "123"
            "Object"   | "123"
            "List"     | "['string']"
            "Flavor"   | "objects.named(Flavor, 'abc')"
            "Named"    | "objects.named(Named, 'abc')"
            "Number[]" | "[1, 1.2] as Number[]"
        }
    
        def "attribute value is isolated from original value"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

        final flavor = new DefaultFlavor("flavor1")
        def flavors = new DefaultFlavorContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP)
        def exe = Mock(NativeExecutableSpec) {
            getFlavors() >> flavors
        }
        def lib = Mock(NativeLibrarySpec) {
            getFlavors() >> flavors
        }
        def platform = Mock(NativePlatform)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. 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)
Back to top