Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Precedence (0.72 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/request.go

    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    // parameters take precedence over URL query string values in r.Form.
    //
    // If the request Body's size has not already been limited by [MaxBytesReader],
    // the size is capped at 10MB.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    	{
    		CaseName: Name(""),
    		in:       `{"0":false,"10":true}`,
    		ptr:      new(map[uintptr]bool),
    		out:      map[uintptr]bool{0: false, 10: true},
    	},
    
    	// Check that MarshalText and UnmarshalText take precedence
    	// over default integer handling in map keys.
    	{
    		CaseName: Name(""),
    		in:       `{"u2":4}`,
    		ptr:      new(map[u8marshal]int),
    		out:      map[u8marshal]int{2: 4},
    	},
    	{
    		CaseName: Name(""),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required.
      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top