Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for flavor2 (0.14 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal;
    
    import org.gradle.nativeplatform.Flavor;
    
    public class DefaultFlavor implements Flavor {
        public static final String DEFAULT = "default";
        private final String name;
    
        public DefaultFlavor(String name) {
            this.name = name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitComponentReportIntegrationTest.groovy

    Binaries
        Executable 'someExe:executable'
            build using task: :someExeExecutable
            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Cunit test suite 'someExeTest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/TestNativeBinariesFactory.java

            T binary = BaseBinaryFixtures.create(publicType, implType, name, componentNode);
            NativeBinaries.initialize(binary, namingScheme, resolver, TestFiles.fileCollectionFactory(), platform, buildType, flavor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        public NativeComponentSpec getComponent() {
            return getComponentAs(NativeComponentSpec.class);
        }
    
        @Override
        public Flavor getFlavor() {
            return flavor;
        }
    
        @Override
        public void setFlavor(Flavor flavor) {
            this.flavor = flavor;
        }
    
        @Override
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinary.java

        private File staticLibraryFile;
    
        public DefaultPrebuiltStaticLibraryBinary(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.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

    Binaries
        Executable 'someExe:executable'
            build using task: :someExeExecutable
            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Google test suite 'someExeTest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top