- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,376 for Format (0.07 sec)
-
internal/s3select/select.go
if !parsedInput.CSVArgs.IsEmpty() { parsedInput.format = csvFormat found++ } if !parsedInput.JSONArgs.IsEmpty() { parsedInput.format = jsonFormat found++ } if !parsedInput.ParquetArgs.IsEmpty() { if parsedInput.CompressionType != "" && parsedInput.CompressionType != noneType { return errInvalidRequestParameter(fmt.Errorf("CompressionType must be NONE for Parquet format")) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 21.2K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml
<module name="MemberName"> <property name="format" value="^[a-z_][a-zA-Z0-9_]*$"/> </module> <module name="MethodName"> <property name="format" value="^[a-z_][a-zA-Z0-9_]*$"/> </module> <module name="PackageName"> <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/> </module> <module name="ParameterName"/>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 16 22:05:16 UTC 2022 - 6.3K bytes - Viewed (0) -
src/archive/tar/tar_test.go
formats: FormatUSTAR | FormatPAX, }, { header: &Header{Size: 077777777777, Format: FormatGNU}, formats: FormatGNU, }, { header: &Header{Size: 077777777777 + 1}, paxHdrs: map[string]string{paxSize: "8589934592"}, formats: FormatPAX | FormatGNU, }, { header: &Header{Size: 077777777777 + 1, Format: FormatPAX}, paxHdrs: map[string]string{paxSize: "8589934592"}, formats: FormatPAX, }, {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 23.9K bytes - Viewed (0) -
internal/bucket/replication/error.go
// parsing. type Error struct { err error } // Errorf - formats according to a format specifier and returns // the string as a value that satisfies error of type tagging.Error func Errorf(format string, a ...interface{}) error { return Error{err: fmt.Errorf(format, a...)} } // Unwrap the internal error. func (e Error) Unwrap() error { return e.err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.3K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy
prop.additionalValues.size() == 3 format(prop.additionalValues[0].title) == 'inherited' format(prop.additionalValues[0].value) == 'specific1' format(prop.additionalValues[1].title) == 'overridden' format(prop.additionalValues[1].value) == 'specific3' format(prop.additionalValues[2].title) == 'added' format(prop.additionalValues[2].value) == 'specific2'
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 7.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java
String destDir = ""; if (args.length > 3) { destDir = args[3]; } System.out.format("=> stylesheet %s%n", stylesheet); System.out.format("=> source %s%n", source); System.out.format("=> dest %s%n", dest); System.out.format("=> destDir %s%n", destDir); TransformerFactory factory = TransformerFactory.newInstance();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 05 19:36:14 UTC 2023 - 2.2K bytes - Viewed (0) -
docs/debugging/reorder-disks/main.go
return result, nil } func getFormatJSON(path string) (format, error) { formatJSON, err := os.ReadFile(filepath.Join(path, ".minio.sys/format.json")) if err != nil { return format{}, err } var f format err = json.Unmarshal(formatJSON, &f) if err != nil { return format{}, err } return f, nil } func getDiskLocation(f format) (string, error) { for i, set := range f.XL.Sets {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/LinkRendererTest.groovy
then: format(link) == '<apilink class="org.gradle.SomeClass"/>' _ * model.isKnownType('org.gradle.SomeClass') >> true } def rendersLinkToApiClassArray() { when: def link = renderer.link(type('org.gradle.SomeClass', true), listener) then: format(link) == '<classname><apilink class="org.gradle.SomeClass"/>[]</classname>'
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0) -
src/main/assemblies/targz-bin.xml
<?xml version="1.0"?> <assembly> <id>targz</id> <formats> <format>tar.gz</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <componentDescriptors> <componentDescriptor>src/main/assemblies/common-bin.xml </componentDescriptor> </componentDescriptors>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Dec 13 08:20:29 UTC 2015 - 296 bytes - Viewed (0) -
apache-maven/src/assembly/src.xml
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> <id>src</id> <formats> <format>zip</format> <format>tar.gz</format> </formats> <fileSets> <fileSet> <directory>${project.basedir}/..</directory> <outputDirectory>/</outputDirectory> <excludes>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Apr 27 13:14:24 UTC 2022 - 2.2K bytes - Viewed (0)