Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for livable (0.15 sec)

  1. src/cmd/vendor/golang.org/x/text/language/language.go

    }
    
    // IsRoot returns true if t is equal to language "und".
    func (t Tag) IsRoot() bool {
    	return compact.Tag(t).IsRoot()
    }
    
    // CanonType can be used to enable or disable various types of canonicalization.
    type CanonType int
    
    const (
    	// Replace deprecated base languages with their preferred replacements.
    	DeprecatedBase CanonType = 1 << iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/runtime/signal_unix.go

    		}
    	}
    }
    
    // setProcessCPUProfilerTimer is called when the profiling timer changes.
    // It is called with prof.signalLock held. hz is the new timer, and is 0 if
    // profiling is being disabled. Enable or disable the signal as
    // required for -buildmode=c-archive.
    func setProcessCPUProfilerTimer(hz int32) {
    	if hz != 0 {
    		// Enable the Go signal handler if not enabled.
    		if atomic.Cas(&handlingSig[_SIGPROF], 0, 1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    			return "", fmt.Errorf("no path for non-exported %v", obj)
    		}
    		return Path(obj.Name()), nil
    	}
    
    	// 3. Not a package-level object.
    	//    Reject obviously non-viable cases.
    	switch obj := obj.(type) {
    	case *types.TypeName:
    		if _, ok := aliases.Unalias(obj.Type()).(*types.TypeParam); !ok {
    			// With the exception of type parameters, only package-level type names
    			// have a path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.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 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    						return false
    					}
    				} else if xi != nil || yi != nil {
    					// One but not both of them are interfaces.
    					// In this case, either x or y could be viable matches for the corresponding
    					// type parameter, which means choosing either introduces an order dependence.
    					// Therefore, we must fail unification (go.dev/issue/60933).
    					return false
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	for i := 0; i < tries; i++ {
    		err := runSignalForwardingTest(t, "2")
    		if err == nil {
    			continue
    		}
    
    		// If the signal is delivered to a C thread, as expected,
    		// the Go signal handler will disable itself and re-raise
    		// the signal, causing the program to die with SIGSEGV.
    		//
    		// It is also possible that the signal will be
    		// delivered to a Go thread, such as a GC thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.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 ppc64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	stackDebug       = 0
    	stackFromSystem  = 0 // allocate stacks from system memory instead of the heap
    	stackFaultOnFree = 0 // old stacks are mapped noaccess to detect use after free
    	stackNoCache     = 0 // disable per-P small stack caches
    
    	// check the BP links during traceback.
    	debugCheckBP = false
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    	TLS_ECDHE_ECDSA_WITH_RC4_128_SHA: true,
    	TLS_ECDHE_RSA_WITH_RC4_128_SHA:   true,
    	TLS_RSA_WITH_RC4_128_SHA:         true,
    }
    
    // rsaKexCiphers contains the ciphers which use RSA based key exchange,
    // which we also disable by default unless a GODEBUG is set.
    var rsaKexCiphers = map[uint16]bool{
    	TLS_RSA_WITH_RC4_128_SHA:        true,
    	TLS_RSA_WITH_3DES_EDE_CBC_SHA:   true,
    	TLS_RSA_WITH_AES_128_CBC_SHA:    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/a.out.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 ppc64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top