Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disambiguate (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    				// macro identifiers.
    				"self.getDate == 202",
    				"self.all == 203",
    				"self.size == '204'",
    				// _ is not escaped
    				"self._true == 301",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    					Name:     "dns-sctp",
    					Port:     53,
    					Protocol: v1.ProtocolSCTP,
    				},
    			}
    		}),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Param AST
    	Arg   AST
    }
    
    func (tpqa *TemplateParamQualifiedArg) print(ps *printState) {
    	// We only demangle the actual template argument.
    	// That is what the LLVM demangler does.
    	// The parameter disambiguates the argument,
    	// but is hopefully not required by a human reader.
    	ps.print(tpqa.Arg)
    }
    
    func (tpqa *TemplateParamQualifiedArg) Traverse(fn func(AST) bool) {
    	if fn(tpqa) {
    		tpqa.Param.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top