Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for xHello (0.48 sec)

  1. 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)
  2. src/os/os_test.go

    	}
    	if string(b) != "hello" {
    		t.Fatalf("Read: have %q want %q", string(b), "hello")
    	}
    }
    
    // Verify that ReadAt doesn't allow negative offset.
    func TestReadAtNegativeOffset(t *testing.T) {
    	t.Parallel()
    
    	f := newFile("TestReadAtNegativeOffset", t)
    	defer Remove(f.Name())
    	defer f.Close()
    
    	const data = "hello, world\n"
    	io.WriteString(f, data)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        def injectsGenericTypesFromParentIntoProviderFactoryMethod() {
            def parent = new DefaultServiceRegistry() {
                @Provides
                Callable<String> createStringCallable() {
                    return { "hello" }
                }
    
                @Provides
                Factory<String> createStringFactory() {
                    return { "world" } as Factory
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [source.multi-language-sample,c]
    .src/hello/headers/pch.h
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/src/hello/headers/pch.h[]
    ----
    
    === Example: Including a precompiled header file in a source file
    
    [source.multi-language-sample,cpp]
    .src/hello/cpp/hello.cpp
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/src/hello/cpp/hello.cpp[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K 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. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    hasAttribute('custom', 'hello')
                }
                dependency('publishTest:utils:1.0') {
                    hasAttribute('custom', 'bazinga')
                }
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                dependency('org.test:bar:1.0') {
                    hasAttribute('custom', 'hello')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
Back to top