Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for pidFile (0.1 sec)

  1. cluster/gce/gci/configure-helper.sh

      if [ -f /etc/docker/daemon.json ]; then
        echo "Contents of the old docker config"
        cat /etc/docker/daemon.json
      fi
    
      cat <<EOF >/etc/docker/daemon.json
    {
    EOF
    
    addockeropt "\"pidfile\": \"/var/run/docker.pid\",
      \"iptables\": false,
      \"ip-masq\": false,"
    
      echo "setting log-level"
      if [[ "${TEST_CLUSTER:-}" == "true" ]]; then
        addockeropt "\"log-level\": \"debug\","
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. .gitignore

    .idea
    .ipynb_checkpoints
    .mypy_cache
    .vscode
    __pycache__
    .pytest_cache
    htmlcov
    dist
    site
    .coverage
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 13:11:35 UTC 2023
    - 268 bytes
    - Viewed (0)
  3. .gitignore

    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    /tensorflow/lite/examples/ios/simple/data/*.tflite
    /tensorflow/lite/examples/ios/simple/data/*.txt
    Podfile.lock
    Pods
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  4. pkg/volume/util/util_test.go

    			`
    apiVersion: v1
    kind: Pod
    metadata:
      name: testpod
    spec:
      - image: registry.k8s.io/busybox
    `,
    			true,
    		},
    	}
    
    	for _, test := range tests {
    		tempFile, err := os.CreateTemp("", "podfile")
    		defer os.Remove(tempFile.Name())
    		if err != nil {
    			t.Fatalf("cannot create temporary file: %v", err)
    		}
    		if _, err = tempFile.Write([]byte(test.content)); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// Up to 10 locks held by this m, maintained by the lock ranking code.
    	locksHeldLen int
    	locksHeld    [10]heldLockInfo
    }
    
    type p struct {
    	id          int32
    	status      uint32 // one of pidle/prunning/...
    	link        puintptr
    	schedtick   uint32     // incremented on every scheduler call
    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// p.runSafePointFn == 1 and will call runSafePointFn when
    	// changing its status to _Pidle/_Psyscall.
    
    	// Run safe point function for all idle Ps. sched.pidle will
    	// not change because we hold sched.lock.
    	for p := sched.pidle.ptr(); p != nil; p = p.link.ptr() {
    		if atomic.Cas(&p.runSafePointFn, 1, 0) {
    			fn(p)
    			sched.safePointWait--
    		}
    	}
    
    	wait := sched.safePointWait > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ## 0.30.1
    
    * Add section in docs about [External Links and Articles](https://fastapi.tiangolo.com/external-links/). PR [#341](https://github.com/tiangolo/fastapi/pull/341).
    
    * Remove `Pipfile.lock` from the repository as it is only used by FastAPI contributors (developers of FastAPI itself). See the PR for more details. PR [#340](https://github.com/tiangolo/fastapi/pull/340).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top