Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for delay (0.04 sec)

  1. src/go/types/struct.go

    			// Because we have a name, typ must be of the form T or *T, where T is the name
    			// of a (named or alias) type, and t (= deref(typ)) must be the type of T.
    			// We must delay this check to the end because we don't want to instantiate
    			// (via under(t)) a possibly incomplete type.
    
    			// for use in the closure below
    			embeddedTyp := typ
    			embeddedPos := f.Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/vm_test.go

    						disconnectProxy(t, currentPilot, autoVM)
    						return errors.New("expected WorkloadEntry to be updated by other pilot")
    					}
    					return nil
    				}, retry.Delay(5*time.Second))
    			})
    			t.NewSubTest("disconnect deletes WorkloadEntry").Run(func(t framework.TestContext) {
    				d := fmt.Sprintf("%s-%s", autoVM.Config().Service, "v1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/struct.go

    			// Because we have a name, typ must be of the form T or *T, where T is the name
    			// of a (named or alias) type, and t (= deref(typ)) must be the type of T.
    			// We must delay this check to the end because we don't want to instantiate
    			// (via under(t)) a possibly incomplete type.
    			embeddedTyp := typ // for closure below
    			embeddedPos := pos
    			check.later(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/os/fifo_test.go

    	}
    	defer w.Close()
    
    	data := "Hello Gophers!"
    	if _, err := w.WriteString(data); err != nil {
    		t.Fatalf("Error writing to fifo: %v", err)
    	}
    
    	// Close the writer after a short delay to open a gap for the reader
    	// of FIFO to fall into polling. See https://go.dev/issue/66239#issuecomment-1987620476
    	time.AfterFunc(200*time.Millisecond, func() {
    		if err := w.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/secure_naming_test.go

    			// is used for data plane to control plane TLS authentication.
    			retry.UntilSuccessOrFail(t, func() error {
    				return checkCACert(t, testNamespace)
    			}, retry.Delay(time.Second), retry.Timeout(10*time.Second))
    			to := match.Namespace(testNamespace).GetMatches(apps.EchoNamespace.B)
    			for _, cluster := range t.Clusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. pkg/controller/namespace/namespace_controller.go

    		return
    	}
    
    	namespace := obj.(*v1.Namespace)
    	// don't queue if we aren't deleted
    	if namespace.DeletionTimestamp == nil || namespace.DeletionTimestamp.IsZero() {
    		return
    	}
    
    	// delay processing namespace events to allow HA api servers to observe namespace deletion,
    	// and HA etcd servers to observe last minute object creations inside the namespace
    	nm.queue.AddAfter(key, namespaceDeletionGracePeriod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/net/http/export_test.go

    func init() {
    	// Set the default rstAvoidanceDelay to the minimum possible value to shake
    	// out tests that unexpectedly depend on it. Such tests should use
    	// runTimeSensitiveTest and SetRSTAvoidanceDelay to explicitly raise the delay
    	// if needed.
    	rstAvoidanceDelay = 1 * time.Nanosecond
    }
    
    // SetRSTAvoidanceDelay sets how long we are willing to wait between calling
    // CloseWrite on a connection and fully closing the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/revisions/uninstall_test.go

    			reItemList = append(reItemList, reList...)
    			reStrlist = append(reStrlist, reStr...)
    		}
    		return inspectRemainingResources(reItemList, reStrlist, purge)
    	}, retry.Delay(checkResourceDelay), retry.Timeout(checkResourceTimeout))
    }
    
    // getRemainingResourcesCluster get specific resources from the cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    					{Type: "inuse_objects", Unit: "count"},
    					{Type: "inuse_space", Unit: value},
    				}
    			case "contention/resolution":
    				p.SampleType = []*ValueType{
    					{Type: "contentions", Unit: "count"},
    					{Type: "delay", Unit: value},
    				}
    			case "contention/sampling period":
    				p.PeriodType = &ValueType{
    					Type: "contentions", Unit: "count",
    				}
    				if p.Period, err = strconv.ParseInt(value, 0, 64); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/syscall/dll_windows.go

    //
    //go:uintptrescapes
    func (p *Proc) Call(a ...uintptr) (uintptr, uintptr, error) {
    	return SyscallN(p.Addr(), a...)
    }
    
    // A LazyDLL implements access to a single [DLL].
    // It will delay the load of the DLL until the first
    // call to its [LazyDLL.Handle] method or to one of its
    // [LazyProc]'s Addr method.
    //
    // LazyDLL is subject to the same DLL preloading attacks as documented
    // on [LoadDLL].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top