代码搜索:Setting
找到约 10,000 项符合「Setting」的源代码
代码结果 10,000
www.eeworm.com/read/275831/10794395
rb 16 - setting cookies and other http response headers.rb
#!/usr/bin/ruby
# headers.cgi
require "cgi"
cgi = CGI.new("html3")
# Retrieve or create the "rubycookbook" cookie
cookie = cgi.cookies['rubycookbook']
cookie = CGI::Cookie.new('rubycookbook', 'hits=
www.eeworm.com/read/275831/10794505
rb 04 - setting up and tearing down a curses application.rb
require 'curses'
module Curses
def self.program
main_screen = init_screen
noecho
cbreak
curs_set(0)
main_screen.keypad = true
yield main_screen
end
end
#---
Curses.program
www.eeworm.com/read/208222/6961884
h et21x130c_c_setting.h
/************************************************************************************************************************/
/*
www.eeworm.com/read/127767/14335978
txt e394. setting a filter on a logger handler.txt
A handler automatically filters messages based on a log level. For other types of filtering, you can set your own custom filter on a handler.
// Create a handler
ConsoleHandler handler = ne
www.eeworm.com/read/127767/14335998
txt e796. setting the orientation of a jslider component.txt
Besides being either horizontal or vertical, a slider can also be inverted. An inverted horizontal slider moves from right-to-left. An inverted vertical slider moves from top-to-bottom.
// Creat
www.eeworm.com/read/127767/14336009
txt e578. setting the clipping area with a shape.txt
This example demonstrates how to set a clipping area using a shape. The example sets an oval for the clipping area and then draws and image. Only those pixels of the image that fall within the oval ar
www.eeworm.com/read/127767/14336015
txt e867. getting and setting a look and feel.txt
// Get the currently installed look and feel
LookAndFeel lf = UIManager.getLookAndFeel();
// Install a different look and feel; specifically, the Windows look and feel
try {
www.eeworm.com/read/127767/14336020
txt e633. setting gap sizes in a gridbadlayout.txt
Unlike most of the other layout managers, the gridbag layout manager does not have a property for controlling the size of the gaps between cells. You could implement gaps using insets (see e630 Settin
www.eeworm.com/read/127767/14336240
txt e399. setting the formatter of a logger handler.txt
A logger's handler uses a formatter to write a log record out to the log file. Two formatters are available by default: SimpleFormatter and XMLFormatter. The simple formatter formats a log record to o
www.eeworm.com/read/127767/14336445
txt e395. setting the log level of a logger.txt
The log level of a logger controls the severity of messages that it will log. In particular, a log record whose severity is greater than or equal to the logger's log level is logged.
A log level can