Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Mounts (0.4 sec)

  1. src/go/printer/nodes.go

    		// align columns and do not use formfeed.
    		if prevSize > 0 && size > 0 {
    			const smallSize = 40
    			if count == 0 || prevSize <= smallSize && size <= smallSize {
    				useFF = false
    			} else {
    				const r = 2.5                               // threshold
    				geomean := math.Exp(lnsum / float64(count)) // count > 0
    				ratio := float64(size) / geomean
    				useFF = r*ratio <= 1 || r <= ratio
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    		// https://en.wikipedia.org/wiki/Copy_protection so the incoming stream
    		// is always going to be in-memory as we cannot re-read from what we
    		// wrote to disk - since that amounts to "copying" from a "copy"
    		// instead of "copying" from source, we need the stream to be seekable
    		// to ensure that we can make fan-out calls concurrently.
    		buf := bytebufferpool.Get()
    		defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///     existing file or one of the parent entries in `path` doesn't exist.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` points to a
      ///     directory or if it is invalid.
      ///   * Must set `status` to `TF_INVALID_ARGUMENT` if `path` points to an
      ///     empty file.
      ///   * Might use any other error value for `status` to signal other errors.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if len(items) != 0 {
    		t.Errorf("unexpected items: %#v", items)
    	}
    }
    
    // testListTableConversion verifies a set of known bounds and expected limitations for the values
    // returned from a TableList. These conditions may be changed if necessary with adequate review.
    func (t *Tester) testListTableConversion(obj runtime.Object, assignFn AssignFunc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    		if err != brokenConnErr {
    			t.Errorf("#%d: expected error from brokenConn but got %q", breakAfter, err)
    		}
    		brokenC.Close()
    
    		<-done
    	}
    }
    
    // writeCountingConn wraps a net.Conn and counts the number of Write calls.
    type writeCountingConn struct {
    	net.Conn
    
    	// numWrites is the number of writes that have been done.
    	numWrites int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	}
    
    	var terminating int32 = 0
    	if onlyReplaceFailedPods(jobCtx.job) {
    		// For PodFailurePolicy specified but PodReplacementPolicy disabled
    		// we still need to count terminating pods for replica counts
    		// But we will not allow updates to status.
    		if jobCtx.terminating == nil {
    			terminating = controller.CountTerminatingPods(jobCtx.pods)
    		} else {
    			terminating = *jobCtx.terminating
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	// mark the pod as started
    	status.startedAt = p.clock.Now()
    	status.mergeLastUpdate(update.Options)
    
    	// If we are admitting the pod and it is new, record the count of containers
    	// TODO: We should probably move this into syncPod and add an execution count
    	// to the syncPod arguments, and this should be recorded on the first sync.
    	// Leaving it here complicates a particularly important loop.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	}
    
    	if sysStat != &memstats.other_sys {
    		sysStat.add(int64(size))
    		memstats.other_sys.add(-int64(size))
    	}
    	return p
    }
    
    // inPersistentAlloc reports whether p points to memory allocated by
    // persistentalloc. This must be nosplit because it is called by the
    // cgo checker code, which is called by the write barrier code.
    //
    //go:nosplit
    func inPersistentAlloc(p uintptr) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.setenv("GOPATH", tg.path("."))
    	tg.run("install", "-x", "a")
    	tg.run("install", "-x", "a")
    	// The second install should have printed only a WORK= line,
    	// nothing else.
    	if bytes.Count(tg.stdout.Bytes(), []byte{'\n'})+bytes.Count(tg.stderr.Bytes(), []byte{'\n'}) > 1 {
    		t.Error("unnecessary output when installing installed package")
    	}
    }
    
    // Issue 24704.
    func TestLinkerTmpDirIsDeleted(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    	PublicKey          any
    
    	Version             int
    	SerialNumber        *big.Int
    	Issuer              pkix.Name
    	Subject             pkix.Name
    	NotBefore, NotAfter time.Time // Validity bounds.
    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top