Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for abbreviations (0.17 sec)

  1. src/os/types.go

    // may be used in wire protocols or disk representations: they must not be
    // changed, although new bits might be added.
    const (
    	// The single letters are the abbreviations
    	// used by the String method's formatting.
    	ModeDir        = fs.ModeDir        // d: is a directory
    	ModeAppend     = fs.ModeAppend     // a: append-only
    	ModeExclusive  = fs.ModeExclusive  // l: exclusive use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/time/genzabbrs.go

    	"io"
    	"log"
    	"net/http"
    	"os"
    	"slices"
    	"strings"
    	"text/template"
    	"time"
    )
    
    var filename = flag.String("output", "zoneinfo_abbrs_windows.go", "output file name")
    
    // getAbbrs finds timezone abbreviations (standard and daylight saving time)
    // for location l.
    func getAbbrs(l *time.Location) (st, dt string) {
    	t := time.Date(time.Now().Year(), 0, 1, 0, 0, 0, 0, l)
    	abbr1, off1 := t.Zone()
    	for i := 0; i < 12; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/time/zoneinfo_windows.go

    func extractCAPS(desc string) string {
    	var short []rune
    	for _, c := range desc {
    		if 'A' <= c && c <= 'Z' {
    			short = append(short, c)
    		}
    	}
    	return string(short)
    }
    
    // abbrev returns the abbreviations to use for the given zone z.
    func abbrev(z *syscall.Timezoneinformation) (std, dst string) {
    	stdName := syscall.UTF16ToString(z.StandardName[:])
    	a, ok := abbrs[stdName]
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/io/fs/fs.go

    // may be used in wire protocols or disk representations: they must not be
    // changed, although new bits might be added.
    const (
    	// The single letters are the abbreviations
    	// used by the String method's formatting.
    	ModeDir        FileMode = 1 << (32 - 1 - iota) // d: is a directory
    	ModeAppend                                     // a: append-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/time/zoneinfo_read.go

    	// Time zone indices for transition times.
    	txzones := d.read(n[NTime])
    
    	// Zone info structures
    	zonedata := dataIO{d.read(n[NZone] * 6), false}
    
    	// Time zone abbreviations.
    	abbrev := d.read(n[NChar])
    
    	// Leap-second time pairs
    	d.read(n[NLeap] * (size + 4))
    
    	// Whether tx times associated with local time types
    	// are specified as standard time or wall time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    The same applies to project names. You can execute the `check` task in the `library` subproject with the `gradle lib:che` command.
    
    You can use https://en.wikipedia.org/wiki/Camel_case[camel case] patterns for more complex abbreviations. These patterns are expanded to match camel case and https://en.wikipedia.org/wiki/Kebab_case[kebab case] names.
    For example, the pattern `foBa` (or `fB`) matches `fooBar` and `foo-bar`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         *       question mark or exclamation mark followed by a space if the next word starts with a capital letter.
         *       This is meant to handle most abbreviations (such as "The serial no. is valid", but won't handle "Mr. Smith").
         *       Doesn't stop at HTML tags or sentences that begin with numbers or symbols.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	margin-left: 1.25em;
    	margin-bottom: 0;
    }
    
    /* Definition Lists */
    dl dt {
    	margin-bottom: 0.3125em;
    	font-weight: bold;
    }
    
    dl dd {
    	margin-bottom: 1.25em;
    }
    
    /* Abbreviations */
    abbr,
    acronym {
    	text-transform: uppercase;
    	font-size: 90%;
    	color: var(--num-color);
    	border-bottom: 1px dotted #dddddd;
    	cursor: help;
    }
    
    abbr {
    	text-transform: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package cm (abbreviation of "container manager") and its subpackages contain all the kubelet code
    // to manage containers. For example, they contain functions to configure containers' cgroups,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 18:20:51 UTC 2023
    - 934 bytes
    - Viewed (0)
  10. src/time/zoneinfo_js.go

    	// the timezone name from (new Date()).toTimeString() is an implementation-dependent
    	// result, and in Google Chrome, it gives the fully expanded name rather than
    	// the abbreviation.
    	// Hence, we construct the name from the offset.
    	z.name = "UTC"
    	if offset < 0 {
    		z.name += "-"
    		offset *= -1
    	} else {
    		z.name += "+"
    	}
    	z.name += itoa.Itoa(offset / 60)
    	min := offset % 60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 29 20:05:34 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top