Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Hdrlen (0.11 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		if mf == nil {
    			// telemetry might have been off
    			return
    		}
    		mf.close()
    	}
    }
    
    // A mappedFile is a counter file mmapped into memory.
    type mappedFile struct {
    	meta      string
    	hdrLen    uint32
    	zero      [4]byte
    	closeOnce sync.Once
    	f         *os.File
    	mapping   *mmap.Data
    }
    
    // existing should be nil the first time this is called for a file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) = userenv.GetUserProfileDirectoryW
    //sys	getSystemDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemDirectoryW
    //sys	getWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetWindowsDirectoryW
    //sys	getSystemWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) = kernel32.GetSystemWindowsDirectoryW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kPlaceholder:
          LOG(ERROR) << "Unexpected non-primitive attribute value.";
          return "/* ERROR */";
      }
    }
    
    string AttrView::VariableStrLen() const {
      return Call("strlen", {VariableName()});
    }
    
    string AttrView::VariableSpanData() const {
      return Call(VariableName(), "data", {}, ".");
    }
    
    string AttrView::VariableSpanLen() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall6(procConvertSecurityDescriptorToStringSecurityDescriptorW.Addr(), 5, uintptr(unsafe.Pointer(sd)), uintptr(revision), uintptr(securityInformation), uintptr(unsafe.Pointer(str)), uintptr(unsafe.Pointer(strLen)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    	return result, true
    }
    
    func (c *Cacher) processEvent(event *watchCacheEvent) {
    	if curLen := int64(len(c.incoming)); c.incomingHWM.Update(curLen) {
    		// Monitor if this gets backed up, and how much.
    		klog.V(1).Infof("cacher (%v): %v objects queued in incoming channel.", c.groupResource.String(), curLen)
    	}
    	c.incoming <- *event
    }
    
    func (c *Cacher) dispatchEvents() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	case ir.OSLICE2ARRPTR:
    		// if arrlen > slice.len {
    		//   panic(...)
    		// }
    		// slice.ptr
    		n := n.(*ir.ConvExpr)
    		v := s.expr(n.X)
    		nelem := n.Type().Elem().NumElem()
    		arrlen := s.constInt(types.Types[types.TINT], nelem)
    		cap := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], v)
    		s.boundsCheck(arrlen, cap, ssa.BoundsConvert, false)
    		op := ssa.OpSlicePtr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top