Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for aeiouy (0.23 sec)

  1. src/strings/example_test.go

    	fmt.Println(strings.IndexFunc("Hello, world", f))
    	// Output:
    	// 7
    	// -1
    }
    
    func ExampleIndexAny() {
    	fmt.Println(strings.IndexAny("chicken", "aeiouy"))
    	fmt.Println(strings.IndexAny("crwth", "aeiouy"))
    	// Output:
    	// 2
    	// -1
    }
    
    func ExampleIndexByte() {
    	fmt.Println(strings.IndexByte("golang", 'g'))
    	fmt.Println(strings.IndexByte("gophers", 'h'))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/regexp/example_test.go

    	// Output:
    	// -T-T-
    	// --xx-
    	// ---
    	// -W-xxW-
    	// --xx-
    	// -W-xxW-
    }
    
    func ExampleRegexp_ReplaceAllStringFunc() {
    	re := regexp.MustCompile(`[^aeiou]`)
    	fmt.Println(re.ReplaceAllStringFunc("seafood fool", strings.ToUpper))
    	// Output:
    	// SeaFooD FooL
    }
    
    func ExampleRegexp_SubexpNames() {
    	re := regexp.MustCompile(`(?P<first>[a-zA-Z]+) (?P<last>[a-zA-Z]+)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            if (shortenedSubprojectName.length + prefix.length <= 80) {
                return shortenedSubprojectName
            }
            return shortenedSubprojectName.replace(Regex("[aeiou]"), "")
        }
    
        fun asName(): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    	}
    	ds.MemRegistry.AddGateways(origGateways...)
    	// Also add a hostname-based Gateway, which will be rejected.
    	ds.MemRegistry.AddGateways(model.NetworkGateway{
    		Network: "network2",
    		Addr:    "aeiou.scooby.do",
    		Port:    80,
    	})
    
    	// Run the tests and ensure that the new gateway is never used.
    	runNetworkFilterTest(t, ds, networkFiltered, "")
    }
    
    type networkFilterCase struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top