Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,948 for jailed (0.47 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    	h, e := syscall_loadlibrary(namep)
    	if e != 0 {
    		return nil, &DLLError{
    			Err:     e,
    			ObjName: name,
    			Msg:     "Failed to load " + name + ": " + e.Error(),
    		}
    	}
    	d := &DLL{
    		Name:   name,
    		Handle: h,
    	}
    	return d, nil
    }
    
    // MustLoadDLL is like LoadDLL but panics if load operation failes.
    func MustLoadDLL(name string) *DLL {
    	d, e := LoadDLL(name)
    	if e != nil {
    		panic(e)
    	}
    	return d
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
        ServiceManager manager = new ServiceManager(asList(a));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	if m.server == nil {
    		return nil
    	}
    
    	m.server.Stop()
    	m.server = nil
    
    	return m.Start()
    }
    
    // Stop stops the gRPC server. Can be called without a prior Start
    // and more than once. Not safe to be called concurrently by different
    // goroutines!
    func (m *Stub) Stop() error {
    	klog.InfoS("Stopping device plugin server")
    	if m.server == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/gc/gc_admission_test.go

    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    func (r *neverReturningRESTMapper) KindsFor(resource schema.GroupVersionResource) ([]schema.GroupVersionKind, error) {
    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
        ServiceManager manager = new ServiceManager(asList(a));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/jwks_resolver.go

    	// How many times should we retry the failed network fetch on main flow. The main flow
    	// means it's called when Pilot is pushing configs. Do not retry to make sure not to block Pilot
    	// too long.
    	networkFetchRetryCountOnMainFlow = 0
    
    	// How many times should we retry the failed network fetch on refresh flow. The refresh flow
    	// means it's called when the periodically refresh job is triggered. We can retry more aggressively
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    type mockV1Service struct {
    	allow      bool
    	statusCode int
    	called     int
    
    	// reviewHook is called just before returning from the Review() method
    	reviewHook func(*authorizationv1.SubjectAccessReview)
    }
    
    func (m *mockV1Service) Review(r *authorizationv1.SubjectAccessReview) {
    	m.called++
    	r.Status.Allowed = m.allow
    
    	if m.reviewHook != nil {
    		m.reviewHook(r)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. cmd/bucket-handlers_test.go

    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    
    	nilBucket := "dummy-bucket"
    	nilReq, err := newTestRequest(http.MethodGet, getBucketLocationURL("", nilBucket), 0, nil)
    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create HTTP request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun_test.go

    	if err != nil {
    		t.Fatalf("Failed to create new object: %v", err)
    	}
    
    	err = s.Delete(context.Background(), "key", out, nil, rest.ValidateAllObjectFunc, true, nil)
    	if err != nil {
    		t.Fatalf("Failed to dry-run delete the object: %v", err)
    	}
    
    	err = s.Get(context.Background(), "key", storage.GetOptions{}, out)
    	if err != nil {
    		t.Fatalf("Failed to retrieve dry-run deleted object: %v", err)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    }
    
    var portfd int32 = -1
    
    func netpollinit() {
    	portfd = port_create()
    	if portfd >= 0 {
    		closeonexec(portfd)
    		return
    	}
    
    	print("runtime: port_create failed (errno=", errno(), ")\n")
    	throw("runtime: netpollinit failed")
    }
    
    func netpollIsPollDescriptor(fd uintptr) bool {
    	return fd == uintptr(portfd)
    }
    
    func netpollopen(fd uintptr, pd *pollDesc) int32 {
    	lock(&pd.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top