Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/KtTypeRenderer.kt

                ?: return
    
            printer.append(" /* from: ")
            renderTypeAsIs(abbreviatedType, printer)
            printer.append(" */")
        }
    
        /**
         * Renders [type] directly without considering its abbreviation or expansion.
         */
        private fun KaSession.renderTypeAsIs(type: KaType, printer: PrettyPrinter) {
            when (type) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/time/format_test.go

    // Time) and AST (Atlantic Standard Time) are different time zones,
    // even though they have the same abbreviation.
    //
    // ICANN has been slowly phasing out invented abbreviation in favor of
    // numeric time zones (for example, the Asia/Baghdad time zone
    // abbreviation got changed from AST to +03 in the 2017a tzdata
    // release); but we still want to make sure that the time package does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/time/format.go

    //
    // When parsing a time with a zone abbreviation like MST, if the zone abbreviation
    // has a defined offset in the current location, then that offset is used.
    // The zone abbreviation "UTC" is recognized as UTC regardless of location.
    // If the zone abbreviation is unknown, Parse records the time as being
    // in a fabricated location with the given zone abbreviation and a zero offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                is CapturedType -> renderCapturedType(unwrappedType, printer)
                is NewCapturedType -> renderCapturedType(unwrappedType, printer)
                is AbbreviatedType -> renderType(unwrappedType.abbreviation, printer)
                is SimpleType -> {
                    when (val typeConstructor = unwrappedType.constructor) {
                        is NewTypeVariableConstructor -> renderTypeVariableType(typeConstructor, printer)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-35566`](https://youtrack.jetbrains.com/issue/KT-35566) False negative UPPER_BOUND_VIOLATED in a supertype of an inner class
    - [`KT-60248`](https://youtrack.jetbrains.com/issue/KT-60248) K2: Type abbreviations are not stored in IR
    - [`KT-61720`](https://youtrack.jetbrains.com/issue/KT-61720) K2: Delegates: Property type not specialised in property reference of setter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top