Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 300 for foo_vr (1.7 sec)

  1. docs_src/app_testing/app_b_py310/test_main.py

    def test_create_item():
        response = client.post(
            "/items/",
            headers={"X-Token": "coneofsilence"},
            json={"id": "foobar", "title": "Foo Bar", "description": "The Foo Barters"},
        )
        assert response.status_code == 200
        assert response.json() == {
            "id": "foobar",
            "title": "Foo Bar",
            "description": "The Foo Barters",
        }
    
    
    def test_create_item_bad_token():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

      absl::optional<int> foo = internal::FindNodeAtPath("foo", object_graph);
      ASSERT_TRUE(foo.has_value());
      EXPECT_EQ(*foo, 1);
    
      absl::optional<int> foo_bar =
          internal::FindNodeAtPath("foo.bar", object_graph);
      ASSERT_TRUE(foo_bar.has_value());
      EXPECT_EQ(*foo_bar, 3);
    
      absl::optional<int> foo_bar_parent =
          internal::FindNodeAtPath("foo.bar.parent", object_graph);
      ASSERT_TRUE(foo_bar_parent.has_value());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

        def "accessing the task by path from containing project is safe"() {
            buildFile << """
                task foobar
                println "the name: " + tasks.getByPath(":foobar").name
            """
    
            when:
            run()
    
            then:
            output.contains "the name: foobar"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/esreq/admin_esreq.jsp

    										/></label>
    									<div class="col-sm-9">
    										<input id="requestFile" type="file" name="requestFile" class="form-control-file" />
    									</div>
    								</div>
    							</div>
    							<div class="card-footer">
    								<c:if test="${editable}">
    									<button type="submit" class="btn btn-primary" name="upload">
    										<em class="fa fa-upload">
    										<la:message key="labels.esreq_button_upload" />
    									</button>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 20 09:26:42 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions/src/main/java/org/gradle/docs/asciidoctor/GradleDocsHtmlAsciidoctorExtensionRegistry.java

        private static final String HEAD_HTML_PATH = "/head.html";
        private static final String HEADER_HTML_PATH = "/header.html";
        private static final String FOOTER_HTML_PATH = "/footer.html";
    
        private String headHtml;
        private String headerHtml;
        private String footerHtml;
    
    
        @Override
        public void register(Asciidoctor asciidoctor) {
            initializeHtmlToInject();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard.jsp

                                        <la:message key="labels.wizard_start_desc"/>
                                    </p>
                                </div>
                                <div class="card-footer">
                                    <c:if test="${editable}">
                                        <button type="submit" class="btn btn-primary"
                                                name="crawlingConfigForm"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/mavenMigration/profiles/tests/greeting-default.out

    foobar...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_query_params_str_validations/test_tutorial012_an_py39.py

        assert response.json() == {"q": ["foo", "bar"]}
    
    
    @needs_py39
    def test_multi_query_values(client: TestClient):
        url = "/items/?q=baz&q=foobar"
        response = client.get(url)
        assert response.status_code == 200, response.text
        assert response.json() == {"q": ["baz", "foobar"]}
    
    
    @needs_py39
    def test_openapi_schema(client: TestClient):
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/test/resources/org/codelibs/core/message/strings_en_US.properties

    text=foobar...
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 12 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/profile-default.gradle.kts

    val message by extra("foobar")  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
Back to top