Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 209 for Zahlen (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type Log2phys_t struct {
    	Flags uint32
    	_     [16]byte
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    type Dirent struct {
    	Ino     uint64
    	Seekoff uint64
    	Reclen  uint16
    	Namlen  uint16
    	Type    uint8
    	Name    [1024]int8
    	_       [3]byte
    }
    
    type Attrlist struct {
    	Bitmapcount uint16
    	Reserved    uint16
    	Commonattr  uint32
    	Volattr     uint32
    	Dirattr     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

    extern "C" {
    #endif
    
    #define CUNIT_MAX_ENTITY_LEN 5
    /**< Maximum number of characters in a translated xml entity. */
    
    CU_EXPORT size_t CU_translate_special_characters(const char *szSrc, char *szDest, size_t maxlen);
    /**< 
     *  Converts special characters in szSrc to xml entity codes and stores 
     *  result in szDest.  Currently conversion of '&', '<', and '>' is supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/internal/xcoff/ar.go

    		}
    		member.Size = uint64(size)
    
    		// Read name
    		namlen, err := parseDecimalBytes(mhdr.Arnamlen[:])
    		if err != nil {
    			return nil, fmt.Errorf("error parsing name length in member header(%q); %v", mhdr, err)
    		}
    		name := make([]byte, namlen)
    		if err := binary.Read(sr, binary.BigEndian, name); err != nil {
    			return nil, err
    		}
    		member.Name = string(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    	var frame traceFrame
    	frame.PC = f.PC
    
    	fn := f.Function
    	const maxLen = 1 << 10
    	if len(fn) > maxLen {
    		fn = fn[len(fn)-maxLen:]
    	}
    	frame.funcID = trace.stringTab[gen%2].put(gen, fn)
    	frame.line = uint64(f.Line)
    	file := f.File
    	if len(file) > maxLen {
    		file = file[len(file)-maxLen:]
    	}
    	frame.fileID = trace.stringTab[gen%2].put(gen, file)
    	return frame
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package bytealg
    
    import "internal/cpu"
    
    const MaxBruteForce = 16
    
    var SupportsPower9 = cpu.PPC64.IsPOWER9
    
    func init() {
    	MaxLen = 32
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 05:34:46 UTC 2023
    - 637 bytes
    - Viewed (0)
  6. src/runtime/memmove_test.go

    		total := 0
    		minLen := 0
    		maxLen := 0
    
    		for _, clrLen := range t.data {
    			maxLen = max(maxLen, clrLen)
    			if clrLen < minLen || minLen == 0 {
    				minLen = clrLen
    			}
    			total += clrLen
    		}
    		buffer := make([]byte, maxLen)
    
    		text := ""
    		if minLen >= (1 << 20) {
    			text = fmt.Sprint(minLen>>20, "M ", (maxLen+(1<<20-1))>>20, "M")
    		} else if minLen >= (1 << 10) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_arm64.go

    package bytealg
    
    // Empirical data shows that using Index can get better
    // performance when len(s) <= 16.
    const MaxBruteForce = 16
    
    func init() {
    	// Optimize cases where the length of the substring is less than 32 bytes
    	MaxLen = 32
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 05:45:33 UTC 2019
    - 706 bytes
    - Viewed (0)
  8. test/indirect.go

    	// the compiler will print a different
    	// line number for each len call if
    	// it decides there are type errors.
    	// it might also help in the traceback.
    	x :=
    		len(m0) +
    			len(m3)
    	if x != 1 {
    		println("wrong maplen")
    		panic("fail")
    	}
    
    	x =
    		len(s0) +
    			len(s3)
    	if x != 1 {
    		println("wrong stringlen")
    		panic("fail")
    	}
    
    	x =
    		len(a0) +
    			len(a2)
    	if x != 20 {
    		println("wrong arraylen")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  9. src/syscall/syscall_dragonfly.go

    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	namlen, ok := direntNamlen(buf)
    	if !ok {
    		return 0, false
    	}
    	return (16 + namlen + 1 + 7) &^ 7, true
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))
    }
    
    //sysnb pipe() (r int, w int, err error)
    
    func Pipe(p []int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. docs/de/docs/help-fastapi.md

    In vielen Fällen kennen Sie möglicherweise bereits die Antwort auf diese Fragen. 🤓
    
    Wenn Sie vielen Menschen bei ihren Fragen helfen, werden Sie offizieller [FastAPI-Experte](fastapi-people.md#experten){.internal-link target=_blank}. 🎉
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top