Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for livable (0.12 sec)

  1. 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)
  2. src/math/big/natconv.go

    				r /= b
    			}
    		}
    	}
    
    	// prepend high-order zeros
    	for i > 0 { // while need more leading zeros
    		i--
    		s[i] = '0'
    	}
    }
    
    // Split blocks greater than leafSize Words (or set to 0 to disable recursive conversion)
    // Benchmark and configure leafSize using: go test -bench="Leaf"
    //
    //	8 and 16 effective on 3.0 GHz Xeon "Clovertown" CPU (128 byte cache lines)
    //	8 and 16 effective on 2.66 GHz Core 2 Duo "Penryn" CPU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.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 arm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/obj/s390x/objz.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 s390x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. 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)
  7. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // sanitized domain name in case of errors. Browsers sometimes use a partially
    // evaluated string as lookup.
    // TODO: the current error handling is, in my opinion, the least opinionated.
    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/internal/obj/mips/obj0.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 mips
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  10. 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)
Back to top