Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 200 for ptrval (0.27 sec)

  1. docs_src/separate_openapi_schemas/tutorial002_py39.py

    
    @app.post("/items/")
    def create_item(item: Item):
        return item
    
    
    @app.get("/items/")
    def read_items() -> list[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 518 bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementWithSettingsPluginIntegrationTest.groovy

                    id("test.test-plugin").version("1.0")
                }
            """
    
            when:
            run("pluginTask")
    
            then:
            outputContains("external plugin")
            // Ensure plugin portal is not unintentionally used
            pluginPortal.server.resetExpectations()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/14536")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_dependencies/test_tutorial008b.py

        response = client.get("/items/plumbus")
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Owner error: Rick"}
    
    
    def test_get_item():
        response = client.get("/items/portal-gun")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Dec 26 20:37:34 UTC 2023
    - 697 bytes
    - Viewed (0)
  4. docs_src/separate_openapi_schemas/tutorial001_py39.py

    
    app = FastAPI()
    
    
    @app.post("/items/")
    def create_item(item: Item):
        return item
    
    
    @app.get("/items/")
    def read_items() -> list[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 483 bytes
    - Viewed (0)
  5. build-logic/publishing/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for publishing some of Gradle's subprojects to Artifactory or the Plugin Portal"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":integration-testing"))
    
        implementation("com.gradle.publish:plugin-publish-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 412 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/BaseRepositoryFactory.java

     */
    public interface BaseRepositoryFactory {
    
        String PLUGIN_PORTAL_DEFAULT_URL = "https://plugins.gradle.org/m2";
        String PLUGIN_PORTAL_OVERRIDE_URL_PROPERTY = "org.gradle.internal.plugins.portal.url.override";
    
        FlatDirectoryArtifactRepository createFlatDirRepository();
    
        ArtifactRepository createGradlePluginPortal();
    
        MavenArtifactRepository createMavenLocalRepository();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. docs_src/separate_openapi_schemas/tutorial001.py

    
    app = FastAPI()
    
    
    @app.post("/items/")
    def create_item(item: Item):
        return item
    
    
    @app.get("/items/")
    def read_items() -> List[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 489 bytes
    - Viewed (0)
  8. src/crypto/x509/oid.go

    	)
    	var (
    		start    = 0
    		val      = uint64(0)
    		numBuf   = make([]byte, 0, 21)
    		bigVal   *big.Int
    		overflow bool
    	)
    	for i, v := range oid.der {
    		curVal := v & 0x7F
    		valEnd := v&0x80 == 0
    		if valEnd {
    			if start != 0 {
    				b.WriteByte('.')
    			}
    		}
    		if !overflow && val > maxValSafeShift {
    			if bigVal == nil {
    				bigVal = new(big.Int)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/testFixtures/groovy/org/gradle/kotlin/dsl/tooling/fixtures/KotlinScriptModelParameters.groovy

            def correlationId = newCorrelationId()
    
            def arguments =
                ["-P${KotlinDslModelsParameters.CORRELATION_ID_GRADLE_PROPERTY_NAME}=${correlationId}".toString(),
                 "-Dorg.gradle.internal.plugins.portal.url.override=${gradlePluginRepositoryMirrorUrl()}".toString()]
    
            if (!scripts.toList().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 21 09:28:30 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. docs_src/separate_openapi_schemas/tutorial001_py310.py

    
    app = FastAPI()
    
    
    @app.post("/items/")
    def create_item(item: Item):
        return item
    
    
    @app.get("/items/")
    def read_items() -> list[Item]:
        return [
            Item(
                name="Portal Gun",
                description="Device to travel through the multi-rick-verse",
            ),
            Item(name="Plumbus"),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 451 bytes
    - Viewed (0)
Back to top