Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,281 for paid (0.12 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            flavor: flavor 'paid'
            target platform: platform 'amd64'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/someLib/shared/amd64/paid/libsomeLib.dylib
        Static library 'someLib:amd64:paid:staticLibrary'
            build using task: :someLibAmd64PaidStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'paid'
            target platform: platform 'amd64'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxerTest.java

            System.out.print(paid); // No, this does not print to system.out. It's part of the test
            assertEquals(paid.length(), byteArrayOutputStream.size());
            threadOutputMuxer.associateThreadWithProjectSegment(projectBuildList.get(1));
            System.out.print(in); // No, this does not print to system.out. It's part of the test
            assertEquals(paid.length(), byteArrayOutputStream.size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py

                        "title": "InvoiceEvent",
                        "required": ["description", "paid"],
                        "type": "object",
                        "properties": {
                            "description": {"title": "Description", "type": "string"},
                            "paid": {"title": "Paid", "type": "boolean"},
                        },
                    },
                    "InvoiceEventReceived": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            where:
            type         | freeValue                      | paidValue
            'SomeEnum'   | 'SomeEnum.free'                | 'SomeEnum.paid'
            'Thing'      | 'objects.named(Thing, "free")' | 'objects.named(Thing, "paid")'
            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. tests/test_sub_callbacks.py

                            "title": "InvoiceEvent",
                            "required": ["description", "paid"],
                            "type": "object",
                            "properties": {
                                "description": {"title": "Description", "type": "string"},
                                "paid": {"title": "Paid", "type": "boolean"},
                            },
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

                tasks.withType(Jar) { destinationDirectory = buildDir }
                configurations.compile.outgoing.variants {
                    free {
                        attributes.attribute(flavor, 'free')
                        artifact freeJar
                    }
                    paid {
                        attributes.attribute(flavor, 'paid')
                        artifact paidJar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible platforms, but one closer'                      | [platform: JavaVersion.JAVA8]                 | [platform: JavaVersion.JAVA6, flavor: 'free'] | [platform: JavaVersion.JAVA7, flavor: 'paid'] | 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        @Override
        String getRelease() {
            'attribute(buildType, BuildType.release)'
        }
    
        @Override
        String getPaid() {
            'attribute(flavor, objects.named(Flavor, "paid"))'
        }
    
        def "resolution fails when two configurations use the same attribute name with different types"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StringConfigurationAttributesResolveIntegrationTest.groovy

            "attribute(flavor, 'free')"
        }
    
        @Override
        String getRelease() {
            "attribute(buildType, 'release')"
        }
    
        @Override
        String getPaid() {
            "attribute(flavor, 'paid')"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. docs_src/openapi_callbacks/tutorial001.py

    app = FastAPI()
    
    
    class Invoice(BaseModel):
        id: str
        title: Union[str, None] = None
        customer: str
        total: float
    
    
    class InvoiceEvent(BaseModel):
        description: str
        paid: bool
    
    
    class InvoiceEventReceived(BaseModel):
        ok: bool
    
    
    invoices_callback_router = APIRouter()
    
    
    @invoices_callback_router.post(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top