Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 156 for Rbrace (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    // Return the parsed components of a URL.
    //
    //   - getScheme: If absent in the URL, returns an empty string.
    //
    //   - getHostname: IPv6 addresses are returned without braces, e.g. "::1". If absent in the URL, returns an empty string.
    //
    //   - getHost: IPv6 addresses are returned with braces, e.g. "[::1]". If absent in the URL, returns an empty string.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

            if (repositoryUrl.contains("${")) {
                // the repository url contains unresolved properties and getting the basedir is not possible
                // in JDK 20+ 'new URL(string)' will fail if the string contains a curly brace
                this.basedir = null;
            } else {
                try {
                    URL url = new URL(repository.getUrl());
                    if ("file".equals(url.getProtocol())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java

          builder.append(args[i++]);
          templateStart = placeholderStart + 2;
        }
        builder.append(template.substring(templateStart));
    
        // if we run out of placeholders, append the extra args in square braces
        if (i < args.length) {
          builder.append(" [");
          builder.append(args[i++]);
          while (i < args.length) {
            builder.append(", ");
            builder.append(args[i++]);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  4. src/os/env.go

    func getShellName(s string) (string, int) {
    	switch {
    	case s[0] == '{':
    		if len(s) > 2 && isShellSpecialVar(s[1]) && s[2] == '}' {
    			return s[1:2], 3
    		}
    		// Scan to closing brace
    		for i := 1; i < len(s); i++ {
    			if s[i] == '}' {
    				if i == 1 {
    					return "", 2 // Bad syntax; eat "${}"
    				}
    				return s[1:i], i + 1
    			}
    		}
    		return "", 1 // Bad syntax; eat "${"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-legacy-istio-trace-tags.yaml

    John Howard <******@****.***> 1682564684 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:44 UTC 2023
    - 143 bytes
    - Viewed (0)
  6. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/Platform.java

          builder.append(args[i++]);
          templateStart = placeholderStart + 2;
        }
        builder.append(template.substring(templateStart));
    
        // if we run out of placeholders, append the extra args in square braces
        if (i < args.length) {
          builder.append(" [");
          builder.append(args[i++]);
          while (i < args.length) {
            builder.append(", ");
            builder.append(args[i++]);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 04 15:31:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/race/race_test.go

    }
    
    // processLog verifies whether the given ThreadSanitizer's log
    // contains a race report, checks this information against
    // the name of the testcase and returns the result of this
    // comparison.
    func processLog(testName string, tsanLog []string) string {
    	if !strings.HasPrefix(testName, "Race") && !strings.HasPrefix(testName, "NoRace") {
    		return ""
    	}
    	gotRace := false
    	for _, s := range tsanLog {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. Makefile

    test-configfile: install-race
    	@env bash $(PWD)/docs/distributed/distributed-from-config-file.sh
    
    test-upgrade: install-race
    	@echo "Running minio upgrade tests"
    	@(env bash $(PWD)/buildscripts/minio-upgrade.sh)
    
    test-race: verifiers build ## builds minio, runs linters, tests (race)
    	@echo "Running unit tests under -race"
    	@(env bash $(PWD)/buildscripts/race.sh)
    
    test-iam: install-race ## verify IAM (external IDP, etcd backends)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner.go

    		s.rawString()
    
    	case '\'':
    		s.rune()
    
    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    	case '[':
    		s.nextch()
    		s.tok = _Lbrack
    
    	case '{':
    		s.nextch()
    		s.tok = _Lbrace
    
    	case ',':
    		s.nextch()
    		s.tok = _Comma
    
    	case ';':
    		s.nextch()
    		s.lit = "semicolon"
    		s.tok = _Semi
    
    	case ')':
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _Rparen
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  10. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                <property name="tokens" value="LITERAL_CATCH"/>
            </module>
            <module name="AvoidNestedBlocks">
                <property name="allowInSwitchCase" value="true"/>
            </module>
    
            <!-- Braces -->
            <module name="LeftCurly"/>
            <module name="RightCurly"/>
            <module name="NeedBraces"/>
    
            <!-- Whitespace -->
            <module name="GenericWhitespace"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
Back to top