Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 7,747 for jailed (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service.go

    				if err != nil {
    					klog.ErrorS(err, "failed to create connection to unix socket", "addr", addr)
    				} else {
    					klog.V(4).InfoS("Successfully dialed Unix socket", "addr", addr)
    				}
    				return c, err
    			}))
    
    	if err != nil {
    		return nil, fmt.Errorf("failed to create connection to %s, error: %v", endpoint, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 00:47:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    	if r == 0 {
    		t.Fatalf("CreateThread failed: %v", err)
    	}
    	h := syscall.Handle(r)
    	defer syscall.CloseHandle(h)
    
    	switch s, err := syscall.WaitForSingleObject(h, syscall.INFINITE); s {
    	case syscall.WAIT_OBJECT_0:
    		break
    	case syscall.WAIT_FAILED:
    		t.Fatalf("WaitForSingleObject failed: %v", err)
    	default:
    		t.Fatalf("WaitForSingleObject returns unexpected value %v", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/default.go

    // the first time Default is called.
    func initDefaultCache() {
    	dir, _ := DefaultDir()
    	if dir == "off" {
    		if defaultDirErr != nil {
    			base.Fatalf("build cache is required, but could not be located: %v", defaultDirErr)
    		}
    		base.Fatalf("build cache is disabled by GOCACHE=off, but required as of Go 1.12")
    	}
    	if err := os.MkdirAll(dir, 0777); err != nil {
    		base.Fatalf("failed to initialize build cache at %s: %s\n", dir, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. security/pkg/k8s/chiron/utils_test.go

    			cert, err := readCACert(tc.certPath)
    			if tc.shouldFail {
    				if err == nil {
    					t.Errorf("should have failed at readCACert()")
    				} else {
    					// Should fail, skip the current case.
    					return
    				}
    			} else if err != nil {
    				t.Errorf("failed at readCACert(): %v", err)
    			}
    
    			if !bytes.Equal(tc.expectedCert, cert) {
    				t.Error("the certificate read is unexpected")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

        // JVM shutdown will not be prevented from exiting after this service has stopped or failed.
        // Technically this listener is added after start() was called so it is a little gross, but it
        // is called within doStart() so we know that the service cannot terminate or fail concurrently
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. src/runtime/os2_aix.go

    	if int32(r) == -1 {
    		println("syscall munmap failed: ", hex(err))
    		throw("syscall munmap")
    	}
    }
    
    //go:nosplit
    func madvise(addr unsafe.Pointer, n uintptr, flags int32) {
    	r, err := syscall3(&libc_madvise, uintptr(addr), uintptr(n), uintptr(flags))
    	if int32(r) == -1 {
    		println("syscall madvise failed: ", hex(err))
    		throw("syscall madvise")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    // after a pod cannot be scheduled.
    type PostFilterPlugin interface {
    	Plugin
    	// PostFilter is called by the scheduling framework
    	// when the scheduling cycle failed at PreFilter or Filter by Unschedulable or UnschedulableAndUnresolvable.
    	// NodeToStatusMap has statuses that each Node got in the Filter phase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/fieldmanager.go

    	if err != nil {
    		return nil, err
    	}
    
    	if isResetManagedFields(newAccessor.GetManagedFields()) {
    		return NewEmptyManaged(), nil
    	}
    
    	// If the managed field is empty or we failed to decode it,
    	// let's try the live object. This is to prevent clients who
    	// don't understand managedFields from deleting it accidentally.
    	managed, err := DecodeManagedFields(newAccessor.GetManagedFields())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. pkg/test/util/assert/assert.go

    func ChannelHasItem[T any](t test.Failer, c <-chan T) T {
    	t.Helper()
    	select {
    	case r := <-c:
    		return r
    	case <-time.After(time.Second * 5):
    		t.Fatalf("failed to receive event after 5s")
    	}
    	// Not reachable
    	return ptr.Empty[T]()
    }
    
    // ChannelIsEmpty asserts a channel is empty for at least 20ms
    func ChannelIsEmpty[T any](t test.Failer, c <-chan T) {
    	t.Helper()
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    	// GotFirstResponseByte is called when the first byte of the response
    	// headers is available.
    	GotFirstResponseByte func()
    
    	// Got100Continue is called if the server replies with a "100
    	// Continue" response.
    	Got100Continue func()
    
    	// Got1xxResponse is called for each 1xx informational response header
    	// returned before the final non-1xx response. Got1xxResponse is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top