Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 110 for Zahlen (0.2 sec)

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

    	Pid    int32
    	Type   int16
    	Whence int16
    	Sysid  int32
    	_      [4]byte
    }
    
    type Dirent struct {
    	Fileno uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Pad0   uint8
    	Namlen uint16
    	Pad1   uint16
    	Name   [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    const (
    	PathMax = 0x400
    )
    
    const (
    	FADV_NORMAL     = 0x0
    	FADV_RANDOM     = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. operator/pkg/util/yaml.go

    	return res + "\n" + diff
    }
    
    func diffStringList(l1, l2 []string) string {
    	var maxLen int
    	var minLen int
    	var l1Max bool
    	res := ""
    	if len(l1)-len(l2) > 0 {
    		maxLen = len(l1)
    		minLen = len(l2)
    		l1Max = true
    	} else {
    		maxLen = len(l2)
    		minLen = len(l1)
    		l1Max = false
    	}
    
    	for i := 0; i < maxLen; i++ {
    		d := ""
    		if i >= minLen {
    			if l1Max {
    				d = yamlDiff(l1[i], "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/crypto/tls/prf_test.go

    	clientRandom, serverRandom                     string
    	masterSecret                                   string
    	clientMAC, serverMAC                           string
    	clientKey, serverKey                           string
    	macLen, keyLen                                 int
    	contextKeyingMaterial, noContextKeyingMaterial string
    }
    
    func TestKeysFromPreMasterSecret(t *testing.T) {
    	for i, test := range testKeysFromTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 27 22:24:05 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Manchmal benötigen Sie den Rückgabewert einer Abhängigkeit innerhalb Ihrer *Pfadoperation-Funktion* nicht wirklich.
    
    Oder die Abhängigkeit gibt keinen Wert zurück.
    
    Aber Sie müssen Sie trotzdem ausführen/auflösen.
    
    In diesen Fällen können Sie, anstatt einen Parameter der *Pfadoperation-Funktion* mit `Depends` zu deklarieren, eine `list`e von `dependencies` zum *Pfadoperation-Dekorator* hinzufügen.
    
    ## `dependencies` zum *Pfadoperation-Dekorator* hinzufügen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:16 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top