Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 358 for xHello (0.12 sec)

  1. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    metadata:
      creationTimestamp: null
      name: hello-v1
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      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: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/log/scope_test.go

    		{
    			f:   func() { s.Infof("Hello") },
    			pat: timePattern + "\tinfo\ttestScope\tHello",
    		},
    		{
    			f:   func() { s.Infof("%s", "Hello") },
    			pat: timePattern + "\tinfo\ttestScope\tHello",
    		},
    
    		{
    			f:   func() { s.Warn("Hello") },
    			pat: timePattern + "\twarn\ttestScope\tHello",
    		},
    		{
    			f:   func() { s.Warnf("Hello") },
    			pat: timePattern + "\twarn\ttestScope\tHello",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            where:
            include             | text
            'HELLO'             | '''
                #define _HELLO(X) #X
                #define HELLO _HELLO(hello.h)
                #include HELLO
            '''
            '_HELLO(hello . h)' | '''
                #define _HELLO(X) #X
                #include _HELLO(hello.h)
            '''
            'MISSING'           | '''
                #ifdef MISSING
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            and:
            file("src/hello/cpp/hello.cpp") << """
                #include <iostream>
    
                void hello(const char* str) {
                  #ifdef ENABLE_GREETING
                  std::cout << str;
                  #endif
                }
            """
    
            and:
            file("src/hello/headers/hello.h") << """
                void hello(const char* str);
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. src/text/template/parse/parse_test.go

    	{"simple range", "{{range .X}}hello{{end}}", noError,
    		`{{range .X}}"hello"{{end}}`},
    	{"chained field range", "{{range .X.Y.Z}}hello{{end}}", noError,
    		`{{range .X.Y.Z}}"hello"{{end}}`},
    	{"nested range", "{{range .X}}hello{{range .Y}}goodbye{{end}}{{end}}", noError,
    		`{{range .X}}"hello"{{range .Y}}"goodbye"{{end}}{{end}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			in:   hex("a25f426865436c6c6fff015f416844656c6c6fff02"), // {(_ 'he', 'llo'): 1, (_ 'h', 'ello'): 2}
    			into: struct {
    				Hello int `json:"hello"`
    			}{},
    			assertOnError: assertIdenticalError(&cbor.DupMapKeyError{Key: string("hello"), Index: 1}),
    		},
    		{
    			name:          "reject two identical indefinite-length byte string keys split into chunks differently into map",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

            def appProject = xcodeProject("app/app.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS == toSpaceSeparatedList(file("hello/build/modules/main/debug"), file("log/build/modules/main/debug"))
            def helloProject = xcodeProject("hello/hello.xcodeproj").projectFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            given:
            sourceFile << """
                #include <hello.h>
                #include \\
                    <hello.h>
                #include/* */<hello.h>
            """
    
            expect:
            resolve() == [header]
        }
    
        def "does not resolve macro with multiple tokens"() {
            given:
            sourceFile << """
                #define HEADER ${value}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            "direct"     | "\$.components.hello"
            "map"        | "library: 'hello'"
        }
    
        @ToBeFixedForConfigurationCache
        def "can use map #notationName notation to reference library dependency of binary"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            createDirs("app", "hello", "log")
            settingsFile << "include 'app', 'hello', 'log'"
            def app = new SwiftAppWithLibraries()
    
            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'swift-application'
                    dependencies {
                        implementation project(':hello')
                    }
                }
                project(':hello') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top