Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 275 for place (0.05 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection.go

    	}
    	if !l.perRevision {
    		// Function to use to decide whether this leader should steal the existing lock.
    		// This is disable when perRevision is used, as this enables the Lease. Lease doesn't have a holderKey field to place our key
    		// as holderKey is an Istio specific fork.
    		// While its possible to make it work with Lease as well (via an annotation to store it), we don't ever need prioritized
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body.md

        ```
    
    ## Request body + path + query parameters
    
    You can also declare **body**, **path** and **query** parameters, all at the same time.
    
    **FastAPI** will recognize each of them and take the data from the correct place.
    
    === "Python 3.10+"
    
        ```Python hl_lines="16"
        {!> ../../../docs_src/body/tutorial004_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="18"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/mcentral.go

    		// set s.sweepgen to indicate s is swept.
    		atomic.Store(&s.sweepgen, sg-1)
    	} else {
    		// Indicate that s is no longer cached.
    		atomic.Store(&s.sweepgen, sg)
    	}
    
    	// Put the span in the appropriate place.
    	if stale {
    		// It's stale, so just sweep it. Sweeping will put it on
    		// the right list.
    		//
    		// We don't use a sweepLocker here. Stale cached spans
    		// aren't in the global sweep lists, so mark termination
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_test.go

    		atomic.Xadduintptr(&total, uintptr(-int64(inc)))
    	})
    	if total != 0 {
    		t.Fatalf("xadduintpr total error, want %d, got %d", 0, total)
    	}
    }
    
    // Tests that xadduintptr correctly updates 64-bit values. The place where
    // we actually do so is mstats.go, functions mSysStat{Inc,Dec}.
    func TestXadduintptrOnUint64(t *testing.T) {
    	if goarch.BigEndian {
    		// On big endian architectures, we never use xadduintptr to update
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/expvar/expvar.go

    	v.m.Clear()
    	return v
    }
    
    // addKey updates the sorted list of keys in v.keys.
    func (v *Map) addKey(key string) {
    	v.keysMu.Lock()
    	defer v.keysMu.Unlock()
    	// Using insertion sort to place key into the already-sorted v.keys.
    	i, found := slices.BinarySearch(v.keys, key)
    	if found {
    		return
    	}
    	v.keys = slices.Insert(v.keys, i, key)
    }
    
    func (v *Map) Get(key string) Var {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug.go

    	updateMu.Lock()
    	defer updateMu.Unlock()
    
    	// Update all the cached values, creating new ones as needed.
    	// We parse the environment variable first, so that any settings it has
    	// are already locked in place (did[name] = true) before we consider
    	// the defaults.
    	did := make(map[string]bool)
    	parse(did, env)
    	parse(did, def)
    
    	// Clear any cached values that are no longer present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/tracecpu.go

    		for ; nstk < len(pcBuf) && nstk-1 < len(stk); nstk++ {
    			pcBuf[nstk] = uintptr(stk[nstk-1])
    		}
    
    		// Write out a trace event.
    		w := unsafeTraceWriter(gen, trace.cpuBuf[gen%2])
    
    		// Ensure we have a place to write to.
    		var flushed bool
    		w, flushed = w.ensure(2 + 5*traceBytesPerNumber /* traceEvCPUSamples + traceEvCPUSample + timestamp + g + m + p + stack ID */)
    		if flushed {
    			// Annotate the batch as containing strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray.go

    		// After eliminating them, we may end up with fewer than n matches.
    		// If we don't have enough at the end, redo the search with an
    		// increased value n1, but only if Lookup returned all the requested
    		// indices in the first place (if it returned fewer than that then
    		// there cannot be more).
    		for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
    			indices := x.Lookup(lit, n1)
    			if len(indices) == 0 {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top