Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 473 for readArg (0.22 sec)

  1. internal/grid/msg_gen.go

    package grid
    
    // Code generated by github.com/tinylib/msgp DO NOT EDIT.
    
    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *Flags) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = Flags(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/settings.md

    ### Creating the `Settings` only once with `lru_cache`
    
    Reading a file from disk is normally a costly (slow) operation, so you probably want to do it only once and then reuse the same settings object, instead of reading it for each request.
    
    But every time we do:
    
    ```Python
    Settings()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/encoding/binary/binary.go

    // any other non-zero byte is decoded as true.
    // When reading into structs, the field data for fields with
    // blank (_) field names is skipped; i.e., blank field names
    // may be used for padding.
    // When reading into a struct, all non-blank fields must be exported
    // or Read may panic.
    //
    // The error is [io.EOF] only if no bytes were read.
    // If an [io.EOF] happens after reading some but not all the bytes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    *Example 1:* Setting system properties with a `gradle.properties` file:
    ====
    include::sample[dir="snippets/tutorial/systemProperties/groovy",files="gradle.properties[]"]
    ====
    
    *Example 2:* Reading system properties at configuration time:
    ====
    include::sample[dir="snippets/tutorial/systemProperties/kotlin",files="init.gradle.kts[];settings.gradle.kts[];build.gradle.kts[tags=system-properties]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/Files.java

        checkNotNull(file);
        checkNotNull(charset);
        return new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), charset));
      }
    
      /**
       * Returns a new {@link ByteSource} for reading bytes from the given file.
       *
       * @since 14.0
       */
      public static ByteSource asByteSource(File file) {
        return new FileByteSource(file);
      }
    
      private static final class FileByteSource extends
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/net/unixsock.go

    // This implements the [syscall.Conn] interface.
    func (c *UnixConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // CloseRead shuts down the reading side of the Unix domain connection.
    // Most callers should just use Close.
    func (c *UnixConn) CloseRead() error {
    	if !c.ok() {
    		return syscall.EINVAL
    	}
    	if err := c.fd.closeRead(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

            verifyToken(this::asUploadHtml);
            CommonPoolUtil.execute(() -> {
                try (Reader reader = new BufferedReader(new InputStreamReader(form.badWordFile.getInputStream(), getCsvEncoding()))) {
                    badWordService.importCsv(reader);
                    suggestHelper.storeAllBadWords(false);
                } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/crypto/rsa/pkcs1v15.go

    // ciphertext. Most applications should use [crypto/rand.Reader]
    // as random. Note that the returned ciphertext does not depend
    // deterministically on the bytes read from random, and may change
    // between calls and/or between versions.
    //
    // WARNING: use of this function to encrypt plaintexts other than
    // session keys is dangerous. Use RSA OAEP in new protocols.
    func EncryptPKCS1v15(random io.Reader, pub *PublicKey, msg []byte) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/doc/doc_test.go

    			`const ExportedTypedConstant ExportedType = iota`, // Must include associated constant.
    			`func ExportedTypeConstructor\(\) \*ExportedType`, // Must include constructor.
    			`io.Reader.*Comment on line with embedded Reader`,
    		},
    		[]string{
    			`unexportedField`,               // No unexported field.
    			`int.*embedded`,                 // No unexported embedded field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. src/crypto/cipher/gcm_test.go

    		key := make([]byte, ks)
    		if _, err := io.ReadFull(rand.Reader, key); err != nil {
    			return err
    		}
    		asm, generic, err := newAESGCM(key)
    		if err != nil {
    			return err
    		}
    		if _, err := io.ReadFull(rand.Reader, pt); err != nil {
    			return err
    		}
    		if _, err := io.ReadFull(rand.Reader, ad); err != nil {
    			return err
    		}
    		nonce := make([]byte, 12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top