Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 235 for newsize (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mremapNetBSD(oldp uintptr, oldsize uintptr, newp uintptr, newsize uintptr, flags int) (xaddr uintptr, err error) {
    	r0, _, e1 := Syscall6(SYS_MREMAP, uintptr(oldp), uintptr(oldsize), uintptr(newp), uintptr(newsize), uintptr(flags), 0)
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mremapNetBSD(oldp uintptr, oldsize uintptr, newp uintptr, newsize uintptr, flags int) (xaddr uintptr, err error) {
    	r0, _, e1 := Syscall6(SYS_MREMAP, uintptr(oldp), uintptr(oldsize), uintptr(newp), uintptr(newsize), uintptr(flags), 0)
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mremapNetBSD(oldp uintptr, oldsize uintptr, newp uintptr, newsize uintptr, flags int) (xaddr uintptr, err error) {
    	r0, _, e1 := Syscall6(SYS_MREMAP, uintptr(oldp), uintptr(oldsize), uintptr(newp), uintptr(newsize), uintptr(flags), 0)
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  4. src/os/signal/signal_cgo_test.go

    	// we must ignore SIGTTOU. We are also an orphaned process
    	// group (see above), so we must mask SIGTTOU to be eligible to
    	// become foreground at all.
    	signal.Ignore(syscall.SIGTTOU)
    
    	pty := os.NewFile(ptyFD, "pty")
    	controlW := os.NewFile(controlFD, "control-pipe")
    
    	var (
    		ctx     = context.Background()
    		cmdArgs = []string{"-test.run=^TestTerminalSignal$"}
    	)
    	if deadline, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    		p.print(n.Tok, blank, _Lparen)
    		if len(n.Decls) > 0 {
    			p.print(newline, indent)
    			for _, d := range n.Decls {
    				p.printNode(d)
    				p.print(_Semi, newline)
    			}
    			p.print(outdent)
    		}
    		p.print(_Rparen)
    
    	// files
    	case *File:
    		p.print(_Package, blank, n.PkgName)
    		if len(n.DeclList) > 0 {
    			p.print(_Semi, newline, newline)
    			p.printDeclList(n.DeclList)
    		}
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/fmt/scan_test.go

    		{"space vs newline 1000", "1 \n2", "%d\n%d", 2, true},
    		{"space vs newline 1001", "1 \n2", "%d\n %d", 2, true},
    		{"space vs newline 1010", "1 \n2", "%d \n%d", 2, true},
    		{"space vs newline 1011", "1 \n2", "%d \n %d", 2, true},
    		{"space vs newline 1100", "1 \n 2", "%d\n%d", 2, true},
    		{"space vs newline 1101", "1 \n 2", "%d\n %d", 2, true},
    		{"space vs newline 1110", "1 \n 2", "%d \n%d", 2, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/ConsoleConfigurationReportRenderer.java

                writeDescription("The following Attributes have compatibility rules defined.");
                newLine();
                try {
                    depth++;
                    attributesWithCompatibilityRules.forEach(a -> writeAttribute(maxC, a, false));
                    newLine();
                } finally {
                    depth--;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:17:12 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

            withSettingsIn(".", script, produceFile)
    
        protected
        fun withSettingsIn(baseDir: String, script: String, produceFile: (String) -> File = ::newFile): File =
            withFile("$baseDir/settings.gradle.kts", script, produceFile)
    
        protected
        fun withBuildScript(script: String, produceFile: (String) -> File = ::newFile): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            protected File newFile;
    
            protected Writer writer;
    
            protected CharMappingItem item;
    
            protected MappingUpdater(final CharMappingItem newItem) {
                try {
                    newFile = ComponentUtil.getSystemHelper().createTempFile(MAPPING, ".txt");
                    writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(newFile), Constants.UTF_8));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
    
            when:
            def newFile = file("src/main/swift/NewFile.swift")
            newFile << """
                public class NewFile {}
            """
            and:
            succeeds("compileDebugSwift")
    
            then:
            outputs.recompiledFile(newFile)
        }
    
        def 'adding a new file that overlaps with an existing type fails'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top