Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 133 for livable (0.11 sec)

  1. src/cmd/internal/objabi/reloctype.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 objabi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/arena_test.go

    		testUserArenaLiveness(t, false)
    	})
    	t.Run("Finalizer", func(t *testing.T) {
    		testUserArenaLiveness(t, true)
    	})
    }
    
    func testUserArenaLiveness(t *testing.T, useArenaFinalizer bool) {
    	// Disable the GC so that there's zero chance we try doing anything arena related *during*
    	// a mark phase, since otherwise a bunch of arenas could end up on the fault list.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/encoding/base32/base32.go

    // It is typically used in DNS.
    var HexEncoding = NewEncoding("0123456789ABCDEFGHIJKLMNOPQRSTUV")
    
    // WithPadding creates a new encoding identical to enc except
    // with a specified padding character, or NoPadding to disable padding.
    // The padding character must not be '\r' or '\n',
    // must not be contained in the encoding's alphabet,
    // must not be negative, and must be a rune equal or below '\xff'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/runtime/netpoll.go

    //     Arm edge-triggered notifications for fd. The pd argument is to pass
    //     back to netpollready when fd is ready. Return an errno value.
    //
    // func netpollclose(fd uintptr) int32
    //     Disable notifications for fd. Return an errno value.
    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    	fmt.Fprintf(h, "pkg %q\n", a.Deps[0].actionID)
    	for _, a1 := range a.Deps {
    		if a1.Mode == "vet" && a1.built != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    	}
    	for (i = 0; i < N; i++)
    		pthread_join(tid[i], 0);
    }
    #endif
    
    // issue 3261
    // libgcc on ARM might be compiled as thumb code, but our 5l
    // can't handle that, so we have to disable this test on arm.
    #ifdef __ARMEL__
    int vabs(int x) {
    	puts("testLibgcc is disabled on ARM because 5l cannot handle thumb library.");
    	return (x < 0) ? -x : x;
    }
    #elif defined(__arm64__) && defined(__clang__)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/expr.go

    	// If it was a ODIV/OMOD walk might rewrite it.
    	r := n.Index
    
    	n.Index = walkExpr(n.Index, init)
    
    	// if range of type cannot exceed static array bound,
    	// disable bounds check.
    	if n.Bounded() {
    		return n
    	}
    	t := n.X.Type()
    	if t != nil && t.IsPtr() {
    		t = t.Elem()
    	}
    	if t.IsArray() {
    		n.SetBounded(bounded(r, t.NumElem()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    						}
    						break
    					}
    					// Found a crasher but haven't yet attempted to minimize it.
    					// Send it back to a worker for minimization. Disable inputC so
    					// other workers don't continue fuzzing.
    					c.crashMinimizing = &result
    					fmt.Fprintf(c.opts.Log, "fuzz: minimizing %d-byte failing input file\n", len(result.entry.Data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    	case "errorcheck":
    		// Compile Go file.
    		// Fail if wantError is true and compilation was successful and vice versa.
    		// Match errors produced by gc against errors in comments.
    		// TODO(gri) remove need for -C (disable printing of columns in error messages)
    		cmdline := []string{goTool, "tool", "compile", "-p=p", "-d=panic", "-C", "-e", "-importcfg=" + stdlibImportcfgFile(), "-o", "a.o"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	arg := "0"
    	if len(paramnames) > 0 {
    		arg = "uintptr(unsafe.Pointer(&p0))"
    	} else if !void {
    		arg = "uintptr(unsafe.Pointer(&r1))"
    	}
    
    	noCallback := p.noCallbacks[n.C]
    	if noCallback {
    		// disable cgocallback, will check it in runtime.
    		fmt.Fprintf(fgo2, "\t_Cgo_no_callback(true)\n")
    	}
    
    	prefix := ""
    	if n.AddError {
    		prefix = "errno := "
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top