Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,563 for readImg (0.35 sec)

  1. ReadMe.md

    **OPTIONAL:** Some artifacts, mainly Maven plugin ones, are built separately with Maven.
    Refer to [libraries/ReadMe.md](libraries/ReadMe.md) for details.
    
    To build Kotlin/Native, see
    [kotlin-native/README.md](kotlin-native/README.md#building-from-source).
    
    ## <a name="working-in-idea"></a> Working with the project in IntelliJ IDEA
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/android-application/README.adoc

    include::sample[dir="groovy",files="app/build.gradle[]"]
    ====
    
    To build the application:
    
    [listing.terminal]
    ----
    $ ./gradlew build
    ----
    
    For more information, we suggest reading link:{userManualPath}/getting_started.html[Getting Started with Gradle].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 846 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    BUILD SUCCESSFUL
    3 actionable tasks: 3 executed
    ----
    
    For more information, we suggest reading link:{userManualPath}/getting_started.html[Getting Started with Gradle].
    You can also find https://spring.io/guides[Spring Boot related information inside the guides provided by the Spring team].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. ci/official/wheel_test/README.md

    tool using the path to this wheel file.
    
    ### Hermetic Python
    
    For details about hermetic Python and setting its toolchain version, see
    [requirements updater readme](https://github.com/tensorflow/tensorflow/blob/master/ci/official/requirements_updater/README.md)
    
    ### Prerequisites for Local Testing
    
    To run tests locally, follow these steps:
    
    1.  Navigate to the relevant directory:
        ```
        cd ci/official/wheel_test
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. samples/helloworld/README.md

    Apply the helloworld gateway configuration:
    
    ```bash
    kubectl apply -f helloworld-gateway.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. samples/security/spire/README.md

    on the SPIFFE specs, refer to the [SPIFFE Overview](https://spiffe.io/docs/latest/spiffe-about/overview/).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. docs/orchestration/kubernetes/README.md

    - MinIO-Operator: Operator offers seamless way to create and update highly available distributed MinIO clusters. Refer [MinIO Operator documentation](https://github.com/minio/minio-operator/blob/master/README.md) for more details.
    
    - Helm Chart: MinIO Helm Chart offers customizable and easy MinIO deployment with a single command. Refer [MinIO Helm Chart documentation](https://github.com/minio/minio/tree/master/helm/minio) for more details.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. README.md

    Take a free course on [Scalable Microservices with Kubernetes].
    
    To use Kubernetes code as a library in other applications, see the [list of published components](https://git.k8s.io/kubernetes/staging/README.md).
    Use of the `k8s.io/kubernetes` module or `k8s.io/kubernetes/...` packages as libraries is not supported.
    
    ## To start developing K8s
    
    The [community repository] hosts all information about
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    * `reporters/standard-plugin` shows the usage of the Problems API in a standard Gradle plugin.
    * `reporters/model-builder-plugin` shows how to use the Problems API to report problems when reading project configuration via the Tooling API.
    * `reporters/script-plugin` shows how to use the Problems API in a precompiled script plugin.
    
    
    ## Emitting a problem
    
    Problems can be emitted via an injected `Problems` service.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. internal/ringbuffer/README.md

    
    # Blocking vs Non-blocking
    
    The default behavior of the ring buffer is non-blocking, 
    meaning that reads and writes will return immediately with an error if the operation cannot be completed.
    If you want to block when reading or writing, you must enable it:
    
    ```go
    	rb := ringbuffer.New(1024).SetBlocking(true)
    ```
    
    Enabling blocking will cause the ring buffer to behave like a buffered [io.Pipe](https://pkg.go.dev/io#Pipe).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top