Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,929 for Store2 (0.21 sec)

  1. src/hash/crc32/crc32_s390x.s

    TEXT ·vectorizedIEEE(SB),NOSPLIT,$0
    	MOVWZ   crc+0(FP), R2     // R2 stores the CRC value
    	MOVD    p+8(FP), R3       // data pointer
    	MOVD    p_len+16(FP), R4  // len(p)
    
    	MOVD    $·crclecons(SB), R5
    	BR      vectorizedBody<>(SB)
    
    // func vectorizedCastagnoli(crc uint32, p []byte) uint32
    TEXT ·vectorizedCastagnoli(SB),NOSPLIT,$0
    	MOVWZ   crc+0(FP), R2     // R2 stores the CRC value
    	MOVD    p+8(FP), R3       // data pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

            1 * writeStore.add(key, action)
            0 * readStore.add(key, action)
        }
    
        def "searches in both read and write stores"() {
            setup:
            def r1 = Stub(LocallyAvailableExternalResource)
            def r2 = Stub(LocallyAvailableExternalResource)
            def r3 = Stub(LocallyAvailableExternalResource)
            1 * writeStore.search(key) >> {
                [r1] as Set
            }
            1 * readStore.search(key) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. pilot/test/mock/config.go

    		cs := cache.List(mockGvk, namespace)
    		os := store.List(mockGvk, namespace)
    		log.Infof("cache.List => Got %d, expected %d", len(cs), n)
    		log.Infof("store.List => Got %d, expected %d", len(os), n)
    		return len(os) == n && len(cs) == n
    	}, retry.Message("cache and backing store match"))
    
    	// remove elements directly through the client
    	for i := 0; i < n; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

        /**
         * Uses previously stored resumption data to enrich an existing execution request.
         * @param request The execution request that will be enriched.
         * @param rootProject The root project that is being built.
         */
        void applyResumptionData(MavenExecutionRequest request, MavenProject rootProject);
    
        /**
         * Removes previously stored resumption data.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/sys_linux_arm.s

    	B	end
    native_barrier:
    	DMB	MB_ISH
    end:
    	MOVB	R1, ret+4(FP)
    	RET
    
    TEXT	·Store8(SB),NOSPLIT,$0-5
    	MOVW	addr+0(FP), R1
    	MOVB	v+4(FP), R2
    
    	MOVB	runtime·goarm(SB), R8
    	CMP	$7, R8
    	BGE	native_barrier
    	BL	memory_barrier<>(SB)
    	B	store
    native_barrier:
    	DMB	MB_ISH
    
    store:
    	MOVB	R2, (R1)
    
    	CMP	$7, R8
    	BGE	native_barrier2
    	BL	memory_barrier<>(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

         */
        ToolchainPrivate[] getToolchainsForType(String type, MavenSession context) throws MisconfiguredToolchainException;
    
        /**
         * Stores the toolchain into build context for later use by toolchain-aware plugins.
         *
         * @param toolchain the toolchain to store, must not be {@code null}
         * @param context the Maven session, must not be {@code null}
         * @since 2.0.9
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top