Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for nextch (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    		name         string
    		chance       float64
    		nextFn       func(chance float64) func() float64
    		expectGOAWAY bool
    	}{
    		{
    			name:   "always not GOAWAY",
    			chance: 0,
    			nextFn: func(chance float64) func() float64 {
    				return rand.Float64
    			},
    			expectGOAWAY: false,
    		},
    		{
    			name:   "always GOAWAY",
    			chance: 1,
    			nextFn: func(chance float64) func() float64 {
    				return rand.Float64
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/regexp/syntax/parse.go

    			nextLo = c + 1
    		}
    	}
    	for _, xr := range x.R32 {
    		lo, hi, stride := rune(xr.Lo), rune(xr.Hi), rune(xr.Stride)
    		if stride == 1 {
    			if nextLo <= lo-1 {
    				r = appendRange(r, nextLo, lo-1)
    			}
    			nextLo = hi + 1
    			continue
    		}
    		for c := lo; c <= hi; c += stride {
    			if nextLo <= c-1 {
    				r = appendRange(r, nextLo, c-1)
    			}
    			nextLo = c + 1
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/ssa/testdata/scopes.gdb-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)
Back to top