Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 300 for foo_vr (0.45 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

        protected abstract void generateReportFor(ProjectDetails project, T model);
    
        /**
         * Provides a means of printing a customizable footer section below the per-project details body
         * of the report.
         * <p>
         * By default, there is no footer information printed.
         *
         * @param modelsByProjectDetails information about the projects under report
         * @since 8.9
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tests/test_security_http_base_description.py

    
    client = TestClient(app)
    
    
    def test_security_http_base():
        response = client.get("/users/me", headers={"Authorization": "Other foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Other", "credentials": "foobar"}
    
    
    def test_security_http_base_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 403, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/envoyfilter_test.go

    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    							Proxy: &networking.EnvoyFilter_ProxyMatch{ProxyVersion: `foobar`},
    						},
    					},
    				},
    			},
    			"",
    			map[string]bool{
    				"1.19":         false,
    				"1.19.0":       false,
    				"1.19-dev.foo": false,
    				"foobar":       true,
    			},
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. pkg/apis/discovery/v1beta1/defaults_test.go

    		"should not overwrite values with defaults when set": {
    			original: &discovery.EndpointSlice{
    				Ports: []discovery.EndpointPort{{
    					Name:     &fooStr,
    					Protocol: &protoUDP,
    				}},
    			},
    			expected: &discovery.EndpointSlice{
    				Ports: []discovery.EndpointPort{{
    					Name:     &fooStr,
    					Protocol: &protoUDP,
    				}},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		actual := test.original
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

      }
    
      public void testFindClassesToTest_ignoreUnderscores() {
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class, Foo_Bar.class);
        sanityTests.ignoreClasses(AbstractPackageSanityTests.UNDERSCORE_IN_NAME);
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/sorted_resource_name_list_test.go

    		api.ResourceName(""),
    		api.ResourceName("42"),
    		api.ResourceName("bar"),
    		api.ResourceName("foo"),
    		api.ResourceName("foo"),
    		api.ResourceName("foobar"),
    	}
    
    	in := SortableResourceNames{
    		api.ResourceName("foo"),
    		api.ResourceName("42"),
    		api.ResourceName("foobar"),
    		api.ResourceName("foo"),
    		api.ResourceName("bar"),
    		api.ResourceName(""),
    	}
    
    	sort.Sort(in)
    	if !reflect.DeepEqual(in, want) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  7. tests/test_security_http_bearer.py

    
    client = TestClient(app)
    
    
    def test_security_http_bearer():
        response = client.get("/users/me", headers={"Authorization": "Bearer foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Bearer", "credentials": "foobar"}
    
    
    def test_security_http_bearer_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 403, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. tests/test_security_http_digest_description.py

    
    client = TestClient(app)
    
    
    def test_security_http_digest():
        response = client.get("/users/me", headers={"Authorization": "Digest foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Digest", "credentials": "foobar"}
    
    
    def test_security_http_digest_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 403, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/encoding/json/tags_test.go

    package json
    
    import (
    	"testing"
    )
    
    func TestTagParsing(t *testing.T) {
    	name, opts := parseTag("field,foobar,foo")
    	if name != "field" {
    		t.Fatalf("name = %q, want field", name)
    	}
    	for _, tt := range []struct {
    		opt  string
    		want bool
    	}{
    		{"foobar", true},
    		{"foo", true},
    		{"bar", false},
    	} {
    		if opts.Contains(tt.opt) != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 583 bytes
    - Viewed (0)
  10. tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py

        assert response.json() == {"q": ["foo", "bar"]}
    
    
    def test_multi_query_values():
        url = "/items/?q=baz&q=foobar"
        response = client.get(url)
        assert response.status_code == 200, response.text
        assert response.json() == {"q": ["baz", "foobar"]}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top