Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for coord_ (0.08 sec)

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

    }
    
    // CreatePseudoConsole creates a windows pseudo console.
    func CreatePseudoConsole(size Coord, in Handle, out Handle, flags uint32, pconsole *Handle) error {
    	// We need this wrapper to manually cast Coord to uint32. The autogenerated wrappers only
    	// accept arguments that can be casted to uintptr, and Coord can't.
    	return createPseudoConsole(*((*uint32)(unsafe.Pointer(&size))), in, out, flags, pconsole)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // some effort should be given to getting existing work
    // loads off of tainted nodes.
    
    package nodelifecycle
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	coordv1 "k8s.io/api/coordination/v1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top