Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 230 for curly (0.08 sec)

  1. pkg/config/security/security_test.go

    			values:    []string{"/{*}/foo/{temp"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with unmatched closed curly brace",
    			values:    []string{"/{*}/foo/temp}/bar"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchOneTemplate with unmatched closed curly brace and `*`",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json_issue35169.txt

    ! go test -json .
    
    	# We should see only JSON output on stdout, no non-JSON.
    	# To simplify the check, we just look for non-curly-braces, since
    	# every JSON entry has them and they're unlikely to occur
    	# in other error messages.
    ! stdout '^[^{]'
    ! stdout '[^}]\n$'
    
    	# Since the only test we requested failed to build, we should
    	# not see any "pass" actions in the JSON stream.
    ! stdout '\{.*"Action":"pass".*\}'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments.golden

    	for i = 0;	// comment after semicolon
    	i < 9;		/* comment after semicolon */
    	i++ {		// comment after opening curly brace
    	}
    
    	// TODO(gri) the last comment in this example should be aligned */
    	for i = 0;	// comment after semicolon
    	i < 9;		/* comment before semicolon - ok to move after semicolon */
    	i++ /* comment before opening curly brace */ {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments.input

    	for
    		i=0;// comment after semicolon
    		i<9;/* comment after semicolon */
    		i++{// comment after opening curly brace
    	}
    
    	// TODO(gri) the last comment in this example should be aligned */
    	for
    		i=0;// comment after semicolon
    		i<9/* comment before semicolon - ok to move after semicolon */;
    		i++ /* comment before opening curly brace */ {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	if b.config.Title != "" {
    		graphname = b.config.Title
    	}
    	fmt.Fprintln(b, `digraph "`+graphname+`" {`)
    	fmt.Fprintln(b, `node [style=filled fillcolor="#f8f8f8"]`)
    }
    
    // finish closes the opening curly bracket in the constructed DOT buffer.
    func (b *builder) finish() {
    	fmt.Fprintln(b, "}")
    }
    
    // addLegend generates a legend in DOT format.
    func (b *builder) addLegend() {
    	labels := b.config.Labels
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    			if ch != bom {
    				// Report an informative error for U+201[CD] quotation
    				// marks, which are easily introduced via copy and paste.
    				if ch == '“' || ch == '”' {
    					s.errorf(s.file.Offset(pos), "curly quotation mark %q (use neutral %q)", ch, '"')
    				} else {
    					s.errorf(s.file.Offset(pos), "illegal character %#U", ch)
    				}
    			}
    			insertSemi = s.insertSemi // preserve insertSemi info
    			tok = token.ILLEGAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    }
    #endif
    
    // Overload for C arrays.  Multi-dimensional arrays are printed
    // properly.
    
    // Prints the given number of elements in an array, without printing
    // the curly braces.
    template <typename T>
    void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
      UniversalPrint(a[0], os);
      for (size_t i = 1; i != count; i++) {
        *os << ", ";
        UniversalPrint(a[i], os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  9. src/go/scanner/scanner_test.go

    	{"abc\x00def", token.IDENT, 3, "abc", "illegal character NUL"},
    	{"abc\x00", token.IDENT, 3, "abc", "illegal character NUL"},
    	{"“abc”", token.ILLEGAL, 0, "abc", `curly quotation mark '“' (use neutral '"')`},
    }
    
    func TestScanErrors(t *testing.T) {
    	for _, e := range errors {
    		checkError(t, e.src, e.tok, e.pos, e.lit, e.err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    }
    #endif
    
    // Overload for C arrays.  Multi-dimensional arrays are printed
    // properly.
    
    // Prints the given number of elements in an array, without printing
    // the curly braces.
    template <typename T>
    void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
      UniversalPrint(a[0], os);
      for (size_t i = 1; i != count; i++) {
        *os << ", ";
        UniversalPrint(a[i], os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top