Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for Hellox (0.17 sec)

  1. src/net/url/url_test.go

    	{
    		"http://hello.世界.com/foo",
    		&URL{
    			Scheme: "http",
    			Host:   "hello.世界.com",
    			Path:   "/foo",
    		},
    		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
    	},
    	{
    		"http://hello.%e4%b8%96%e7%95%8c.com/foo",
    		&URL{
    			Scheme: "http",
    			Host:   "hello.世界.com",
    			Path:   "/foo",
    		},
    		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "dark-yellow",
                    "value": 75000000
                  },
                  {
                    "color": "dark-red",
                    "value": 100000000
                  }
                ]
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    			AttachmentMetadata: map[string]string{
    				"foo": "bar",
    			},
    			AttachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    			DetachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    		},
    	}, {
    		ObjectMeta: metav1.ObjectMeta{Name: "foo-with-inlinespec-and-status"},
    		Spec: storage.VolumeAttachmentSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    		wildcardIndex := map[host.Name]types.NamespacedName{
    			"*.example.org":       virtualServiceWithWildcardHost.NamespacedName(),
    			"*.hello.example.org": virtualServiceWithNestedWildcardHost.NamespacedName(),
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        server.protocols = Arrays.asList(Protocol.HTTP_2, Protocol.HTTP_1_1)
        requestBodySuccess(
          "Hello".toRequestBody("text/plain".toMediaType()),
          CoreMatchers.equalTo(5L),
          CoreMatchers.equalTo(19L),
        )
      }
    
      @Test
      fun requestBodySuccessHttp() {
        requestBodySuccess(
          "Hello".toRequestBody("text/plain".toMediaType()),
          CoreMatchers.equalTo(5L),
          CoreMatchers.equalTo(19L),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("response X-Modified header = %q; want %q", got, want)
    	}
    
    	io.WriteString(rwc, "Hello\n")
    	bs := bufio.NewScanner(rwc)
    	if !bs.Scan() {
    		t.Fatalf("Scan: %v", bs.Err())
    	}
    	got = bs.Text()
    	want = `backend got "Hello"`
    	if got != want {
    		t.Errorf("got %#q, want %#q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // templates:
      //   hello: |
      //     metadata:
      //       labels:
      //         hello: world
      //
      // Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod
      // being injected with the hello=world labels.
      // This is intended for advanced configuration only; most users should use the built in template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. tests/test_application.py

    from .main import app
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	e.EncodeToken(start)
    	e.EncodeToken(CharData([]byte("hello world")))
    	e.EncodeToken(EndElement{start.Name})
    	return nil
    }
    
    type MyMarshalerAttrTest struct {
    }
    
    var _ MarshalerAttr = (*MyMarshalerAttrTest)(nil)
    
    func (m *MyMarshalerAttrTest) MarshalXMLAttr(name Name) (Attr, error) {
    	return Attr{name, "hello world"}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                    custom redJar
                }
            """.stripIndent()
    
            and:
            file("src/main/java/Hello.java") << """
                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World!");
                    }
                }
            """
    
            when:
            succeeds ':outgoingVariants'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top