Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Precedence (0.26 sec)

  1. src/go/printer/nodes.go

    // Expressions
    
    func walkBinary(e *ast.BinaryExpr) (has4, has5 bool, maxProblem int) {
    	switch e.Op.Precedence() {
    	case 4:
    		has4 = true
    	case 5:
    		has5 = true
    	}
    
    	switch l := e.X.(type) {
    	case *ast.BinaryExpr:
    		if l.Op.Precedence() < e.Op.Precedence() {
    			// parens will be inserted.
    			// pretend this is an *ast.ParenExpr and do nothing.
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val incDecPrecedence = when (psi) {
                    is KtPostfixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX
                    else -> KaCompoundAccess.IncOrDecOperation.Precedence.PREFIX
                }
                val incOrDecOperationKind = psi.getInOrDecOperationKind()
                val baseExpression = deparenthesize(psi.baseExpression)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    					return fmt.Errorf("failed to precedence kubeletConfigFlag: %w", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    					Attributes: ServiceAttributes{
    						Name:      "foo",
    						Namespace: "ns",
    					},
    				},
    			},
    			nil,
    		},
    		{
    			"no-sidecar-config-k8s-service-take-precedence",
    			nil,
    			services25,
    			nil,
    			[]*Service{
    				{
    					Hostname: "foobar.svc.cluster.local",
    					Ports:    port7443,
    					Attributes: ServiceAttributes{
    						Name:      "bar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    config_setting(
        name = "linux_x86_64_no_sse",
        values = {
            "cpu": "k8",
            "copt": "-mno-sse4.2",
        },
        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    # TODO(b/290533709): Remove this with PJRT build rule cleanup.
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    			expectedGateway: map[string][]string{
    				// No overrides, use default
    				"alt-known.default.svc.cluster.local": {"outbound|80||alt-known.default.svc.cluster.local"},
    				// Explicit has precedence
    				"known.default.svc.cluster.local": {"outbound|80||explicit.example.com"},
    				// Last is our wildcard
    				"*.cluster.local": {"outbound|80||wild.example.com"},
    			},
    			oldestWins: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    				},
    				"test-duplicate-domains.default:80": {"test-duplicate-domains.default"},
    			},
    			map[string]string{
    				"allow_any": "PassthroughCluster",
    				// Virtual service destination takes precedence
    				"test-duplicate-domains.default.svc.cluster.local:80": "outbound|80||test-duplicate-domains.default",
    				"test-duplicate-domains.default:80":                   "outbound|80||test-duplicate-domains.default",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // end_mask.
        revised_begin_mask |= strided_slice_op.getNewAxisMask();
        revised_end_mask |= strided_slice_op.getNewAxisMask();
    
        // Enforce operator precedence.
        uint64_t revised_shrink_axis_mask = strided_slice_op.getShrinkAxisMask() &
                                            ~strided_slice_op.getNewAxisMask();
    
        auto attribute_type = rewriter.getIntegerType(64);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		if operations.Authority != "" && action.HostRewriteSpecifier == nil {
    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    func (p *parser) parseBinaryExpr(lhs bool, prec1 int) ast.Expr {
    	if p.trace {
    		defer un(trace(p, "BinaryExpr"))
    	}
    
    	x := p.parseUnaryExpr(lhs)
    	for prec := p.tok.Precedence(); prec >= prec1; prec-- {
    		for p.tok.Precedence() == prec {
    			pos, op := p.pos, p.tok
    			p.next()
    			if lhs {
    				p.resolve(x)
    				lhs = false
    			}
    			y := p.parseBinaryExpr(false, prec+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top