Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,588 for Storep (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/RemappingScriptSource.java

     * limitations under the License.
     */
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.DelegatingScriptSource;
    import org.gradle.groovy.scripts.ScriptSource;
    
    /**
     * When stored into the persistent store, we want the script to be created with a predictable class name: we don't want the path of the script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

        }
    
        def "stored artifact is put into persistentIndexedCache"() {
            given:
            1 * cacheAccessCoordinator.createCache(persistentCacheFile, _, _) >> persistentIndexedCache
            def key = new ArtifactAtRepositoryKey("RepoID", Stub(ModuleComponentArtifactIdentifier))
            def testFile = folder.createFile("aTestFile")
    
            when:
            index.store(key, testFile, TestHashCodes.hashCodeFrom(10))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractListMultimap.java

        return (List<V>) super.replaceValues(key, values);
      }
    
      /**
       * Stores a key-value pair in the multimap.
       *
       * @param key key to store in the multimap
       * @param value value to store in the multimap
       * @return {@code true} always
       */
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. src/runtime/memmove_arm64.s

    	STP	(R8, R9), 32(R3)     // Store   C
    	LDP	-32(R4), (R8, R9)    // Load         H
    	STP	(R10, R11), 48(R3)   // Store    D
    	LDP	-16(R4), (R10, R11)  // Load          I
    	STP	(R12, R13), 64(R3)   // Store     E
    	STP	(R14, R15), -64(R5)  // Store      F
    	STP	(R6, R7), -48(R5)    // Store       G
    	STP	(R8, R9), -32(R5)    // Store        H
    	STP	(R10, R11), -16(R5)  // Store         I
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. internal/event/target/mysql.go

    // Name - returns the Name of the target.
    func (target *MySQLTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *MySQLTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *MySQLTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

        /**
         * Stores information to the virtual file system that we have learned about.
         *
         * Complete information, like {@link FileSystemLocationSnapshot}s, are not touched nor replaced.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Stores using index and base registers
    		// Stores to arg[0] + arg[1]
    		{name: "MOVBstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVB", typ: "Mem"},     // store bye
    		{name: "MOVHstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVH", typ: "Mem"},     // store half word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/TwoStageExternalResourceFileStoreTest.groovy

            1 * writeStore.add(key, action)
            0 * readStore.add(key, action)
        }
    
        def "searches in both read and write stores"() {
            setup:
            def r1 = Stub(LocallyAvailableResource)
            def r2 = Stub(LocallyAvailableResource)
            def r3 = Stub(LocallyAvailableResource)
            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
    - 2.5K bytes
    - Viewed (0)
  10. docs/pl/docs/tutorial/first-steps.md

    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Zmienna `app` będzie tutaj "instancją" klasy `FastAPI`.
    
    Będzie to główny punkt interakcji przy tworzeniu całego interfejsu API.
    
    Ta zmienna `app` jest tą samą zmienną, do której odnosi się `uvicorn` w poleceniu:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top