Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 963 for usrc (0.06 sec)

  1. tests/scanner_valuer_test.go

    	return append([]byte("***"), data...), nil
    }
    
    type Num int64
    
    func (i *Num) Scan(src interface{}) error {
    	switch s := src.(type) {
    	case []byte:
    		n, _ := strconv.Atoi(string(s))
    		*i = Num(n)
    	case int64:
    		*i = Num(s)
    	default:
    		return errors.New("Cannot scan NamedInt from " + reflect.ValueOf(src).String())
    	}
    	return nil
    }
    
    type StringsSlice []string
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        /**
         * 
         * @param src
         * @param srcIndex
         * @return read string
         */
        public String readString ( byte[] src, int srcIndex ) {
            return readString(src, srcIndex, 255, this.useUnicode);
        }
    
    
        /**
         * 
         * @param src
         * @param srcIndex
         * @param maxLen
         * @param unicode
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  3. internal/dsync/locked_rand.go

    )
    
    // lockedRandSource provides protected rand source, implements rand.Source interface.
    type lockedRandSource struct {
    	lk  sync.Mutex
    	src rand.Source
    }
    
    // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *lockedRandSource) Int63() (n int64) {
    	r.lk.Lock()
    	n = r.src.Int63()
    	r.lk.Unlock()
    	return
    }
    
    // Seed uses the provided seed value to initialize the generator to a
    // deterministic state.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 18 15:39:59 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-cli/pom.xml

          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <configuration>
              <version>1.2.0</version>
              <models>
                <model>src/main/mdo/core-extensions.mdo</model>
              </models>
              <templates>
                <template>model.vm</template>
              </templates>
              <params>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Oct 19 18:11:20 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## ๐Ÿ˜ข *โžก ๐Ÿ› ๏ธ*
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’ช โ„ข *โžก ๐Ÿ› ๏ธ* <abbr title="obsolete, recommended not to use it">๐Ÿ˜ข</abbr>, โœ‹๏ธ ๐Ÿต โŽ โšซ๏ธ, ๐Ÿšถโ€โ™€๏ธ ๐Ÿ”ข `deprecated`:
    
    ```Python hl_lines="16"
    {!../../docs_src/path_operation_configuration/tutorial006.py!}
    ```
    
    โšซ๏ธ ๐Ÿ”œ ๐ŸŽฏ โ„ข ๐Ÿ˜ข ๐ŸŽ“ ๐Ÿฉบ:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

            return writeQuestionSectionWireFormat( dst, dstIndex );
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat( src, srcIndex );
        }
        int writeRDataWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readRDataWireFormat( byte[] src, int srcIndex ) {
            return 0;
        }
        public String toString() {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            }
    
            projectDir.resolve("failed-test-with-leftover/src/test/java/FlakyTest.java").writeFlakyTest(true)
            projectDir.resolve("flaky-test-with-leftover/src/test/java/FlakyTest.java").writeFlakyTest(true)
            projectDir.resolve("flaky-test-without-leftover/src/test/java/FlakyTest.java").writeFlakyTest(true)
            projectDir.resolve("successful-test-with-leftover/src/test/java/FlakyTest.java").writeFlakyTest(false)
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/debugging.md

    * Executar o depurador com a opรงรฃo "`Python: Current File (Integrated Terminal)`".
    
    Em seguida, ele iniciarรก o servidor com seu cรณdigo **FastAPI**, pararรก em seus pontos de interrupรงรฃo, etc.
    
    Veja como pode parecer:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Se vocรช usar o Pycharm, vocรช pode:
    
    * Abrir o menu "Executar".
    * Selecionar a opรงรฃo "Depurar...".
    * Entรฃo um menu de contexto aparece.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. .gitmodules

    [submodule "okhttp-hpacktests/src/test/resources/hpack-test-case"]
    	path = okhttp-hpacktests/src/test/resources/hpack-test-case
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Dec 10 09:33:37 UTC 2022
    - 182 bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/body.md

    <img src="/img/tutorial/body/image01.png">
    
    ์ด๋ฅผ ํ•„์š”๋กœ ํ•˜๋Š” ๊ฐ๊ฐ์˜ *๊ฒฝ๋กœ ์ž‘๋™*๋‚ด๋ถ€์˜ API ๋ฌธ์„œ์—๋„ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค:
    
    <img src="/img/tutorial/body/image02.png">
    
    ## ํŽธ์ง‘๊ธฐ ์ง€์›
    
    ํŽธ์ง‘๊ธฐ์—์„œ, ํ•จ์ˆ˜ ๋‚ด์—์„œ ํƒ€์ž… ํžŒํŠธ์™€ ์™„์„ฑ์„ ์–ด๋””์„œ๋‚˜ (๋งŒ์•ฝ Pydantic model ๋Œ€์‹ ์— `dict`์„ ๋ฐ›์„ ๊ฒฝ์šฐ ๋‚˜ํƒ€๋‚˜์ง€ ์•Š์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค) ๋ฐ›์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    <img src="/img/tutorial/body/image03.png">
    
    ์ž˜๋ชป๋œ ํƒ€์ž… ์—ฐ์‚ฐ์— ๋Œ€ํ•œ ์—๋Ÿฌ ํ™•์ธ๋„ ๋ฐ›์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    <img src="/img/tutorial/body/image04.png">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top