Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for arab (0.04 sec)

  1. pkg/kubelet/cm/dra/claiminfo.go

    	claimInfo map[string]*ClaimInfo
    }
    
    // newClaimInfoFromClaim creates a new claim info from a resource claim.
    func newClaimInfoFromClaim(claim *resourcev1alpha2.ResourceClaim) *ClaimInfo {
    	// Grab the allocation.resourceHandles. If there are no
    	// allocation.resourceHandles, create a single resourceHandle with no
    	// content. This will trigger processing of this claim by a single
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/runtime/syscall_solaris.go

    	call := libcall{
    		fn:   fn,
    		n:    nargs,
    		args: uintptr(unsafe.Pointer(&a1)),
    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	return call.r1, call.r2, call.err
    }
    
    // TODO(aram): Once we remove all instances of C calling sysvicallN, make
    // sysvicallN return errors and replace the body of the following functions
    // with calls to sysvicallN.
    
    //go:nosplit
    //go:linkname syscall_chdir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	tv.Usec = int32(nsec % 1e9 / 1e3)
    	tv.Sec = int32(nsec / 1e9)
    	return
    }
    
    func nsec() int64 {
    	var scratch int64
    
    	r0, _, _ := Syscall(SYS_NSEC, uintptr(unsafe.Pointer(&scratch)), 0, 0)
    	// TODO(aram): remove hack after I fix _nsec in the pc64 kernel.
    	if r0 == 0 {
    		return scratch
    	}
    	return int64(r0)
    }
    
    func Gettimeofday(tv *Timeval) error {
    	nsec := nsec()
    	*tv = NsecToTimeval(nsec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. src/runtime/sys_solaris_amd64.s

    	// Execute call on m->g0.
    	get_tls(R15)
    	CMPQ	R15, $0
    	JE	noswitch
    
    	MOVQ	g(R15), R13
    	CMPQ	R13, $0
    	JE	noswitch
    	MOVQ	g_m(R13), R13
    	CMPQ	R13, $0
    	JE	noswitch
    	// TODO(aram): do something about the cpu profiler here.
    
    	MOVQ	m_g0(R13), R14
    	CMPQ	g(R15), R14
    	JNE	switch
    	// executing on m->g0 already
    	CALL	AX
    	RET
    
    switch:
    	// Switch to m->g0 stack and back.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. kotlin-js-store/yarn.lock

      integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
    
    abab@^2.0.6:
      version "2.0.6"
      resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
      integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
    
    accepts@~1.3.4:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            // Look for 'our' daemon among the busy daemons - a daemon will start in busy state so that nobody else will grab it.
            for (DaemonInfo daemonInfo : daemonRegistry.getNotIdle()) {
                if (daemonInfo.getUid().equals(daemon.getUid())) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/tighten.go

    	lca := makeLCArange(f)
    
    	// For each moveable value, record the block that dominates all uses found so far.
    	target := f.Cache.allocBlockSlice(f.NumValues())
    	defer f.Cache.freeBlockSlice(target)
    
    	// Grab loop information.
    	// We use this to make sure we don't tighten a value into a (deeper) loop.
    	idom := f.Idom()
    	loops := f.loopnest()
    	loops.calculateDepths()
    
    	changed := true
    	for changed {
    		changed = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/syscall/exec_unix.go

    // There are some complications.
    //
    // Some system calls that create new file descriptors can block
    // for arbitrarily long times: open on a hung NFS server or named
    // pipe, accept on a socket, and so on. We can't reasonably grab
    // the lock across those operations.
    //
    // It is worse to inherit some file descriptors than others.
    // If a non-malicious child accidentally inherits an open ordinary file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder.go

    func (enc *Encoder) writeMessage(w io.Writer, b *encBuffer) {
    	// Space has been reserved for the length at the head of the message.
    	// This is a little dirty: we grab the slice from the bytes.Buffer and massage
    	// it by hand.
    	message := b.Bytes()
    	messageLen := len(message) - maxLength
    	// Length cannot be bigger than the decoder can handle.
    	if messageLen >= tooBig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. pilot/pkg/trustbundle/trustbundle_test.go

    		`q9FtFVyVqTz9GnQtoctCIPGQqmJDWmt8E7gjFhweUQo-fGgGuTlZRl9fiPQ6luPyGQ1WL6wH79G9eu4UtmgUDNw` +
    		`q7kpYq0_NQ5vw_1WQSY3LsPclfKzkZ-Lw2RVef-SFVVvUFMcd_3ALeeEnnSe4GSY-7vduPUAE5qMH7M",
    		"e": "AQAB",
    		"x5c": ["MIIGlDCCBHygAwIBAgIQEW25APa7S9Sj/Nj6V6GxQTANBgkqhkiG9w0BAQsFADCBwTELMAkGA1UEBhM` +
    		`CVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxEzARBgNVBAoTCkdvb2dsZS` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top