Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for livable (0.16 sec)

  1. src/path/filepath/path_windows_test.go

    //	1 - Disable 8dot3 name creation on all volumes on the system
    //	2 - Set 8dot3 name creation on a per volume basis
    //	3 - Disable 8dot3 name creation on all volumes except the system volume
    //
    // If global flag is set to 2, then per-volume flag needs to be examined:
    //
    //	0 - Enable 8dot3 name creation on this volume
    //	1 - Disable 8dot3 name creation on this volume
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?as-needed`),
    	re(`-Wl,-Bdynamic`),
    	re(`-Wl,-berok`),
    	re(`-Wl,-Bstatic`),
    	re(`-Wl,-Bsymbolic-functions`),
    	re(`-Wl,-O[0-9]+`),
    	re(`-Wl,-d[ny]`),
    	re(`-Wl,--disable-new-dtags`),
    	re(`-Wl,-e[=,][a-zA-Z0-9]+`),
    	re(`-Wl,--enable-new-dtags`),
    	re(`-Wl,--end-group`),
    	re(`-Wl,--(no-)?export-dynamic`),
    	re(`-Wl,-E`),
    	re(`-Wl,-framework,[^,@\-][^,]+`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/engine.go

    	s      string
    	quoted bool // if true, disable variable expansion for this fragment
    }
    
    type condition struct {
    	want bool
    	tag  string
    }
    
    const argSepChars = " \t\r\n#"
    
    // parse parses a single line as a list of space-separated arguments.
    // subject to environment variable expansion (but not resplitting).
    // Single quotes around text disable splitting and expansion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. src/runtime/debug/garbage.go

    // nearly continuously. However, the application may still make
    // progress.
    //
    // The memory limit is always respected by the Go runtime, so to
    // effectively disable this behavior, set the limit very high.
    // [math.MaxInt64] is the canonical value for disabling the limit,
    // but values much greater than the available memory on the underlying
    // system work just as well.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/sym.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 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/encoding/json/stream_test.go

    			t.Errorf("encoding %d items: mismatch:", i)
    			diff(t, []byte(have), []byte(want))
    			break
    		}
    	}
    }
    
    func TestEncoderErrorAndReuseEncodeState(t *testing.T) {
    	// Disable the GC temporarily to prevent encodeState's in Pool being cleaned away during the test.
    	percent := debug.SetGCPercent(-1)
    	defer debug.SetGCPercent(percent)
    
    	// Trigger an error in Marshal with cyclic data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top