Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for nextch (0.12 sec)

  1. src/go/types/typeparam.go

    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    		id = check.nextID
    	}
    	typ := &TypeParam{check: check, id: id, obj: obj, index: -1, bound: constraint}
    	if obj.typ == nil {
    		obj.typ = typ
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeparam.go

    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    		id = check.nextID
    	}
    	typ := &TypeParam{check: check, id: id, obj: obj, index: -1, bound: constraint}
    	if obj.typ == nil {
    		obj.typ = typ
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/go/types/context.go

    }
    
    // getID returns a unique ID for the type t.
    func (ctxt *Context) getID(t Type) int {
    	ctxt.mu.Lock()
    	defer ctxt.mu.Unlock()
    	id, ok := ctxt.originIDs[t]
    	if !ok {
    		id = ctxt.nextID
    		ctxt.originIDs[t] = id
    		ctxt.nextID++
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

            }
            1 * clock.currentTime >> 500
            0 * buildOperationIdFactory.nextId()
        }
    
        def "test output is exposed as progress"() {
            setup:
            _ * clock.currentTime >> 0
            long operationId = 1
            _ * buildOperationIdFactory.nextId() >> { operationId++ }
            TestOutputEvent testOutputEvent = new SimpleTestOutputEvent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/testdata/infloop.dlv-opt.nexts

    David Chase <******@****.***> 1579280635 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 17 23:14:48 UTC 2020
    - 179 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/testdata/scopes.dlv-opt.nexts

    David Chase <******@****.***> 1546465969 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/flag_test.go

    	ppfDirTest("../...sub...", 3, "/my/test/dir/sub", "/my/test/othersub", "/my/test/yellowsubmarine", "/my/other/test"),
    }
    
    func ppfDirTest(pattern string, nmatch int, dirs ...string) ppfTest {
    	var pkgs []ppfTestPackage
    	for i, d := range dirs {
    		flags := []string{}
    		if i < nmatch {
    			flags = []string{"-S"}
    		}
    		pkgs = append(pkgs, ppfTestPackage{path: "p", dir: d, flags: flags})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:04:04 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

      }
    
      @JvmStatic
      fun threadFactory(name: String): ThreadFactory {
        return object : ThreadFactory {
          private var nextId = 1
    
          override fun newThread(runnable: Runnable): Thread {
            return Thread(runnable, "$name-${nextId++}")
          }
        }
      }
    }
    
    fun getEnv(name: String) = System.getenv(name)
    
    val SYSTEM_FILE_SYSTEM = FileSystem.SYSTEM
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    			next := it.Next()
    			nextCmp, ok := next.(traits.Comparer)
    			if !ok {
    				// Should never happen for type checked CEL programs
    				return types.MaybeNoSuchOverloadErr(next)
    			}
    			if result == nil {
    				result = nextCmp
    			} else {
    				cmp := result.Compare(next)
    				if cmp == opPreferCmpResult {
    					result = nextCmp
    				}
    			}
    		}
    		if result == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractResourcePattern.java

                return true;
            }
    
            int optionalOpen = 0;
            for (int i = 0; i < tokenIndex; i++) {
                char nextChar = patternString.charAt(i);
                if (nextChar == '(') {
                    optionalOpen++;
                } else if (nextChar == ')') {
                    optionalOpen = Math.max(0, optionalOpen - 1);
                }
            }
            return optionalOpen > 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top