Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for banquet (0.24 sec)

  1. guava-tests/test/com/google/common/collect/OrderingTest.java

            comparator,
            ImmutableList.of(
                "applesauce",
                "apricot",
                "artichoke",
                "banality",
                "banana",
                "banquet",
                "tangelo",
                "tangerine"));
        reserializeAndAssert(comparator);
      }
    
      public void testCompound_instance() {
        Comparator<String> comparator = byCharAt(1).compound(byCharAt(0));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

            comparator,
            ImmutableList.of(
                "applesauce",
                "apricot",
                "artichoke",
                "banality",
                "banana",
                "banquet",
                "tangelo",
                "tangerine"));
        reserializeAndAssert(comparator);
      }
    
      public void testCompound_instance() {
        Comparator<String> comparator = byCharAt(1).compound(byCharAt(0));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. internal/s3select/testdata/testdata.parquet

    Harshavardhana <******@****.***> 1622584780 -0700
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 1.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

        When the pie was all finished, the Owl, as a boon,
        Was kindly permitted to pocket the spoon:
        While the Panther received knife and fork with a growl,
        And concluded the banquet--]
    
      `What IS the use of repeating all that stuff,' the Mock Turtle
    interrupted, `if you don't explain it as you go on?  It's by far
    the most confusing thing I ever heard!'
    
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

        When the pie was all finished, the Owl, as a boon,
        Was kindly permitted to pocket the spoon:
        While the Panther received knife and fork with a growl,
        And concluded the banquet--]
    
      `What IS the use of repeating all that stuff,' the Mock Turtle
    interrupted, `if you don't explain it as you go on?  It's by far
    the most confusing thing I ever heard!'
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  6. internal/s3select/parquet/reader.go

    package parquet
    
    import (
    	"errors"
    	"io"
    	"time"
    
    	"github.com/bcicen/jstream"
    	parquetgo "github.com/fraugster/parquet-go"
    	parquettypes "github.com/fraugster/parquet-go/parquet"
    	jsonfmt "github.com/minio/minio/internal/s3select/json"
    	"github.com/minio/minio/internal/s3select/sql"
    )
    
    // Reader implements reading records from parquet input.
    type Reader struct {
    	io.Closer
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 14 13:54:47 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  7. docs/select/README.md

    (*) Parquet is disabled on the MinIO server by default. See below how to enable it.
    
    ## Enabling Parquet Format
    
    Parquet is DISABLED by default since hostile crafted input can easily crash the server.
    
    If you are in a controlled environment where it is safe to assume no hostile content can be uploaded to your cluster you can safely enable Parquet.
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6.5K bytes
    - Viewed (0)
  8. internal/s3select/testdata/lineitem_shipdate.parquet

    Harshavardhana <******@****.***> 1622584780 -0700
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 213 bytes
    - Viewed (0)
  9. internal/s3select/errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidDataSource(err error) *s3Error {
    	return &s3Error{
    		code:       "InvalidDataSource",
    		message:    "Invalid data source type. Only CSV, JSON, and Parquet are supported.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidRequestParameter(err error) *s3Error {
    	return &s3Error{
    		code:       "InvalidRequestParameter",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 14 16:48:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  10. internal/s3select/select.go

    		return nil
    	case parquetFormat:
    		if !parquetSupport {
    			return errors.New("parquet format parsing not enabled on server")
    		}
    		if offset != 0 || length != -1 {
    			// Offsets do not make sense in parquet files.
    			return errors.New("parquet format does not support offsets")
    		}
    		var err error
    		s3Select.recordReader, err = parquet.NewParquetReader(rsc, &s3Select.Input.ParquetArgs)
    		return err
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 21K bytes
    - Viewed (0)
Back to top