Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,377 for Hellox (0.16 sec)

  1. pkg/kube/inject/testdata/inject/hello-template-in-values.iop.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 279 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/merge-probers.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 02:54:48 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/html/template/content_test.go

    	"testing"
    )
    
    func TestTypedContent(t *testing.T) {
    	data := []any{
    		`<b> "foo%" O'Reilly &bar;`,
    		CSS(`a[href =~ "//example.com"]#foo`),
    		HTML(`Hello, <b>World</b> &amp;tc!`),
    		HTMLAttr(` dir="ltr"`),
    		JS(`c && alert("Hello, World!");`),
    		JSStr(`Hello, World & O'Reilly\u0021`),
    		URL(`greeting=H%69,&addressee=(World)`),
    		Srcset(`greeting=H%69,&addressee=(World) 2x, https://golang.org/favicon.ico 500.5w`),
    		URL(`,foo/,`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

            """
    
            and:
            file("source", "hello", "hello.h") << """
                void hello();
            """
    
            and:
            file("source", "app", "main", "main.cpp") << """
                #include "hello.h"
                extern "C" {
                    #include "otherProject/bonjour.h"
                }
    
                int main () {
                  hello();
                  bonjour();
                  return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/startup_live.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 952 bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client.go

    		}
    		ech = &echContext{config: echConfig}
    		hello.encryptedClientHello = []byte{1} // indicate inner hello
    		// We need to explicitly set these 1.2 fields to nil, as we do not
    		// marshal them when encoding the inner hello, otherwise transcripts
    		// will later mismatch.
    		hello.supportedPoints = nil
    		hello.ticketSupported = false
    		hello.secureRenegotiationSupported = false
    		hello.extendedMasterSecret = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
            assertThat(result.output, containsString('hello'))
    
            when:
            result = wrapperExecuter.withTasks('hello').run()
    
            then:
            assertThat(result.output, containsString('hello'))
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/1537')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            then:
            output.contains """Detailed task information for hello
    
    Paths
         :hello
         :someproj1:hello
         :someproj2:hello
    
    Type
         Task (org.gradle.api.Task)
    
    Options
    ${builtInOptions}
    
    Description
         -
    
    Groups
         (:hello) group of root task
         (:someproj1:hello) group of subproject task
         (:someproj2:hello) group of subproject task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/not-rsc.io_quote_v0.1.0-nomod.txt

    // license that can be found in the LICENSE file.
    
    package quote
    
    import "testing"
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    	glass := "I can eat glass and it doesn't hurt me."
    	if out := Glass(); out != glass {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 24 17:40:35 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top