Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for palmer (0.2 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	// subsequent calls to ShouldPodContentBeRemoved on unknown pods will return
    	// true. It returns a map describing the state of each known pod worker. It
    	// is the responsibility of the caller to re-add any desired pods that are not
    	// returned as knownPods.
    	SyncKnownPods(desiredPods []*v1.Pod) (knownPods map[types.UID]PodWorkerSync)
    
    	// IsPodKnownTerminated returns true once SyncTerminatingPod completes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    // to verify which journal type first before accessing rest of the fields.
    type xlMetaV2Version struct {
    	Type             VersionType           `json:"Type" msg:"Type"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    // To improve performance, each block's state information is marked with
    // lastChanged and lastChecked "times" so unchanged predecessors can be
    // skipped on after-the-first iterations.  Doing this allows extra
    // iterations by the caller to be almost free.
    //
    // It is important to know that the set representation used for
    // startState, endState, and merges can share data for two sets where
    // one is a small delta from the other.  Doing this does require a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VSUBEUQM T2, ZER, CAR2, T2  // VSBIQ   T2, ZER, CAR2, T2
    
    	VSEL TT0, T0, T2, T0
    	VSEL TT1, T1, T2, T1
    
    	// Reorder the bytes so STXVD2X can be used.
    	// TT0, TT1 used for VPERM result in case
    	// the caller expects T0, T1 to be good.
    	XXPERMDI T0, T0, $2, TT0
    	XXPERMDI T1, T1, $2, TT1
    
    	STXVD2X TT0, (R0)(res_ptr)
    	STXVD2X TT1, (R16)(res_ptr)
    	RET
    
    #undef res_ptr
    #undef x_ptr
    #undef CPOOL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	pauseNS int64
    
    	// debug.gctrace heap sizes for this cycle.
    	heap0, heap1, heap2 uint64
    
    	// Cumulative estimated CPU usage.
    	cpuStats
    }
    
    // GC runs a garbage collection and blocks the caller until the
    // garbage collection is complete. It may also block the entire
    // program.
    func GC() {
    	// We consider a cycle to be: sweep termination, mark, mark
    	// termination, and sweep. This function shouldn't return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    					}
    					src.CallOrFail(t, opts)
    				})
    			})
    		}
    	})
    }
    
    func TestAuthorizationGateway(t *testing.T) {
    	runTest := func(t framework.TestContext, f func(t framework.TestContext, src echo.Caller, dst echo.Instance, opt echo.CallOptions)) {
    		svcs := apps.All
    		for _, dst := range svcs {
    			t.NewSubTestf("to %v", dst.Config().Service).Run(func(t framework.TestContext) {
    				dst := dst
    				opt := echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		return mtime1.After(mtime2)
    	})
    
    	defPool := PoolObjInfo{Index: -1}
    	for _, pinfo := range poolObjInfos {
    		// skip all objects from suspended pools if asked by the
    		// caller.
    		if opts.SkipDecommissioned && z.IsSuspended(pinfo.Index) {
    			continue
    		}
    		// Skip object if it's from pools participating in a rebalance operation.
    		if opts.SkipRebalancing && z.IsPoolRebalancing(pinfo.Index) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top