Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for mgr1 (0.11 sec)

  1. src/go/doc/doc_test.go

    type S2 int
    func (S2) M3() {}		// shown on S2
    
    type s3 int
    func (s3) M4() {}		// shown on S1
    
    type G1[T any] struct {
    	*s3
    }
    
    func NewG1[T any]() G1[T] { return G1[T]{} }
    
    func (G1[T]) MG1() {}
    func (*G1[U]) MG2() {}
    
    type G2[T, U any] struct {}
    
    func NewG2[T, U any]() G2[T, U] { return G2[T, U]{} }
    
    func (G2[T, U]) MG3() {}
    func (*G2[A, B]) MG4() {}
    
    
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    	nodeIndexer := informerFactory.Core().V1().Nodes().Informer().GetIndexer()
    	mgr, _ := New(ctx, fakeClientSet, informerFactory.Core().V1().Pods(), informerFactory.Core().V1().Nodes(), "taint-eviction-controller")
    	mgr.podListerSynced = alwaysReady
    	mgr.nodeListerSynced = alwaysReady
    	mgr.getPodsAssignedToNode = getPodsAssignedToNode(ctx, fakeClientSet)
    	return mgr, podIndexer, nodeIndexer
    }
    
    type timestampedPod struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	handle = syscall.Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenService(mgr syscall.Handle, serviceName *uint16, access uint32) (handle syscall.Handle, err error) {
    	r0, _, e1 := syscall.Syscall(procOpenServiceW.Addr(), 3, uintptr(mgr), uintptr(unsafe.Pointer(serviceName)), uintptr(access))
    	handle = syscall.Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/main/assemblies/files/service.bat

    if not errorlevel 1 goto stopped
    echo Failed stopping '%SERVICE_ID%' service
    goto:eof
    :stopped
    echo The service '%SERVICE_ID%' has been stopped
    goto:eof
    
    :doManagment
    set EXECUTABLE_MGR=%FESS_HOME%\bin\fess-service-mgr.exe
    "%EXECUTABLE_MGR%" //ES//%SERVICE_ID%
    if not errorlevel 1 goto managed
    echo Failed starting service manager for '%SERVICE_ID%'
    goto:eof
    :managed
    echo Successfully started service manager for '%SERVICE_ID%'.
    goto:eof
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/crypto/rsa/pss.go

    import (
    	"bytes"
    	"crypto"
    	"crypto/internal/boring"
    	"errors"
    	"hash"
    	"io"
    )
    
    // Per RFC 8017, Section 9.1
    //
    //     EM = MGF1 xor DB || H( 8*0x00 || mHash || salt ) || 0xbc
    //
    // where
    //
    //     DB = PS || 0x01 || salt
    //
    // and PS can be empty so
    //
    //     emLen = dbLen + hLen + 1 = psLen + sLen + hLen + 2
    //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/crypto/rsa/rsa.go

    // crypto.Decrypter interface.
    type OAEPOptions struct {
    	// Hash is the hash function that will be used when generating the mask.
    	Hash crypto.Hash
    
    	// MGFHash is the hash function used for MGF1.
    	// If zero, Hash is used instead.
    	MGFHash crypto.Hash
    
    	// Label is an arbitrary byte string that must be equal to the value
    	// used when encrypting.
    	Label []byte
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/syscall_windows.go

    	ServiceSpecificExitCode uint32
    	CheckPoint              uint32
    	WaitHint                uint32
    }
    
    const (
    	SERVICE_RUNNING      = 4
    	SERVICE_QUERY_STATUS = 4
    )
    
    //sys    OpenService(mgr syscall.Handle, serviceName *uint16, access uint32) (handle syscall.Handle, err error) = advapi32.OpenServiceW
    //sys	QueryServiceStatus(hService syscall.Handle, lpServiceStatus *SERVICE_STATUS) (err error)  = advapi32.QueryServiceStatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			defer cleanup()
    
    			backupEtcdDir, cleanup := getTempDir(t, "backupEtcdDir")
    			defer cleanup()
    
    			mgr := NewKubeStaticPodPathManager(realKubernetesDir, "", tempManifestDir, backupManifestDir, backupEtcdDir, test.keepManifest, test.keepEtcd)
    			err := mgr.CleanupDirs()
    			if err != nil {
    				t.Errorf("unexpected error cleaning up: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_experimental.cc

      // TODO(b/113217601): This is needed for EagerContext::runner_ to use a
      // threadpool, so that we avoid the possibility of running the runner_ in the
      // threadpool of GPU event mgr, as that can trigger more callbacks to be
      // scheduled on that same threadpool, causing a deadlock in cases where the
      // caller of event_mgr->ThenExecute() blocks on the completion of the callback
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top