Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 453 for dotV (0.17 sec)

  1. pkg/jwt/routing_test.go

    		{
    			name: "@request.auth.claims.key1",
    			want: RoutingClaim{Match: true, Separator: Dot, Claims: []string{"key1"}},
    		},
    		{
    			name: "@request.auth.claims.key1.KEY2",
    			want: RoutingClaim{Match: true, Separator: Dot, Claims: []string{"key1", "KEY2"}},
    		},
    		{
    			name: "@request.auth.claims.key1-key2",
    			want: RoutingClaim{Match: true, Separator: Dot, Claims: []string{"key1-key2"}},
    		},
    		{
    			name: "@request.auth.claims[]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/subr.go

    	if s == nil {
    		return n
    	}
    
    	switch path, ambig := dotpath(s, t, nil, false); {
    	case path != nil:
    		// rebuild elided dots
    		for c := len(path) - 1; c >= 0; c-- {
    			dot := ir.NewSelectorExpr(n.Pos(), ir.ODOT, n.X, path[c].field.Sym)
    			dot.SetImplicit(true)
    			dot.SetType(path[c].field.Type)
    			n.X = dot
    		}
    	case ambig:
    		base.Errorf("ambiguous selector %v", n)
    		n.X = nil
    	}
    
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse_test.go

    )
    
    type parseTest struct {
    	Regexp string
    	Dump   string
    }
    
    var parseTests = []parseTest{
    	// Base cases
    	{`a`, `lit{a}`},
    	{`a.`, `cat{lit{a}dot{}}`},
    	{`a.b`, `cat{lit{a}dot{}lit{b}}`},
    	{`ab`, `str{ab}`},
    	{`a.b.c`, `cat{lit{a}dot{}lit{b}dot{}lit{c}}`},
    	{`abc`, `str{abc}`},
    	{`a|^`, `alt{lit{a}bol{}}`},
    	{`a|b`, `cc{0x61-0x62}`},
    	{`(a)`, `cap{lit{a}}`},
    	{`(a)|b`, `alt{cap{lit{a}}lit{b}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/search/search.go

    // code will start with a domain name (dot in the first element).
    //
    // Note that this function is meant to evaluate whether a directory found in GOROOT
    // should be treated as part of the standard library. It should not be used to decide
    // that a directory found in GOPATH should be rejected: directories in GOPATH
    // need not have dots in the first element, and they just take their chances
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

            )
        }
    
        @Test
        fun `syntax error - dot after dot`() {
            assertDynamicInterpretationOf(
                """id("plugin-id-1"). .version("1.0")""",
                "Expecting token of type RBRACE, but got DOT instead"
            )
        }
    
        @Test
        fun `syntax error - dot after dot on next line`() {
            assertDynamicInterpretationOf(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Generate report in DOT format and postprocess with dot
    	"gif": {report.Dot, invokeDot("gif"), awayFromTTY("gif"), false, "Outputs a graph image in GIF format", reportHelp("gif", false, true)},
    	"pdf": {report.Dot, invokeDot("pdf"), awayFromTTY("pdf"), false, "Outputs a graph in PDF format", reportHelp("pdf", false, true)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/gradle.properties

    # tag::gradle-properties[]
    gradlePropertiesProp=gradlePropertiesValue
    gradleProperties.with.dots=gradlePropertiesDottedValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 152 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/closure.go

    func methodValueWrapper(dot *ir.SelectorExpr) *ir.Name {
    	if dot.Op() != ir.OMETHVALUE {
    		base.Fatalf("methodValueWrapper: unexpected %v (%v)", dot, dot.Op())
    	}
    
    	meth := dot.Sel
    	rcvrtype := dot.X.Type()
    	sym := ir.MethodSymSuffix(rcvrtype, meth, "-fm")
    
    	if sym.Uniq() {
    		return sym.Def.(*ir.Name)
    	}
    	sym.SetUniq(true)
    
    	base.FatalfAt(dot.Pos(), "missing wrapper for %v", meth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            assertEquals(expected, RegExpPatternStep.getRegExPattern(pattern));
        }
    
        @Test public void testGetRegExpPattern() {
            testPatternEscape("literal", "literal");
            testPatternEscape("dotq.", "dotq?");
            testPatternEscape("star.*stuff", "star*stuff");
            testPatternEscape("\\\\\\[\\]\\^\\-\\&\\.\\{\\}\\(\\)\\$\\+\\|\\<\\=\\!", "\\[]^-&.{}()$+|<=!");
            testPatternEscape("\\$\\&time", "$&time");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	dot := &bytes.Buffer{}
    	graph.ComposeDot(dot, g, &graph.DotAttributes{}, config)
    
    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    		http.Error(w, "Could not execute dot; may need to install graphviz.",
    			http.StatusNotImplemented)
    		ui.options.UI.PrintErr("Failed to execute dot. Is Graphviz installed?\n", err)
    		return
    	}
    
    	// Get all node names into an array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top