Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 303 for Cases (0.12 sec)

  1. src/cmd/compile/internal/types2/typeset.go

    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    // only comparable types are meant; in all other cases comparable is false.
    type _TypeSet struct {
    	methods    []*Func  // all methods of the interface; sorted by unique ID
    	terms      termlist // type terms of the type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    // only comparable types are meant; in all other cases comparable is false.
    type _TypeSet struct {
    	methods    []*Func  // all methods of the interface; sorted by unique ID
    	terms      termlist // type terms of the type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/runtime/preempt.go

    //
    // 3. It's generally safe to interact with the runtime, even if we're
    // in a signal handler stopped here. For example, there are no runtime
    // locks held, so acquiring a runtime lock won't self-deadlock.
    //
    // In some cases the PC is safe for asynchronous preemption but it
    // also needs to adjust the resumption PC. The new PC is returned in
    // the second result.
    func isAsyncSafePoint(gp *g, pc, sp, lr uintptr) (bool, uintptr) {
    	mp := gp.m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            AgentStatus agentStatus,
            Gradle gradle
        ) {
            this.instantiator = instantiator;
            // Shared services must be provided lazily, otherwise they are instantiated too early and some cases can fail
            this.instrumentationTransformRegisterer = new InstrumentationTransformRegisterer(agentStatus, Lazy.atomic().of(gradle::getSharedServices));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/bootstrap/instance_test.go

    )
    
    // Generate configs for the default configs used by istio.
    // If the template is updated, refresh golden files using:
    // REFRESH_GOLDEN=true go test ./pkg/bootstrap/...
    func TestGolden(t *testing.T) {
    	cases := []struct {
    		base                          string
    		envVars                       map[string]string
    		annotations                   map[string]string
    		sdsUDSPath                    string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/kube/kclient/client_test.go

    }
    
    func TestToOpts(t *testing.T) {
    	test.SetForTest(t, &features.InformerWatchNamespace, "istio-system")
    	c := kube.NewFakeClient()
    	c.RunAndWait(test.NewStop(t))
    	cases := []struct {
    		name   string
    		gvr    schema.GroupVersionResource
    		filter kclient.Filter
    		want   kubetypes.InformerOptions
    	}{
    		{
    			name: "watch pods in the foo namespace",
    			gvr:  gvr.Pod,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
     * simple class name;
     * otherwise, it will be used to match full qualified class name.
     */
    public class TestSelectionMatcher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/go/types/call.go

    				// a clone of it as otherwise we implicitly modify the object's type
    				// (go.dev/issues/63260).
    				asig = clone(asig)
    				// Rename type parameters for cases like f(g, g); this gives each
    				// generic function argument a unique type identity (go.dev/issues/59956).
    				// TODO(gri) Consider only doing this if a function argument appears
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    // GoSysExit emits a GoSyscallEnd event, possibly along with a GoSyscallBlocked event
    // if lostP is true.
    //
    // lostP must be true in all cases that a goroutine loses its P during a syscall.
    // This means it's not sufficient to check if it has no P. In particular, it needs to be
    // true in the following cases:
    // - The goroutine lost its P, it ran some other code, and then got it back. It's now running with that P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       future.transform(...).transform(...).transform(...)....}), they may overflow the stack.
       *       (In simple cases, callers can avoid this by registering all tasks with the same {@link
       *       MoreExecutors#newSequentialExecutor} wrapper around {@code directExecutor()}. More
       *       complex cases may require using thread pools or making deeper changes.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top