Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for abbreviations (0.14 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_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. 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)
  6. 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)
  7. src/debug/dwarf/unit.go

    // license that can be found in the LICENSE file.
    
    package dwarf
    
    import (
    	"sort"
    	"strconv"
    )
    
    // DWARF debug info is split into a sequence of compilation units.
    // Each unit has its own abbreviation table and address size.
    
    type unit struct {
    	base   Offset // byte offset of header within the aggregate info
    	off    Offset // byte offset of data within the aggregate info
    	data   []byte
    	atable abbrevTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. 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)
Back to top