Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for guinea (0.04 sec)

  1. src/archive/zip/writer_test.go

    type WriteTest struct {
    	Name   string
    	Data   []byte
    	Method uint16
    	Mode   fs.FileMode
    }
    
    var writeTests = []WriteTest{
    	{
    		Name:   "foo",
    		Data:   []byte("Rabbits, guinea pigs, gophers, marsupial rats, and quolls."),
    		Method: Store,
    		Mode:   0666,
    	},
    	{
    		Name:   "bar",
    		Data:   nil, // large data set in the test
    		Method: Deflate,
    		Mode:   0644,
    	},
    	{
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-01-28 04:20
    - 14.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/eventbus/EventBus.java

     * href="https://github.com/google/guice/wiki/Motivation">Guice</a> and <a
     * href="https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-introduction">Spring</a>.
     * Frameworks typically offer a way to register multiple listeners independently and then request
     * them together as a set (<a href="https://dagger.dev/dev-guide/multibindings">Dagger</a>, <a
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 12.7K bytes
    - Viewed (0)
  3. docs/es/docs/deployment/docker.md

        `CMD` toma una lista de cadenas, cada una de estas cadenas es lo que escribirías en la línea de comandos separado por espacios.
    
        Este comando se ejecutará desde el **directorio de trabajo actual**, el mismo directorio `/code` que estableciste antes con `WORKDIR /code`.
    
    /// tip | Consejo
    
    Revisa qué hace cada línea haciendo clic en cada número en la burbuja del código. 👆
    
    ///
    
    /// warning | Advertencia
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 31K bytes
    - Viewed (0)
  4. docs/es/docs/index.md

    ![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    Para un ejemplo más completo incluyendo más funcionalidades, ve al <a href="https://fastapi.tiangolo.com/tutorial/">Tutorial - Guía del Usuario</a>.
    
    **Alerta de spoilers**: el tutorial - guía del usuario incluye:
    
    * Declaración de **parámetros** desde otros lugares diferentes como: **headers**, **cookies**, **campos de formulario** y **archivos**.
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-20 20:53
    - 21.5K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val dockerJavaApi = "com.github.docker-java:docker-java-api"
        val equalsverifier = "nl.jqno.equalsverifier:equalsverifier"
        val hikariCP = "com.zaxxer:HikariCP"
        val guice = "com.google.inject:guice"
        val httpmime = "org.apache.httpcomponents:httpmime"
        val jacksonKotlin = "com.fasterxml.jackson.module:jackson-module-kotlin"
        val javaParser = "com.github.javaparser:javaparser-core"
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-21 06:20
    - 15.7K bytes
    - Viewed (0)
  6. docs/recipes.md

     [AccessHeadersJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java
     [AccessHeadersKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt
     [PostStringJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PostString.java
    Registered: 2025-05-30 11:42
    - Last Modified: 2022-02-18 08:52
    - 40.2K bytes
    - Viewed (0)
  7. docs/features/https.md

          }
        ```
    
     [CustomTrustJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/CustomTrust.java
     [CustomTrustKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt
     [CertificatePinningJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/CertificatePinning.java
    Registered: 2025-05-30 11:42
    - Last Modified: 2022-12-24 00:16
    - 10.5K bytes
    - Viewed (0)
  8. docs/bucket/versioning/README.md

    ## Explore Further
    
    - [Use `minio-java` SDK with MinIO Server](https://min.io/docs/minio/linux/developers/java/minio-java.html)
    - [Object Lock and Immutability Guide](https://min.io/docs/minio/linux/administration/object-management/object-retention.html)
    - [MinIO Admin Complete Guide](https://min.io/docs/minio/linux/reference/minio-mc-admin.html)
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-26 09:25
    - 11.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/ClassPath.java

        }
      }
    
      /**
       * Returns the class path URIs specified by the {@code Class-Path} manifest attribute, according
       * to <a
       * href="http://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html#Main_Attributes">JAR
       * File Specification</a>. If {@code manifest} is null, it means the jar file has no manifest, and
       * an empty set will be returned.
       */
      @VisibleForTesting
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 24.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Comparators.java

       *
       * <p>The recommended solution for finding the {@code minimum} of some values depends on the type
       * of your data and the number of elements you have. Read more in the Guava User Guide article on
       * <a href="https://github.com/google/guava/wiki/CollectionUtilitiesExplained#comparators">{@code
       * Comparators}</a>.
       *
       * @param a first value to compare, returned if less than or equal to b.
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 10.9K bytes
    - Viewed (0)
Back to top