Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for _Colon (0.1 sec)

  1. test/fixedbugs/bug274.go

    // Each statement in the list of statements for each case clause must be
    // terminated with a semicolon. No semicolon is present for the labeled
    // statements and because the last token is a colon ":", no semicolon is
    // inserted automatically.
    //
    // Both gccgo and gofmt correctly refuse this program as is and accept it
    // when the semicolons are present.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 888 bytes
    - Viewed (0)
  2. src/net/ipsock.go

    		case len(hostport):
    			// There can't be a ':' behind the ']' now.
    			return addrErr(hostport, missingPort)
    		case i:
    			// The expected result.
    		default:
    			// Either ']' isn't followed by a colon, or it is
    			// followed by a colon that is not the last one.
    			if hostport[end+1] == ':' {
    				return addrErr(hostport, tooManyColons)
    			}
    			return addrErr(hostport, missingPort)
    		}
    		host = hostport[1:end]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/encoding/pem/pem.go

    			continue
    		}
    		result[n] = b
    		n++
    	}
    
    	return result[0:n]
    }
    
    var pemStart = []byte("\n-----BEGIN ")
    var pemEnd = []byte("\n-----END ")
    var pemEndOfLine = []byte("-----")
    var colon = []byte(":")
    
    // Decode will find the next PEM formatted block (certificate, private key
    // etc) in the input. It returns that block and the remainder of the input. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactoryTest.groovy

            'us%5B%5B%23%3B%C3%BCr:pas%23:%5D()' | 'us[[#;ür' | 'pas#:]()'
            'user'                               | null       | null
        }
    
        def "username cannot contain colon"() {
            // Known limitation. The user should use the DSL
            when:
            def credentials = extractCredentialsFromUserInfo(new URI("https://us%3Aer:******@****.***"))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskpath/ProjectNameMatchingIntegrationTest.groovy

            outputDoesNotContain("abbreviated")
    
            where:
            desc                                    | projectPath                           | resolvedProject
            "root (no colon)"                       | ""                                    | ":"                      // Global root
            "projectA"                              | ":projectA"                           | ":projectA"              // Subprojects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. src/go/token/token.go

    	GEQ      // >=
    	DEFINE   // :=
    	ELLIPSIS // ...
    
    	LPAREN // (
    	LBRACK // [
    	LBRACE // {
    	COMMA  // ,
    	PERIOD // .
    
    	RPAREN    // )
    	RBRACK    // ]
    	RBRACE    // }
    	SEMICOLON // ;
    	COLON     // :
    	operator_end
    
    	keyword_beg
    	// Keywords
    	BREAK
    	CASE
    	CHAN
    	CONST
    	CONTINUE
    
    	DEFAULT
    	DEFER
    	ELSE
    	FALLTHROUGH
    	FOR
    
    	FUNC
    	GO
    	GOTO
    	IF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/os/user/lookup.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package user
    
    import "sync"
    
    const (
    	userFile  = "/etc/passwd"
    	groupFile = "/etc/group"
    )
    
    var colon = []byte{':'}
    
    // Current returns the current user.
    //
    // The first call will cache the current user information.
    // Subsequent calls will return the cached value and will not reflect
    // changes to the current user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement_test.go

    	_, err := NewPathElement("r:Hello")
    	if err != nil {
    		t.Fatalf("Unknown qualifiers should be ignored")
    	}
    }
    
    func TestNewPathElementError(t *testing.T) {
    	tests := []string{
    		``,
    		`no-colon`,
    		`i:index is not a number`,
    		`i:1.23`,
    		`i:`,
    		`v:invalid json`,
    		`v:`,
    		`k:invalid json`,
    		`k:{"name":invalid}`,
    	}
    
    	for _, test := range tests {
    		t.Run(test, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/positions.go

    		case *RangeClause:
    			m = n.X
    		case *CaseClause:
    			if l := lastStmt(n.Body); l != nil {
    				m = l
    				continue
    			}
    			return n.Colon
    		case *CommClause:
    			if l := lastStmt(n.Body); l != nil {
    				m = l
    				continue
    			}
    			return n.Colon
    
    		default:
    			return n.Pos()
    		}
    	}
    }
    
    func lastDecl(list []Decl) Decl {
    	if l := len(list); l > 0 {
    		return list[l-1]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/ip_test.go

    		},
    		{
    			name:             "parse invalid ipv6",
    			expr:             `ip("2001:db8:::68")`,
    			expectRuntimeErr: "IP Address \"2001:db8:::68\" parse error during conversion from string: ParseAddr(\"2001:db8:::68\"): each colon-separated field must have at least one digit (at \":68\")",
    		},
    		{
    			name:         "isIP valid ipv6",
    			expr:         `isIP("2001:db8::68")`,
    			expectResult: trueVal,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:07 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top