Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,747 for jailed (0.1 sec)

  1. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

           *   cause if this Future has failed.
           *
           * - And this future *has* failed: This method is called only from handleException (through
           *   getOrInitSeenExceptions). handleException tried to call setException and failed, so
           *   either this Future was cancelled (which we ruled out with the isCancelled check above),
           *   or it had already failed. (It couldn't have completed *successfully* or even had
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/volume/nfs/nfs_test.go

    	}
    	if _, err := os.Stat(volumePath); err == nil {
    		t.Errorf("TearDown() failed, volume path still exists: %s", volumePath)
    	} else if !os.IsNotExist(err) {
    		t.Errorf("TearDown() failed: %v", err)
    	}
    	log = fake.GetLog()
    	if len(log) != 1 {
    		t.Errorf("Unmount was not called exactly one time. It was called %d times.", len(log))
    	} else {
    		if log[0].Action != mount.FakeActionUnmount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  3. tests/util/leak/check.go

    // To use, simply call leak.Check(t) at the start of a test; Do not call it in defer.
    // It is recommended to call this as the first step, as Cleanup is called in LIFO order; this ensures any
    // Cleanup's called in the test happen first.
    // Any existing goroutines before the test starts are filtered out. This ensures a single test failing doesn't
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/sidecar.go

    	if err != nil {
    		return fmt.Errorf("failed exec on pod %s/%s: %v. Command: %s. Output:\n%s",
    			s.podNamespace, s.podName, err, command, stdout+stderr)
    	}
    
    	if err := protomarshal.UnmarshalAllowUnknown([]byte(stdout), out); err != nil {
    		return fmt.Errorf("failed parsing Envoy admin response from '/%s': %v\nResponse JSON: %s", path, err, stdout)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/plugin.go

    		return nil, errors.New(
    			log(
    				"%s for DRA plugin %q failed. Plugin returned an empty list for supported versions",
    				callerName,
    				pluginName,
    			),
    		)
    	}
    
    	// Validate version
    	newPluginHighestVersion, err := utilversion.HighestSupportedVersion(versions)
    	if err != nil {
    		return nil, errors.New(
    			log(
    				"%s for DRA plugin %q failed. None of the versions specified %q are supported. err=%v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/testing/fuzz.go

    // (set with -fuzztime), or the test process is interrupted by a signal. F.Fuzz
    // should be called exactly once, unless F.Skip or [F.Fail] is called beforehand.
    func (f *F) Fuzz(ff any) {
    	if f.fuzzCalled {
    		panic("testing: F.Fuzz called more than once")
    	}
    	f.fuzzCalled = true
    	if f.failed {
    		return
    	}
    	f.Helper()
    
    	// ff should be in the form func(*testing.T, ...interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

         */
        public void healthy() {}
    
        /**
         * Called when the all of the component services have reached a terminal state, either
         * {@linkplain State#TERMINATED terminated} or {@linkplain State#FAILED failed}.
         */
        public void stopped() {}
    
        /**
         * Called when a component service has {@linkplain State#FAILED failed}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/sync/once_test.go

    	if v := *o; v != 1 {
    		t.Errorf("once failed inside run: %d is not 1", v)
    	}
    	c <- true
    }
    
    func TestOnce(t *testing.T) {
    	o := new(one)
    	once := new(Once)
    	c := make(chan bool)
    	const N = 10
    	for i := 0; i < N; i++ {
    		go run(t, once, o, c)
    	}
    	for i := 0; i < N; i++ {
    		<-c
    	}
    	if *o != 1 {
    		t.Errorf("once failed outside run: %d is not 1", *o)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 16 21:22:33 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    	}
    
    	mp := getg().m
    	lock(&mp.threadLock)
    	mp.thread = thandle
    	mp.procid = uint64(stdcall0(_GetCurrentThreadId))
    
    	// Configure usleep timer, if possible.
    	if mp.highResTimer == 0 && haveHighResTimer {
    		mp.highResTimer = createHighResTimer()
    		if mp.highResTimer == 0 {
    			print("runtime: CreateWaitableTimerEx failed; errno=", getlasterror(), "\n")
    			throw("CreateWaitableTimerEx when creating timer failed")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ServiceManager.java

         */
        public void healthy() {}
    
        /**
         * Called when the all of the component services have reached a terminal state, either
         * {@linkplain State#TERMINATED terminated} or {@linkplain State#FAILED failed}.
         */
        public void stopped() {}
    
        /**
         * Called when a component service has {@linkplain State#FAILED failed}.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top