Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for Precedence (0.14 sec)

  1. src/go/printer/testdata/expressions.golden

    	_ = s[0:len(s)]
    	_ = s[0] << 1
    	_ = (s[0] << 1) & 0xf
    	_ = s[0]<<2 | s[1]>>4
    	_ = "foo" + s
    	_ = s + "foo"
    	_ = 'a' + 'b'
    	_ = len(s) / 2
    	_ = len(t0.x) / a
    
    	// spaces around expressions of different precedence or expressions containing spaces
    	_ = a + -b
    	_ = a - ^b
    	_ = a / *p
    	_ = a + b*c
    	_ = 1 + b*c
    	_ = a + 2*c
    	_ = a + c*2
    	_ = 1 + 2*3
    	_ = s[1 : 2*3]
    	_ = s[a : b-c]
    	_ = s[0:]
    	_ = s[a+b]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.raw

    	_ = s[0:len(s)]
    	_ = s[0] << 1
    	_ = (s[0] << 1) & 0xf
    	_ = s[0]<<2 | s[1]>>4
    	_ = "foo" + s
    	_ = s + "foo"
    	_ = 'a' + 'b'
    	_ = len(s) / 2
    	_ = len(t0.x) / a
    
    	// spaces around expressions of different precedence or expressions containing spaces
    	_ = a + -b
    	_ = a - ^b
    	_ = a / *p
    	_ = a + b*c
    	_ = 1 + b*c
    	_ = a + 2*c
    	_ = a + c*2
    	_ = 1 + 2*3
    	_ = s[1 : 2*3]
    	_ = s[a : b-c]
    	_ = s[0:]
    	_ = s[a+b]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   i++
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
     *   // accessType: IncDec {
     *   //   kind: INC
     *   //   precedence: POSTFIX
     *   //   operationSymbol: Int.inc()
     *   // }
     * }
     * ```
     * Note that if the variable has a `<op>Assign` member, then it's represented as a simple `KaFunctionCall`. For example,
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	RetryPeriod time.Duration
    
    	// KeyComparison defines a function to compare the existing leader's key to our own.
    	// If the function returns true, indicating our key has high precedence, we will take over
    	// leadership even if their is another un-expired leader.
    	//
    	// This can be used to implemented a prioritized leader election. For example, if multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/strings/replace.go

    		}
    		// The first occurrence of old->new map takes precedence
    		// over the others with the same old string.
    		for i := len(oldnew) - 2; i >= 0; i -= 2 {
    			o := oldnew[i][0]
    			n := oldnew[i+1][0]
    			r[o] = n
    		}
    		return &r
    	}
    
    	r := byteStringReplacer{toReplace: make([]string, 0, len(oldnew)/2)}
    	// The first occurrence of old->new map takes precedence
    	// over the others with the same old string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/net/http/pattern.go

    )
    
    // conflictsWith reports whether p1 conflicts with p2, that is, whether
    // there is a request that both match but where neither is higher precedence
    // than the other.
    //
    //	Precedence is defined by two rules:
    //	1. Patterns with a host win over patterns without a host.
    //	2. Patterns whose method and path is more specific win. One pattern is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            executer.withTasks("foo").withArguments("--project-cache-dir", someAbsoluteDir.toString()).run()
    
            then:
            someAbsoluteDir.exists()
        }
    
        def "system property GRADLE_USER_HOME has precedence over environment variable"() {
            given:
            buildFile """
                task checkSystemPropertyGradleUserHomeHasPrecedence {
                    def gradleUserHomeDir = gradle.gradleUserHomeDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. operator/pkg/manifest/shared.go

    	if err != nil {
    		return "", nil, err
    	}
    	if sfp := GetValueForSetFlag(setFlags, "installPackagePath"); sfp != "" {
    		// set flag installPackagePath has the highest precedence, if set.
    		installPackagePath = sfp
    	}
    
    	// To generate the base profileOrPath for overlaying with user values, we need the installPackagePath where the profiles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/template.go

    		key := v[i]
    		if i+1 >= lenv {
    			dict[key] = ""
    			continue
    		}
    		dict[key] = v[i+1]
    	}
    	return dict
    }
    
    // Merge maps merges multiple maps. Latter maps take precedence over previous maps on overlapping fields
    func mergeMaps(maps ...map[string]string) map[string]string {
    	if len(maps) == 0 {
    		return nil
    	}
    	res := make(map[string]string, len(maps[0]))
    	for _, m := range maps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. pkg/proxy/serviceport.go

    		stickyMaxAgeSeconds: stickyMaxAgeSeconds,
    		externalPolicyLocal: externalPolicyLocal,
    		internalPolicyLocal: internalPolicyLocal,
    	}
    
    	// v1.DeprecatedAnnotationTopologyAwareHints has precedence over v1.AnnotationTopologyMode.
    	var exists bool
    	info.hintsAnnotation, exists = service.Annotations[v1.DeprecatedAnnotationTopologyAwareHints]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top