Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for verb2 (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// If set, DestroyFunc has to be implemented in thread-safe way and
    	// be prepared for being called more than once.
    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		informers.Core().V1().Pods(),
    		client,
    		burstReplicas,
    	)
    
    	ret.podListerSynced = alwaysReady
    	ret.rsListerSynced = alwaysReady
    
    	return ret, informers
    }
    
    func skipListerFunc(verb string, url url.URL) bool {
    	if verb != "GET" {
    		return false
    	}
    	if strings.HasSuffix(url.Path, "/pods") || strings.Contains(url.Path, "/replicasets") {
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)
    //sys	ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW
    //sys	GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) = user32.GetWindowThreadProcessId
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top