Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for lib_func (0.23 sec)

  1. src/runtime/os3_solaris.go

    	libc_sem_post,
    	libc_sem_reltimedwait_np,
    	libc_sem_wait,
    	libc_setitimer,
    	libc_sigaction,
    	libc_sigaltstack,
    	libc_sigprocmask,
    	libc_sysconf,
    	libc_usleep,
    	libc_write,
    	libc_pipe2 libcFunc
    )
    
    var sigset_all = sigset{[4]uint32{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)}}
    
    func getPageSize() uintptr {
    	n := int32(sysconf(__SC_PAGESIZE))
    	if n <= 0 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_solaris_amd64.go

    //go:linkname libc_recvfrom libc_recvfrom
    //go:linkname libc___xnet_recvmsg libc___xnet_recvmsg
    //go:linkname libc_getexecname libc_getexecname
    //go:linkname libc_utimensat libc_utimensat
    
    type libcFunc uintptr
    
    var (
    	libc_pipe2,
    	libc_accept4,
    	libc_Getcwd,
    	libc_getgroups,
    	libc_setgroups,
    	libc_fcntl,
    	libc_accept,
    	libc___xnet_sendmsg,
    	libc_Access,
    	libc_Adjtime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
      bool is_func = false;
      // For functions, the resources to analyze are the function arguments.
      // Otherwise, its the region captures.
      if (func::FuncOp func = dyn_cast<func::FuncOp>(op_)) {
        is_func = true;
        Region& body = func.getBody();
        for (BlockArgument arg : body.getArguments()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	// Set up fake informers that return instances of mock Policy definitoins
    	// and mock policy bindings
    	informer = &testInformer{SharedIndexInformer: cache.NewSharedIndexInformer(&cache.ListWatch{
    		ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
    			return tracker.List(fakeGVR, fakeGVK, "")
    		},
    		WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
    			return tracker.Watch(fakeGVR, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_linux.go

    	ctx, cancelFunc := context.WithTimeout(ctx, timeoutForNodePodCIDR)
    	defer cancelFunc()
    
    	fieldSelector := fields.OneTermEqualSelector("metadata.name", nodeName).String()
    	lw := &cache.ListWatch{
    		ListFunc: func(options metav1.ListOptions) (object runtime.Object, e error) {
    			options.FieldSelector = fieldSelector
    			return client.CoreV1().Nodes().List(ctx, options)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_aix_ppc64.go

    //go:linkname libc_write libc_write
    //go:linkname libc_writev libc_writev
    //go:linkname libc_gettimeofday libc_gettimeofday
    //go:linkname libc_mmap libc_mmap
    //go:linkname libc_munmap libc_munmap
    
    type libcFunc uintptr
    
    var (
    	libc_fcntl,
    	libc_Dup2,
    	libc_pipe,
    	libc_readlink,
    	libc_utimes,
    	libc_utimensat,
    	libc_unlinkat,
    	libc_getcwd,
    	libc_getgroups,
    	libc_setgroups,
    	libc_getdirent,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. pkg/config/schema/kubeclient/resources.gen.go

    		}
    	default:
    		panic(fmt.Sprintf("Unknown type %v", g))
    	}
    	return c.Informers().InformerFor(g, opts, func() cache.SharedIndexInformer {
    		inf := cache.NewSharedIndexInformer(
    			&cache.ListWatch{
    				ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return l(options)
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top