Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for precedence (0.33 sec)

  1. android/guava/src/com/google/common/reflect/TypeResolver.java

            // and enclosingclass -> superClass paths.
            // Since we follow the path of superclass first, enclosing second,
            // superclass mapping should take precedence.
            return;
          }
          // First, check whether var -> arg forms a cycle
          for (Type t = arg; t != null; t = mappings.get(TypeVariableKey.forLookup(t))) {
            if (var.equalsType(t)) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 24.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cookie.kt

                sameSite = attributeValue
              }
            }
    
            pos = attributePairEnd + 1
          }
    
          // If 'Max-Age' is present, it takes precedence over 'Expires', regardless of the order the two
          // attributes are declared in the cookie string.
          if (deltaSeconds == Long.MIN_VALUE) {
            expiresAt = Long.MIN_VALUE
          } else if (deltaSeconds != -1L) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // FlowSchema is among those with the numerically lowest (which we take to be logically highest)
      // MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000].
      // Note that if the precedence is not specified, it will be set to 1000 as default.
      // +optional
      optional int32 matchingPrecedence = 2;
    
      // `distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // FlowSchema is among those with the numerically lowest (which we take to be logically highest)
      // MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000].
      // Note that if the precedence is not specified, it will be set to 1000 as default.
      // +optional
      optional int32 matchingPrecedence = 2;
    
      // `distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  5. doc/asm.html

    it is a distinct program, so there are some differences.
    One is in constant evaluation.
    Constant expressions in the assembler are parsed using Go's operator
    precedence, not the C-like precedence of the original.
    Thus <code>3&amp;1&lt;&lt;2</code> is 4, not 0—it parses as <code>(3&amp;1)&lt;&lt;2</code>
    not <code>3&amp;(1&lt;&lt;2)</code>.
    Also, constants are always evaluated as 64-bit unsigned integers.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

         *            The Type-2 message which this represents a response to.
         * @param targetName
         *            SPN of the target system, optional
         * @param passwordHash
         *            The NT password hash, takes precedence over password (which is no longer required unless legacy LM
         *            authentication is needed)
         * @param password
         *            The password to use when constructing the response.
         * @param domain
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  7. Makefile.core.mk

    ISTIO_GO := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
    export ISTIO_GO
    SHELL := /bin/bash -o pipefail
    
    # Version can be defined:
    # (1) in a $VERSION shell variable, which takes precedence; or
    # (2) in the VERSION file, in which we will append "-dev" to it
    ifeq ($(VERSION),)
    VERSION_FROM_FILE := $(shell cat VERSION)
    ifeq ($(VERSION_FROM_FILE),)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // claims in a way that maintains the identity of a pod. Every claim in
      // this list must have at least one matching (by name) volumeMount in one
      // container in the template. A claim in this list takes precedence over
      // any volumes in the template, with the same name.
      // TODO: Define the behavior if a claim already exists with the same name.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload.go

    		md["ISTIO_METAJSON_LABELS"] = string(labelsJSON)
    	}
    
    	// TODO the defaults should be controlled by meshConfig/proxyConfig; if flags not given to the command proxyCOnfig takes precedence
    	if dnsCapture {
    		md["ISTIO_META_DNS_CAPTURE"] = strconv.FormatBool(dnsCapture)
    	}
    	if autoRegister {
    		md["ISTIO_META_AUTO_REGISTER_GROUP"] = wg.Name
    	}
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  10. internal/s3select/select_test.go

    		},
    		{
    			name:       "in-expression-precedence-1",
    			query:      "select * from s3object s where 'bar' in s.synonyms and s.id = 0",
    			wantResult: `{"id":0,"title":"Test Record","desc":"Some text","synonyms":["foo","bar","whatever"]}`,
    		},
    		{
    			name:       "in-expression-precedence-2",
    			query:      "select * from s3object s where 'some' in ('somex', s.synonyms[0]) and s.id = 1",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
Back to top