Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 469 for tzfile (0.13 sec)

  1. src/time/zoneinfo_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix && !ios && !android
    
    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"syscall"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 04 02:26:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/cafile/cafile.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cafile
    
    import (
    	"istio.io/istio/pkg/security"
    )
    
    // CACertFilePath stores the OS CA certificate file path
    var CACertFilePath = ""
    
    func init() {
    	CACertFilePath = security.GetOSRootFilePath()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 10 21:51:09 UTC 2021
    - 790 bytes
    - Viewed (0)
  3. pkg/test/util/yml/file.go

    			return make([]string, 0), nil
    		}
    	}
    
    	filesToApply := make([]string, 0, len(docs))
    	for _, doc := range docs {
    		tfile, err := doc.toTempFile(workDir, filenamePrefix)
    		if err != nil {
    			return nil, err
    		}
    		filesToApply = append(filesToApply, tfile)
    	}
    	return filesToApply, nil
    }
    
    type yamlDoc struct {
    	content string
    	docType docType
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 07 14:33:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

     */
    
    package org.gradle.api.file
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class FileResolutionIntegrationTest extends AbstractIntegrationSpec {
        def "file conversion works with java.nio.file.Path"() {
            buildFile """
    java.nio.file.Path fAsPath = buildDir.toPath().resolve('testdir').toAbsolutePath()
    def f = file(fAsPath)
    assert f == fAsPath.toFile()
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvoker.groovy

            def sarifOutputLocation = parameters.sarifOutputLocation.asFile.getOrElse(null)
            VersionNumber currentToolVersion = determineCheckstyleVersion(Thread.currentThread().getContextClassLoader())
            def sarifSupported = isSarifSupported(currentToolVersion)
    
            if (isHtmlReportEnabledOnly(isXmlRequired, isHtmlRequired)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

            val tempDirectory = java.nio.file.Files.createTempDirectory(jarFile.name).toFile()
            val classesDir = tempDirectory.resolve("classes")
            val manifestFile = tempDirectory.resolve("MANIFEST.MF")
            val buildReceiptFile = tempDirectory.resolve("build-receipt.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/FileOrUriNotationConverterTest.groovy

            when:
            def object = parse(testPath)
            then:
            object instanceof File
            testPath.toFile() == object
        }
    
        def "with RegularFile returns the File it represents"() {
            setup:
            def testFile = folder.createFile("test1")
            def notation = Stub(RegularFile)
            notation.asFile >> testFile
            when:
            def object = parse(notation)
            then:
            object == testFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 16:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/annotations/annotationsOnFiles/onFile.kt

    Ilya Kirillov <******@****.***> 1637343566 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:47:00 UTC 2021
    - 27 bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                }
    
                reports.each { report ->
                    File file = report.outputLocation.asFile.get()
                    assert file.parentFile.exists()
                    String type = report.name.get() == "html" ? htmlFormat : report.name.get()
                    formatter(type: type, toFile: file)
                }
    
                if (parameters.consoleOutput.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/annotations/annotationsOnFiles/onFile.txt

    Ilya Kirillov <******@****.***> 1637343566 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:47:00 UTC 2021
    - 85 bytes
    - Viewed (0)
Back to top