Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,881 for using (0.02 sec)

  1. docs/en/docs/tutorial/first-steps.md

    ## Recap
    
    * Import `FastAPI`.
    * Create an `app` instance.
    * Write a **path operation decorator** using decorators like `@app.get("/")`.
    * Define a **path operation function**; for example, `def root(): ...`.
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-03 16:26
    - 10.5K bytes
    - Viewed (0)
  2. clause/joins.go

    		builder.WriteString("JOIN ")
    		builder.WriteQuoted(join.Table)
    
    		if len(join.ON.Exprs) > 0 {
    			builder.WriteString(" ON ")
    			join.ON.Build(builder)
    		} else if len(join.Using) > 0 {
    			builder.WriteString(" USING (")
    			for idx, c := range join.Using {
    				if idx > 0 {
    					builder.WriteByte(',')
    				}
    				builder.WriteQuoted(c)
    			}
    			builder.WriteByte(')')
    		}
    	}
    Registered: 2025-05-25 09:35
    - Last Modified: 2025-05-25 07:40
    - 1.5K bytes
    - Viewed (0)
  3. docs/select/README.md

    Traditional retrieval of objects is always as whole entities, i.e GetObject for a 5 GiB object, will always return 5 GiB of data. S3 Select API allows us to retrieve a subset of data by using simple SQL expressions. By using Select API to retrieve only the data needed by the application, drastic performance improvements can be achieved.
    
    You can use the Select API to query objects with following features:
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-09-29 04:28
    - 6.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return emptySet();
      }
    
      protected Collection<Method> suppressForConcurrentSkipListSetWithComparator() {
        return emptySet();
      }
    
      public Test testsForEmptySet() {
        return SetTestSuiteBuilder.using(
                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    return emptySet();
                  }
                })
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-19 21:24
    - 15K bytes
    - Viewed (0)
  5. cmd/testdata/xl-meta-merge.zip

    use the Browser to create buckets, upload objects, and browse the contents of the MinIO server. You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers, see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages. > NOTE: Standalone MinIO servers are best suited...
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-03-08 17:50
    - 30.2K bytes
    - Viewed (0)
  6. docs/extensions/s3zip/README.md

    ## Code Examples
    
    [Using minio-go library](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/minio-go/main.go)
    [Using AWS JS SDK v2](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/aws-js/main.js)
    [Using boto3](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/boto3/main.py)
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-04-10 16:28
    - 3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Joiner.java

       * separator between each, to {@code appendable}.
       */
      @CanIgnoreReturnValue
      public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException {
        return appendTo(appendable, parts.iterator());
      }
    
      /**
       * Appends the string representation of each of {@code parts}, using the previously configured
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 15:16
    - 21K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/JAASAuthenticator.java

        private Configuration configuration;
    
    
        /**
         * Create an authenticator using the JAAS service <tt>jcifs</tt>
         * 
         * This will require that a keytab is configured in this service.
         * 
         * 
         */
        public JAASAuthenticator () {
            this("jcifs");
        }
    
    
        /**
         * Create an authenticator using the given JAAS service
         * 
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 8.1K bytes
    - Viewed (0)
  9. README.md

    root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.
    
    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See
    [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers,
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-05-24 17:08
    - 18.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/get-current-user.md

    You can now get the current user directly in the *path operation functions* and deal with the security mechanisms at the **Dependency Injection** level, using `Depends`.
    
    And you can use any model or data for the security requirements (in this case, a Pydantic model `User`).
    
    But you are not restricted to using some specific data model, class or type.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 17:03
    - 3.8K bytes
    - Viewed (0)
Back to top