Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 233 for emberi (2.83 sec)

  1. src/os/os_windows_test.go

    }
    
    // pathBuffeLen returns length of rd pathBuf in bytes.
    func (rd *reparseData) pathBuffeLen() uint16 {
    	return uint16(len(rd.pathBuf)) * 2
    }
    
    // Windows REPARSE_DATA_BUFFER contains union member, and cannot be
    // translated into Go directly. _REPARSE_DATA_BUFFER type is to help
    // construct alternative versions of Windows REPARSE_DATA_BUFFER with
    // union part of SymbolicLinkReparseBuffer or MountPointReparseBuffer type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.cc

          reinterpret_cast<const int64_t*>(dims), num_dims);
      if (alloc_attrs && !alloc_attrs->struct_size) {
        TF_SetStatus(
            status, TF_INVALID_ARGUMENT,
            "TF_AllocatorAttributes struct "
            "size member must be set to TF_ALLOCATOR_ATTRIBUTES_STRUCT_SIZE");
        return nullptr;
      }
      tensorflow::AllocatorAttributes allocator_attr;
      if (alloc_attrs && alloc_attrs->on_host) {
        allocator_attr.set_on_host(true);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	case 4 << 10:
    		return &bufioWriter4kPool
    	}
    	return nil
    }
    
    // newBufioReader should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gobwas/ws
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname newBufioReader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_test.go

    				t.Errorf("tid=%d prctl(PR_GET_KEEPCAPS) mismatch: got=%d want=%d", syscall.Gettid(), v, x)
    			}
    			r <- v
    			if once {
    				break
    			}
    			runtime.UnlockOSThread()
    		}
    	}
    
    	// launches per fns member.
    	const launches = 11
    	question := make(chan uintptr)
    	response := make(chan uintptr)
    	defer close(question)
    
    	routines := 0
    	for i, v := range fns {
    		for j := 0; j < launches; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    // assumes that all add() operations have been completed.
    func (cl *candidateList) get() []Candidate {
    	return cl.items[:cl.size()]
    }
    
    // Interface is expected to be implemented by different preemption plugins as all those member
    // methods might have different behavior compared with the default preemption.
    type Interface interface {
    	// GetOffsetAndNumCandidates chooses a random offset and calculates the number of candidates that should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    // The implementation of the predeclared function panic.
    // The compiler emits calls to this function.
    //
    // gopanic should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - go.undefinedlabs.com/scopeagent
    //   - github.com/goplus/igop
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname gopanic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    	unlock(&c.lock)
    	return pd
    }
    
    // makeArg converts pd to an interface{}.
    // makeArg does not do any allocation. Normally, such
    // a conversion requires an allocation because pointers to
    // types which embed runtime/internal/sys.NotInHeap (which pollDesc is)
    // must be stored in interfaces indirectly. See issue 42076.
    func (pd *pollDesc) makeArg() (i any) {
    	x := (*eface)(unsafe.Pointer(&i))
    	x._type = pdType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val expectClassSymbol: KaClassLikeSymbol
            val members: List<KaCallableSymbol>
        }
    
        interface DefaultArgumentsInExpectActualizedByFakeOverride : KaFirDiagnostic<KtClass> {
            override val diagnosticClass get() = DefaultArgumentsInExpectActualizedByFakeOverride::class
            val expectClassSymbol: KaClassLikeSymbol
            val members: List<KaFunctionLikeSymbol>
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		}
    		if warning != nil {
    			klog.V(1).Infof("[upgrade/etcd] WARNING: %v", warning)
    		}
    	}
    
    	// Get the etcd version of the local/stacked etcd member running on the current machine
    	currentEtcdVersionStr, err := GetEtcdImageTagFromStaticPod(pathMgr.RealManifestDir())
    	if err != nil {
    		return true, errors.Wrap(err, "failed to retrieve the current etcd version")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/time/time.go

    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top