Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 557 for nofile (0.15 sec)

  1. tests/fuzz/analyzer_fuzzer.go

    // createRandomConfigFile creates a single fuzzed config file
    func createRandomConfigFile(f *fuzz.ConsumeFuzzer) (string, error) {
    	data, err := f.GetBytes()
    	if err != nil {
    		return "nobytes", err
    	}
    	tmpfile, err := os.CreateTemp("", "example")
    	if err != nil {
    		return "nofile", err
    	}
    	if _, err := tmpfile.Write(data); err != nil {
    		return "nofile", err
    	}
    	if err := tmpfile.Close(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    # license that can be found in the LICENSE file.
    
    # Generate Go code listing errors and other #defined constant
    # values (ENAMETOOLONG etc.), by asking the preprocessor
    # about the definitions.
    
    unset LANG
    export LC_ALL=C
    export LC_CTYPE=C
    
    CC=${CC:-gcc}
    
    uname=$(uname)
    
    includes='
    #include <sys/types.h>
    #include <sys/file.h>
    #include <fcntl.h>
    #include <dirent.h>
    #include <sys/socket.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. src/go/internal/gccgoimporter/importer_test.go

    			continue
    		}
    
    		gofile := filepath.Join("testdata", test.pkgpath+".go")
    		if _, err := os.Stat(gofile); os.IsNotExist(err) {
    			continue
    		}
    		ofile := filepath.Join(tmpdir, test.pkgpath+".o")
    		afile := filepath.Join(artmpdir, "lib"+test.pkgpath+".a")
    
    		cmd := testenv.Command(t, gpath, "-fgo-pkgpath="+test.pkgpath, "-c", "-o", ofile, gofile)
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. NOTICE

    Hervé Boutemy <******@****.***> 1573942717 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 16 22:18:37 UTC 2019
    - 166 bytes
    - Viewed (0)
  9. NOTICE

    Harshavardhana <******@****.***> 1676745230 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 18 18:33:50 UTC 2023
    - 367 bytes
    - Viewed (0)
  10. 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)
Back to top