Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 459 for Lives (0.1 sec)

  1. src/cmd/link/link_test.go

    `text:"It was grand to see how the wind awoke, and bent the trees, and drove the rain before it like a cloud of smoke; and to hear the solemn thunder, and to see the lightning; and while thinking with awe of the tremendous powers by which our little lives are encompassed, to consider how beneficent they are, and how upon the smallest flower and leaf there was already a freshness poured from all this seeming rage, which seemed to make creation new again."`
    
    	jarndyce int `text:"Jarndyce and Jarndyce...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    	return blockUntilEmptyFinalizerQueue(timeout)
    }
    
    func FrameStartLine(f *Frame) int {
    	return f.startLine
    }
    
    // PersistentAlloc allocates some memory that lives outside the Go heap.
    // This memory will never be freed; use sparingly.
    func PersistentAlloc(n uintptr) unsafe.Pointer {
    	return persistentalloc(n, 0, &memstats.other_sys)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	Doc           string   // documentation synopsis
    	ImportPath    string   // import path of package ("" if unknown)
    	Root          string   // root of Go tree where this package lives
    	SrcRoot       string   // package source root directory ("" if unknown)
    	PkgRoot       string   // package install root directory ("" if unknown)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    		if v != nil {
    			sysFreeOS(v, n)
    		}
    		*hintList = hint.next
    		h.arenaHintAlloc.free(unsafe.Pointer(hint))
    	}
    
    	if size == 0 {
    		if raceenabled {
    			// The race detector assumes the heap lives in
    			// [0x00c000000000, 0x00e000000000), but we
    			// just ran out of hints in this region. Give
    			// a nice failure.
    			throw("too many address space collisions for -race mode")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                            description: Path to access on the HTTP server.
                            type: string
                          port:
                            description: Port on which the endpoint lives.
                            maximum: 4294967295
                            minimum: 0
                            type: integer
                          scheme:
                            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	// transaction has been committed or rolled back.
    	stmts struct {
    		sync.Mutex
    		v []*Stmt
    	}
    
    	// cancel is called after done transitions from 0 to 1.
    	cancel func()
    
    	// ctx lives for the life of the transaction.
    	ctx context.Context
    }
    
    // awaitDone blocks until the context in Tx is canceled and rolls back
    // the transaction if it's not already done.
    func (tx *Tx) awaitDone() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                            description: Path to access on the HTTP server.
                            type: string
                          port:
                            description: Port on which the endpoint lives.
                            maximum: 4294967295
                            minimum: 0
                            type: integer
                          scheme:
                            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. src/reflect/value.go

    // described by v. The Value v may or may not have the
    // flagMethod bit set, so the kind cached in v.flag should
    // not be used.
    // The return value rcvrtype gives the method's actual receiver type.
    // The return value t gives the method type signature (without the receiver).
    // The return value fn is a pointer to the method code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/cel/config.go

    const (
    	// PerCallLimit specify the actual cost limit per CEL validation call
    	// current PerCallLimit gives roughly 0.1 second for each expression validation call
    	PerCallLimit = 1000000
    
    	// RuntimeCELCostBudget is the overall cost budget for runtime CEL validation cost per ValidatingAdmissionPolicyBinding or CustomResource
    	// current RuntimeCELCostBudget gives roughly 1 seconds for the validation
    	RuntimeCELCostBudget = 10000000
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    var packageCache = map[string]*Package{}
    
    // dirToImportPath returns the pseudo-import path we use for a package
    // outside the Go path. It begins with _/ and then contains the full path
    // to the directory. If the package lives in c:\home\gopher\my\pkg then
    // the pseudo-import path is _/c_/home/gopher/my/pkg.
    // Using a pseudo-import path like this makes the ./ imports no longer
    // a special case, so that all the code to deal with ordinary imports works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top