Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 202 for livable (0.12 sec)

  1. src/cmd/compile/internal/types2/infer.go

    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/cmd/vet/testdata/print/print.go

    	fmt.Printf("%s", []stringer{3, 4})  // not an error
    	fmt.Printf("%s", [2]stringer{3, 4}) // not an error
    }
    
    // TODO: Disable complaint about '0' for Go 1.10. To be fixed properly in 1.11.
    // See issues 23598 and 23605.
    func DisableErrorForFlag0() {
    	fmt.Printf("%0t", true)
    }
    
    // Issue 26486.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  3. src/runtime/os_linux.go

    		mp.profileTimer = 0
    
    		ret := timer_delete(timerid)
    		if ret != 0 {
    			print("runtime: failed to disable profiling timer; timer_delete(", timerid, ") errno=", -ret, "\n")
    			throw("timer_delete")
    		}
    	}
    
    	if hz == 0 {
    		// If the goal was to disable profiling for this thread, then the job's done.
    		return
    	}
    
    	// The period of the timer should be 1/Hz. For every "1/Hz" of additional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/pass.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/internal/poll/fd_windows.go

    		}
    		err := syscall.SetFileCompletionNotificationModes(fd.Sysfd, flags)
    		if err == nil && flags&syscall.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS != 0 {
    			fd.skipSyncNotif = true
    		}
    	}
    	// Disable SIO_UDP_CONNRESET behavior.
    	// http://support.microsoft.com/kb/263823
    	switch net {
    	case "udp", "udp4", "udp6":
    		ret := uint32(0)
    		flag := uint32(0)
    		size := uint32(unsafe.Sizeof(flag))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/runtime/runtime-lldb_test.go

    	err = os.WriteFile(mod, []byte("module lldbtest"), 0644)
    	if err != nil {
    		t.Fatalf("failed to create mod file: %v", err)
    	}
    
    	// As of 2018-07-17, lldb doesn't support compressed DWARF, so
    	// disable it for this test.
    	cmd := exec.Command(testenv.GoToolPath(t), "build", "-gcflags=all=-N -l", "-ldflags=-compressdwarf=false", "-o", "a.exe")
    	cmd.Dir = dir
    	cmd.Env = append(os.Environ(), "GOPATH=") // issue 31100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StringLen", argLength: 1, typ: "Int"},     // len(arg0)
    
    	// Interfaces
    	{name: "IMake", argLength: 2},                // arg0=itab, arg1=data
    	{name: "ITab", argLength: 1, typ: "Uintptr"}, // arg0=interface, returns itable field
    	{name: "IData", argLength: 1},                // arg0=interface, returns data field
    
    	// Structs
    	{name: "StructMake0"},                              // Returns struct with 0 fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_OVERRIDE_INFFLAGS   DI_FLAGS = 0x10000000 // Override INF flags
    	DI_PROPS_NOCHANGEUSAGE DI_FLAGS = 0x20000000 // No Enable/Disable in General Props
    
    	DI_NOSELECTICONS DI_FLAGS = 0x40000000 // No small icons in select device dialogs
    
    	DI_NOWRITE_IDS DI_FLAGS = 0x80000000 // Don't write HW & Compat IDs on install
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    //
    // Tests execute in HTTP/1.1 and HTTP/2 modes by default.
    // To run in a different set of configurations, pass a []testMode option.
    //
    // Tests call t.Parallel() by default.
    // To disable parallel execution, pass the testNotParallel option.
    func run[T TBRun[T]](t T, f func(t T, mode testMode), opts ...any) {
    	t.Helper()
    	modes := []testMode{http1Mode, http2Mode}
    	parallel := true
    	for _, opt := range opts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/crypto/aes/block.go

    //	OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    //	WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    //	ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
    //	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    //	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    //	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top