Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for bigptr (0.11 sec)

  1. src/syscall/dirent_test.go

    	for {
    		n, err := syscall.ReadDirent(fd, buf)
    		if err == syscall.EINVAL {
    			// On linux, 'man getdents64' says that EINVAL indicates “result buffer is too small”.
    			// Try a bigger buffer.
    			t.Logf("ReadDirent: %v; retrying with larger buffer", err)
    			buf = bytes.Repeat([]byte{0xCD}, len(buf)*2)
    			continue
    		}
    		if err != nil {
    			t.Fatalf("syscall.readdir: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/runtime/mfixalloc.go

    	nalloc uint32  // size of new chunks in bytes
    	inuse  uintptr // in-use bytes now
    	stat   *sysMemStat
    	zero   bool // zero allocations
    }
    
    // A generic linked list of blocks.  (Typically the block is bigger than sizeof(MLink).)
    // Since assignments to mlink.next will result in a write barrier being performed
    // this cannot be used by some of the internal GC structures. For example when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. operator/pkg/validate/validate.go

    	if structPtr == nil {
    		return nil
    	}
    	if util.IsStruct(structPtr) {
    		scope.Debugf("validate path %s, skipping struct type %T", path, structPtr)
    		return nil
    	}
    	if !util.IsPtr(structPtr) {
    		metrics.CRValidationErrorTotal.Increment()
    		return util.NewErrs(fmt.Errorf("validate path %s, value: %v, expected ptr, got %T", path, structPtr, structPtr))
    	}
    	structElems := reflect.ValueOf(structPtr).Elem()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

        ```
    
    ## Abhängigkeiten für eine Gruppe von *Pfadoperationen*
    
    Wenn Sie später lesen, wie Sie größere Anwendungen strukturieren ([Größere Anwendungen – Mehrere Dateien](../../tutorial/bigger-applications.md){.internal-link target=_blank}), möglicherweise mit mehreren Dateien, lernen Sie, wie Sie einen einzelnen `dependencies`-Parameter für eine Gruppe von *Pfadoperationen* deklarieren.
    
    ## Globale Abhängigkeiten
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:16 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

      }
    
      // A random value that cannot be 0 and that is unsigned-less-than or equal
      // to the given dividend, so that we don't have half of our divisions being
      // trivial because the divisor is bigger than the dividend.
      // Using remainder here does not give us a uniform distribution but it should
      // not have a big impact on the measurement.
      private static long randomDivisor(long dividend) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  6. src/runtime/sigtab_linux_mipsx.go

    	/*  16 */ {_SigNotify, "SIGUSR1: user-defined signal 1"},
    	/*  17 */ {_SigNotify, "SIGUSR2: user-defined signal 2"},
    	/*  18 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    	/*  19 */ {_SigNotify, "SIGPWR: power failure restart"},
    	/*  20 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/*  21 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/*  22 */ {_SigNotify, "SIGIO: i/o now possible"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. docs/em/docs/advanced/async-tests.md

    `TestClient` ⚓️ 🔛 <a href="https://www.python-httpx.org" class="external-link" target="_blank">🇸🇲</a>, &amp; ↩️, 👥 💪 ⚙️ ⚫️ 🔗 💯 🛠️.
    
    ## 🖼
    
    🙅 🖼, ➡️ 🤔 📁 📊 🎏 1️⃣ 🔬 [🦏 🈸](../tutorial/bigger-applications.md){.internal-link target=_blank} &amp; [🔬](../tutorial/testing.md){.internal-link target=_blank}:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/runtime/defs_aix.go

    	_SIGURG     = C.SIGURG
    	_SIGXCPU    = C.SIGXCPU
    	_SIGXFSZ    = C.SIGXFSZ
    	_SIGVTALRM  = C.SIGVTALRM
    	_SIGPROF    = C.SIGPROF
    	_SIGWINCH   = C.SIGWINCH
    	_SIGIO      = C.SIGIO
    	_SIGPWR     = C.SIGPWR
    	_SIGSYS     = C.SIGSYS
    	_SIGTERM    = C.SIGTERM
    	_SIGEMT     = C.SIGEMT
    	_SIGWAITING = C.SIGWAITING
    
    	_FPE_INTDIV = C.FPE_INTDIV
    	_FPE_INTOVF = C.FPE_INTOVF
    	_FPE_FLTDIV = C.FPE_FLTDIV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/version.go

    	}
    	verClient, err := versionutil.ParseGeneric(clientVersion)
    	if err != nil {
    		return "", errors.Wrap(err, "client version error")
    	}
    	// If the remote Major version is bigger or if the Major versions are the same,
    	// but the remote Minor is bigger use the client version release. This handles Major bumps too.
    	if verClient.Major() < verRemote.Major() ||
    		(verClient.Major() == verRemote.Major()) && verClient.Minor() < verRemote.Minor() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         */
        public void setEntryCompression(ZipEntryCompression entryCompression) {
            this.entryCompression = entryCompression;
        }
    
        /**
         * Enables building zips with more than 65535 files or bigger than 4GB.
         *
         * @see #isZip64()
         */
        public void setZip64(boolean allowZip64) {
            this.allowZip64 = allowZip64;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top