Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for checkMap (0.14 sec)

  1. test/chan/powser1.go

    		a := make([]rat, N)
    		d := Diff(Ones)
    		for i := 0; i < N; i++ {
    			a[i] = itor(int64(i + 1))
    		}
    		checka(d, a, "Diff") // 1 2 3 4 5
    		in := Integ(zero, Ones)
    		a[0] = zero // integration constant
    		for i := 1; i < N; i++ {
    			a[i] = i2tor(1, int64(i))
    		}
    		checka(in, a, "Integ")                               // 0 1 1/2 1/3 1/4 1/5
    		check(Cmul(neg(one), Twos), itor(-2), 10, "CMul")    // -1 -1 -1 -1 -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRealProjectsDependencyResolveIntegrationTest.groovy

    dependencies {
        compile "commons-collections:commons-collections:3.0"
        compile "ch.qos.logback:logback-classic:0.9.30"
        compile "org.hibernate:hibernate-core:3.6.7.Final"
    }
    """
    
            expect:
            succeeds "checkDep"
            resolve.expectDefaultConfiguration('runtime')
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('ch.qos.logback:logback-classic:0.9.30') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/ipset.go

    	// set default protocol to tcp if empty
    	if len(e.Protocol) == 0 {
    		e.Protocol = ProtocolTCP
    	} else if !validateProtocol(e.Protocol) {
    		return false
    	}
    	return e.checkIP(set)
    }
    
    // checkIP checks if IP of Entry is valid.
    func (e *Entry) checkIP(set *IPSet) bool {
    	if netutils.ParseIPSloppy(e.IP) == nil {
    		klog.ErrorS(validationError, "error parsing ip address", "entry", e, "ip", e.IP, "ipset", set)
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                }
            """
            def resolve = new ResolveTestFixture(new TestFile(buildFile), 'testCompileClasspath')
            resolve.prepare()
    
            when:
            def runner = runner('checkDep')
            if (bomSupportProvider == "spring dependency management plugin") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    			// Put the new element at the beginning,
    			// since it is the most likely to be newly used.
    			if debugCheckCache && checkPC != 0 {
    				if checkVal != val || checkPC != prevpc {
    					print("runtime: table value ", val, "@", prevpc, " != cache value ", checkVal, "@", checkPC, " at PC ", targetpc, " off ", off, "\n")
    					throw("bad pcvalue cache")
    				}
    			} else {
    				mp := acquirem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/rulegen.go

    func genMatch(rr *RuleRewrite, arch arch, match string, pregenTop bool) (pos, checkOp string) {
    	cnt := varCount(rr)
    	return genMatch0(rr, arch, match, "v", cnt, pregenTop)
    }
    
    func genMatch0(rr *RuleRewrite, arch arch, match, v string, cnt map[string]int, pregenTop bool) (pos, checkOp string) {
    	if match[0] != '(' || match[len(match)-1] != ')' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	if !existed {
    		l.symsByName[ver][name] = i
    		addToGlobal()
    		return i
    	}
    	// symbol already exists
    	if osym.Dupok() {
    		if l.flags&FlagStrictDups != 0 {
    			l.checkdup(name, r, li, oldi)
    		}
    		// Fix for issue #47185 -- given two dupok symbols with
    		// different sizes, favor symbol with larger size. See
    		// also issue #46653.
    		szdup := l.SymSize(oldi)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top