Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,052 for cancer (0.11 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"canary_islands":                       "\U0001f1ee\U0001f1e8",
    	"cancer":                               "\u264b",
    	"candle":                               "\U0001f56f\ufe0f",
    	"candy":                                "\U0001f36c",
    	"canned_food":                          "\U0001f96b",
    	"canoe":                                "\U0001f6f6",
    	"cape_verde":                           "\U0001f1e8\U0001f1fb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Cancel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    public class Cancel extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 702 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/caller.go

    // CallResult the result of a call operation.
    type CallResult struct {
    	From      Caller
    	Opts      CallOptions
    	Responses echo.Responses
    }
    
    type Caller interface {
    	// Call from this Instance to a target Instance.
    	Call(options CallOptions) (CallResult, error)
    	CallOrFail(t test.Failer, options CallOptions) CallResult
    }
    
    type Callers []Caller
    
    // Instances returns an Instances if all callers are Instance, otherwise returns nil.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.UseWatchList = ptr.To(false)
    
    	cacher.watchCache = watchCache
    	cacher.reflector = reflector
    
    	go cacher.dispatchEvents()
    	go progressRequester.Run(stopCh)
    
    	cacher.stopWg.Add(1)
    	go func() {
    		defer cacher.stopWg.Done()
    		defer cacher.terminateAllWatchers()
    		wait.Until(
    			func() {
    				if !cacher.isStopped() {
    					cacher.startCaching(stopCh)
    				}
    			}, time.Second, stopCh,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/context/afterfunc_test.go

    	}
    }
    
    func (c *afterFuncContext) cancel(err error) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	if c.err != nil {
    		return
    	}
    	c.err = err
    	for _, f := range c.afterFuncs {
    		go f()
    	}
    	c.afterFuncs = nil
    }
    
    func TestCustomContextAfterFuncCancel(t *testing.T) {
    	ctx0 := &afterFuncContext{}
    	ctx1, cancel := context.WithCancel(ctx0)
    	defer cancel()
    	ctx0.cancel(context.Canceled)
    	<-ctx1.Done()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:58:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/context/context_test.go

    	defer cancel3()
    	checkNoGoroutine()
    
    	_, cancel3b := WithCancel(&myDoneCtx{ctx2})
    	defer cancel3b()
    	checkCreatedGoroutine() // ctx1 is not providing Done, must not be used
    
    	ctx4, cancel4 := WithTimeout(ctx3, veryLongDuration)
    	defer cancel4()
    	checkNoGoroutine()
    
    	ctx5, cancel5 := WithCancel(ctx4)
    	defer cancel5()
    	checkNoGoroutine()
    
    	cancel5()
    	checkNoGoroutine()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/call.go

    		}
    		return nil, true, nil
    	}, opts.Retry.Options...)
    
    	return result, err
    }
    
    type Caller struct {
    	f *forwarder.Instance
    }
    
    func NewCaller() *Caller {
    	return &Caller{
    		f: forwarder.New(),
    	}
    }
    
    func (c *Caller) Close() error {
    	return c.f.Close()
    }
    
    func (c *Caller) CallEcho(from echo.Caller, opts echo.CallOptions) (echo.CallResult, error) {
    	if err := opts.FillDefaults(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. docs/en/docs/img/sponsors/imgwhale-banner.svg

    imgwhale-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 25 19:49:44 UTC 2022
    - 105.4K bytes
    - Viewed (0)
  9. docs/en/docs/img/sponsors/porter-banner.png

    porter-banner.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 09 17:04:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. docs/en/docs/img/sponsors/reflex-banner.png

    reflex-banner.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Nov 18 13:38:01 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top