Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for greetings (0.09 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    plugins {
        application
    }
    
    applicationDefaultJvmArgs = listOf("-Dgreeting.language=en") // Accessing a convention
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'application'
    }
    
    applicationDefaultJvmArgs = ['-Dgreeting.language=en'] // Accessing a convention
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			"&%22\\",
    		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\x21`),
    		URL(`greeting=H%69&addressee=(World)`),
    	}
    
    	for n0, m := range redundantFuncs {
    		f0 := funcMap[n0].(func(...any) string)
    		for n1 := range m {
    			f1 := funcMap[n1].(func(...any) string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top