Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,913 for and (0.01 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        val ciGroup = "CI Lifecycle"
    
        register("quickTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in embedded execution mode"
            group = ciGroup
        }
    
        register("platformTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in forking execution mode"
            group = ciGroup
        }
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-19 18:16
    - 22.9K bytes
    - Viewed (0)
  2. docs/uk/docs/tutorial/request-forms-and-files.md

    Valentyn <******@****.***> 1740060824 -0500
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-20 14:13
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/loong64enc2.s

    	AND	$0x43210000, R4			// AND	$1126236160, R4			// 1e42861484f81400
    	AND	$0x43210000, R5, R4		// AND	$1126236160, R5, R4		// 1e428614a4f81400
    	AND	$0xffffffffc3210000, R4		// AND	$-1021247488, R4		// 1e42861584f81400
    	AND	$0xffffffffc3210000, R5, R4	// AND	$-1021247488, R5, R4		// 1e428615a4f81400
    
    	// AND C_ADDCON, [r1], r2
    	AND	$0xfffffffffffffc21, R4		// AND	$-991, R4			// 1e84b00284f81400
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-03-01 01:10
    - 5.6K bytes
    - Viewed (0)
  4. licenses/github.com/spiffe/go-spiffe/v2/LICENSE

                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-08 17:35
    - 11.1K bytes
    - Viewed (0)
  5. cni/README.md

    The code automatically detects the proxyUID and proxyGID from RunAsUser/RunAsGroup and exclude them from interception, defaulting to 1337
    
    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
        - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery.
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-01-29 17:35
    - 11K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/custom-docs-ui-assets.md

    # Custom Docs UI Static Assets (Self-Hosting)
    
    The API docs use **Swagger UI** and **ReDoc**, and each of those need some JavaScript and CSS files.
    
    By default, those files are served from a <abbr title="Content Delivery Network: A service, normally composed of several servers, that provides static files, like JavaScript and CSS. It's commonly used to serve those files from the server closer to the client, improving performance.">CDN</abbr>.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-04-28 18:31
    - 7.2K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

        val tagAndClass = source.readByte().toInt() and 0xff
        val tagClass = tagAndClass and 0b1100_0000
        val constructed = (tagAndClass and 0b0010_0000) == 0b0010_0000
        val tag =
          when (val tag0 = tagAndClass and 0b0001_1111) {
            0b0001_1111 -> readVariableLengthLong()
            else -> tag0.toLong()
          }
    
        // Read the length.
        val length0 = source.readByte().toInt() and 0xff
        val length =
          when {
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 10.5K bytes
    - Viewed (0)
  8. docs/bucket/replication/DESIGN.md

    Replication relies on immutability provided by versioning to sync objects between the configured source and replication target. Replication results in the object data, metadata, last modification time and version ID all being identical between the source and target. Thus version ordering is automatically guaranteed on the source and target clusters.
    
    ### Replication of object version and metadata
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-26 09:25
    - 14.7K bytes
    - Viewed (0)
  9. README.md

    * How to set **validation constraints** as `maximum_length` or `regex`.
    * A very powerful and easy to use **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system.
    * Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth.
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-22 09:45
    - 23.4K bytes
    - Viewed (0)
  10. README.md

    first connect fails. This is necessary for IPv4+IPv6 and services hosted in redundant data
    centers. OkHttp supports modern TLS features (TLS 1.3, ALPN, certificate pinning). It can be
    configured to fall back for broad connectivity.
    
    Using OkHttp is easy. Its request/response API is designed with fluent builders and immutability. It
    supports both synchronous blocking calls and async calls with callbacks.
    
    A well behaved user agent
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-29 12:27
    - 7.7K bytes
    - Viewed (0)
Back to top