Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for uris (0.09 sec)

  1. tests/integration/ambient/baseline_test.go

    metadata:
      name: route
    spec:
      gateways:
      - gateway
      hosts:
      - "*"
      http:
      - match:
        - uri:
            exact: /allowed
        route:
        - destination:
            host: "{{.Destination}}"
            port:
              number: {{.PortAllow}}
      - match:
        - uri:
            exact: /deny
        route:
        - destination:
            host: "{{.Destination}}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.file(path)`
    | A task input or output property or a script variable to capture the result of using `project.file(file)` to calculate the actual parameter.
    
    | `project.uri(path)`
    | A task input or output property or a script variable to capture the result of using `project.uri(path)` to calculate the actual parameter. Otherwise, `File.toURI()` or some other JVM API can be used.
    
    | `project.relativePath(path)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```
    KEY:
    notify_mqtt[:name]  publish bucket notifications to MQTT endpoints
    
    ARGS:
    broker*              (uri)       MQTT server endpoint e.g. `tcp://localhost:1883`
    topic*               (string)    name of the MQTT topic to publish
    username             (string)    MQTT username
    password             (string)    MQTT password
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    			var o1 uint32
    			if target.IsBigEndian() {
    				o1 = binary.BigEndian.Uint32(p[r.Off()-2:])
    			} else {
    				o1 = binary.LittleEndian.Uint32(p[r.Off():])
    			}
    			switch o1 >> 26 {
    			case 25, // oris
    				27, // xoris
    				29: // andis
    				if t>>16 != 0 {
    					goto overflow
    				}
    
    			default:
    				if int64(int16(t)) != t {
    					goto overflow
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. okhttp/api/okhttp.api

    	public final fun scheme ()Ljava/lang/String;
    	public fun toString ()Ljava/lang/String;
    	public final fun topPrivateDomain ()Ljava/lang/String;
    	public final fun uri ()Ljava/net/URI;
    	public final fun url ()Ljava/net/URL;
    	public final fun username ()Ljava/lang/String;
    }
    
    public final class okhttp3/HttpUrl$Builder {
    	public fun <init> ()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        // The expressions help a lot, but we need a clean to pick up a directory of POMs, automatically load
        // them into a resolver, create the expression to extract the data to validate the Model, and the URI
        // to validate the properties. We also need a way to navigate from the Tex specification documents to
        // the test in question and vice versa. A little Eclipse plugin would do the trick.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Not only does `from()` accept multiple arguments, it also allows several different types of argument.
    For example, some of the most common types are:
    
    * A `String` — treated as a file path or, if it starts with "file://", a file URI
    * A `File` — used as a file path
    * A `FileCollection` or `FileTree` — all files in the collection are included in the copy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top