Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 724 for Trailing (0.13 sec)

  1. pkg/apis/apps/validation/validation.go

    )
    
    // ValidateStatefulSetName can be used to check whether the given StatefulSet name is valid.
    // Prefix indicates this name will be used as part of generation, in which case
    // trailing dashes are allowed.
    func ValidateStatefulSetName(name string, prefix bool) []string {
    	// TODO: Validate that there's room for the suffix inserted by the pods.
    	// Currently this is just "-index". In the future we may allow a user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	}
    	p.LineRune += utf8.RuneCountInString(s)
    	return p
    }
    
    // An Expr represents an input element.
    type Expr interface {
    	// Span returns the start and end position of the expression,
    	// excluding leading or trailing comments.
    	Span() (start, end Position)
    
    	// Comment returns the comments attached to the expression.
    	// This method would normally be named 'Comments' but that
    	// would interfere with embedding a type of the same name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/link.go

    Trim:
    	for i > min {
    		switch s[i-1] {
    		case '?', '!', '.', ',', ':', '@', '_', '~':
    			// Trim certain trailing punctuation.
    			i--
    			continue Trim
    
    		case ')':
    			// Trim trailing unmatched (by count only) parens.
    			if paren < 0 {
    				for s[i-1] == ')' && paren < 0 {
    					paren++
    					i--
    				}
    				continue Trim
    			}
    
    		case ';':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    			return l, nil
    		}
    		line = append(line, l...)
    		if !more {
    			break
    		}
    	}
    	return line, nil
    }
    
    // ReadContinuedLine reads a possibly continued line from r,
    // eliding the final trailing ASCII white space.
    // Lines after the first are considered continuations if they
    // begin with a space or tab character. In the returned data,
    // continuation lines are separated from the previous line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/search/search.go

    		if (m.pattern == "std" || m.pattern == "cmd") && src != cfg.GOROOTsrc {
    			continue
    		}
    
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		src = str.WithFilePathSeparator(filepath.Clean(src))
    		root := src
    		if m.pattern == "cmd" {
    			root += "cmd" + string(filepath.Separator)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/abiutils_test.go

    `)
    
    	abitest(t, ft, exp)
    }
    
    // TestABIUtilsEmptyFieldAtEndOfStruct is testing to make sure
    // the abi code is doing the right thing for struct types that have
    // a trailing zero-sized field (where the we need to add padding).
    func TestABIUtilsEmptyFieldAtEndOfStruct(t *testing.T) {
    	// type s struct { f1 [2]int64; f2 struct { } }
    	// type s2 struct { f1 [3]int16; f2 struct { } }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json.go

    	bigFail = []byte("FAIL")
    
    	// printed by 'go test' along with an error if the test binary terminates
    	// with an error.
    	bigFailErrorPrefix = []byte("FAIL\t")
    
    	// an === NAME line with no test name, if trailing spaces are deleted
    	emptyName     = []byte("=== NAME")
    	emptyNameLine = []byte("=== NAME  \n")
    
    	updates = [][]byte{
    		[]byte("=== RUN   "),
    		[]byte("=== PAUSE "),
    		[]byte("=== CONT  "),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  8. src/strconv/ftoa.go

    // printed by the 'e', 'E', 'f', 'g', 'G', 'x', and 'X' formats.
    // For 'e', 'E', 'f', 'x', and 'X', it is the number of digits after the decimal point.
    // For 'g' and 'G' it is the maximum number of significant digits (trailing
    // zeros are removed).
    // The special precision -1 uses the smallest number of digits
    // necessary such that ParseFloat will return f exactly.
    func FormatFloat(f float64, fmt byte, prec, bitSize int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/ingress_test.go

    						Count: count,
    					},
    					path:       "/test",
    					prefixPath: "/prefix/should",
    				},
    				{
    					// Prefix /prefix/test/ should match path /prefix/test
    					name: "http-prefix-matches-without-trailing-backslash",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/prefix/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

            withBuildScript(
                """
    
                task("test") {
                    doLast {
    
                        val myList = listOf(
                            "foo",
                            "bar", // trailing comma
                        )
    
                        print(myList)
                    }
                }
                """
            )
    
            assertThat(
                build("test", "-q").output,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top