Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,212 for Storep (0.29 sec)

  1. pkg/config/analysis/local/context.go

    )
    
    // NewContext allows tests to use istiodContext without exporting it.  returned context is not threadsafe.
    func NewContext(stores map[cluster.ID]model.ConfigStore, cancelCh <-chan struct{}, collectionReporter CollectionReporterFn) analysis.Context {
    	return &istiodContext{
    		stores:             stores,
    		cancelCh:           cancelCh,
    		messages:           map[string]*diag.Messages{},
    		collectionReporter: collectionReporter,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/WeakIdentityHashMap.java

    import java.lang.ref.WeakReference;
    import java.util.HashMap;
    import java.util.Set;
    
    /**
     * A specialized map wrapper, that uses weak references for keys and stores
     * values as strong references. It allows the garbage collector to collect keys when they are no longer in use.
     *
     * Keys are stored wrapped in {@code WeakIdentityHashMap.WeakKey} weak reference implementation, that uses {@code System.identityHashCode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4964.dir/b.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "./a"
    
    func F() {
    	// store 1 in a.global
    	x, y := 1, 2
    	t := a.T{Pointer: &x}
    	a.Store(&t)
    	_ = y
    }
    
    func G() {
    	// store 4 in a.global2
    	x, y := 3, 4
    	t := a.T{Pointer: &y}
    	a.Store2(&t)
    	_ = x
    }
    
    func main() {
    	F()
    	G()
    	p := a.Get()
    	n := *p
    	if n != 1 {
    		println(n, "!= 1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 08:03:45 UTC 2013
    - 484 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/loadstore_test.go

    // testDeadStorePanic_ssa ensures that we don't optimize away stores
    // that could be read by after recover().  Modeled after fixedbugs/issue1304.
    //
    //go:noinline
    func testDeadStorePanic_ssa(a int) (r int) {
    	defer func() {
    		recover()
    		r = a
    	}()
    	a = 2      // store
    	b := a - a // optimized to zero
    	c := 4
    	a = c / b // store, but panics
    	a = 3     // store
    	r = a
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/DefaultArtifactResolutionCacheTest.groovy

        }
    
        def "stores entry - lastModified = #lastModified"() {
            given:
            def key = "key"
            def artifactFile = tmp.createFile("artifact") << "content"
    
            when:
            index.store(key, artifactFile, new DefaultExternalResourceMetaData(new URI("abc"), lastModified, 100, contentType, etag, sha1, null, false))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. testing/architecture-test/build.gradle.kts

            return listOf(
                "-Darchunit.freeze.store.default.path=${location.absolutePath}",
                "-Darchunit.freeze.refreeze=${refreezeBoolean}",
                "-Darchunit.freeze.store.default.allowStoreUpdate=${refreezeBoolean}"
            )
        }
    }
    
    /**
     * Sorts the stored rules, so we keep a deterministic order when we add new rules.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

        }
    
        def "does suppress exceptions from store"() {
            given:
            1 * remote.store(key, _) >> { throw new RuntimeException() }
    
            when:
            controller.store(key, cacheableEntity, snapshots, executionTime)
    
            then:
            noExceptionThrown()
    
            and:
            1 * local.storeLocally(key, _)
        }
    
        def "does not store to local if local push is disabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    }
    
    // SetMachineState stores NUMANodeMap in State
    func (sc *stateCheckpoint) SetMachineState(memoryMap NUMANodeMap) {
    	sc.Lock()
    	defer sc.Unlock()
    
    	sc.cache.SetMachineState(memoryMap)
    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    // SetMemoryBlocks stores memory assignments of container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top