Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,181 for Avery (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/TaskVisibilityCrossVersionSpec.groovy

            when:
            BuildInvocations model = withConnection { connection ->
                connection.getModel(BuildInvocations)
            }
    
            then:
            model.tasks.every { Task t -> publicTasks.contains(t.name) == t.public }
            model.taskSelectors.every { TaskSelector ts -> publicSelectors.contains(ts.name) == ts.public }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_schema_extra_example/test_tutorial004.py

    
    # Test required and embedded body parameters with no bodies sent
    def test_post_body_example():
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    	// Start tracing.
    	//
    	// Set trace.enabled. This is *very* subtle. We need to maintain the invariant that if
    	// trace.gen != 0, then trace.enabled is always observed as true. Simultaneously, for
    	// performance, we need trace.enabled to be read without any synchronization.
    	//
    	// We ensure this is safe by stopping the world, which acts a global barrier on almost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        // launched by this test is either:
        //
        // (a) Blocked attempting to enter the monitor.
        // (b) Waiting for the single guard to become satisfied.
        // (c) Occupying the monitor and awaiting the tearDownLatch.
        //
        // Except for (c), every thread should occupy the monitor very briefly, and every thread leaves
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            def products = generateManifest.package.get().products
            products.name == ["app1", "app2"]
            products.target.name == ["app1", "app2"]
            products.target.publicHeaderDir == [null, null]
            products.every { it instanceof DefaultExecutableProduct }
        }
    
        def "adds a library product for each project that produces a C++ library"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            collectMapValues([], transformer { it * 10 }) == [:]
        }
    
        def "every"() {
            expect:
            every([1, 2, 3], { it < 4 })
            !every([1, 2, 4], { it < 4 })
            !every([1], { it instanceof String })
            every([], { false })
        }
    
        def "intersection"() {
            expect:
            intersection([collA, collB]) == collC
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/go/ast/commentmap_test.go

    // associated with f2
    
    // f2
    func f2() {
    }
    
    func f3() {
    	i := 1 /* 1 */ + 2 // addition
    	_ = i
    }
    
    // the very last comment
    `
    
    // res maps a key of the form "line number: node type"
    // to the associated comments' text.
    var res = map[string]string{
    	" 5: *ast.File":       "the very first comment\npackage p\n",
    	" 5: *ast.Ident":      " the name is p\n",
    	" 8: *ast.GenDecl":    "imports\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        // launched by this test is either:
        //
        // (a) Blocked attempting to enter the monitor.
        // (b) Waiting for the single guard to become satisfied.
        // (c) Occupying the monitor and awaiting the tearDownLatch.
        //
        // Except for (c), every thread should occupy the monitor very briefly, and every thread leaves
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial004_an.py

    
    # Test required and embedded body parameters with no bodies sent
    def test_post_body_example():
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

            generatedSourceDirectories.collect { it.directory } == [file('foo')]
            generatedSourceDirectories.every { contentRoot.sourceDirectories.contains(it) }
            generatedTestDirectories.every { contentRoot.testDirectories.contains(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top