Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,561 for Store2 (0.25 sec)

  1. src/internal/runtime/atomic/atomic_arm.s

    	B	·Load(SB)
    
    TEXT ·Storeint32(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	B	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	B	·Xadd(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

    
        def setup() {
            _ * context.history >> Optional.of(executionHistoryStore)
            _ * context.cacheKey >> Optional.of(TestHashCodes.hashCodeFrom(1234))
        }
    
        def "output snapshots are stored after successful execution"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
            1 * delegate.execute(work, context) >> delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pkg/scheduler/util/assumecache/assume_cache.go

    	// The logger that was chosen when setting up the cache.
    	// Will be used for all operations.
    	logger klog.Logger
    
    	// Synchronizes updates to store
    	rwMutex sync.RWMutex
    
    	// describes the object stored
    	description string
    
    	// Stores objInfo pointers
    	store cache.Indexer
    
    	// Index function for object
    	indexFunc cache.IndexFunc
    	indexName string
    }
    
    type objInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

                    synchronized(actions) {
                        actions.add(registeredFlowAction)
                    }
                }
    
                override fun store(): Pair<Any, State> {
                    return actions to Stored(actions)
                }
            }
    
            class Stored(override val pendingActions: List<RegisteredFlowAction>) : State()
    
            class Loaded(override val pendingActions: List<RegisteredFlowAction>) : State() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/sync/map_bench_test.go

    				if loadsSinceStore++; loadsSinceStore > stores {
    					m.LoadOrStore(i, stores)
    					loadsSinceStore = 0
    					stores++
    				}
    			}
    		},
    	})
    }
    
    // BenchmarkAdversarialDelete tests performance when we periodically delete
    // one key and add a different one in a large map.
    //
    // This forces the Load calls to always acquire the map's mutex and periodically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            1 * delegateResult.execution >> Try.failure(new RuntimeException("failure"))
    
            then:
            0 * buildCacheController.store(_)
            0 * _
        }
    
        def "does not load but stores when loading is disabled"() {
            given:
            def execution = Mock(Execution)
    
            when:
            def result = step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/passbm_test.go

    				valn("store", i-1, 4)),
    			Valu(valn("store", i, 1), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 1),
    				valn("v", i, 0), valn("zero", i, 1)),
    			Valu(valn("store", i, 2), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 2),
    				valn("v", i, 0), valn("store", i, 1)),
    			Valu(valn("store", i, 3), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/types.go

    	r := f.u.Load()
    	return *(*float64)(unsafe.Pointer(&r))
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (f *Float64) Store(value float64) {
    	f.u.Store(*(*uint64)(unsafe.Pointer(&value)))
    }
    
    // UnsafePointer is an atomically accessed unsafe.Pointer value.
    //
    // Note that because of the atomicity guarantees, stores to values
    // of this type never trigger a write barrier, and the relevant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //     example, a 2-D matrix with 2-D blocks, both stored in row-major order
      //     would have traversal_order = (d0, d1, d2, d3).
      traversal_order:[int];
      // For an n-dimensional tensor with a k-dimensional block (0 <= k <= n),
      // stores how a block dimension in (dn, ..., dn+k-1) maps to the original
      // tensor dimension in (d0, ..., dn).
      // It's stored in the order of (dn, ..., dn+k-1).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/analyze_test.go

    	sa.AddDefaultResources()
    	g.Expect(sa.stores).To(BeEmpty())
    
    	// With ingress on, though, we should.
    	ingressStrictMeshCfg := tempFileFromString(t, "ingressControllerMode: 'STRICT'")
    	defer func() { _ = os.Remove(ingressStrictMeshCfg.Name()) }()
    
    	err = sa.AddFileKubeMeshConfig(ingressStrictMeshCfg.Name())
    	g.Expect(err).To(BeNil())
    	sa.AddDefaultResources()
    	g.Expect(sa.stores).To(HaveLen(0))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top