Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for livable (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    	if len(oob) > 0 && empty {
    		n = 0
    	}
    	return n, nil
    }
    
    //sys	acct(path *byte) (err error)
    
    func Acct(path string) (err error) {
    	if len(path) == 0 {
    		// Assume caller wants to disable accounting.
    		return acct(nil)
    	}
    
    	pathp, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return acct(pathp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top