Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for abbreviations (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/debug/dwarf/entry.go

    // DWARF debug information entry parser.
    // An entry is a sequence of data items of a given format.
    // The first word in the entry is an index into what DWARF
    // calls the ``abbreviation table.''  An abbreviation is really
    // just a type descriptor: it's an array of attribute tag/value format pairs.
    
    package dwarf
    
    import (
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"strconv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/internal/xcoff/xcoff.go

    	SSUBTYP_DWPBNMS = 0x30000 // DWARF public names section
    	SSUBTYP_DWPBTYP = 0x40000 // DWARF public types section
    	SSUBTYP_DWARNGE = 0x50000 // DWARF aranges section
    	SSUBTYP_DWABREV = 0x60000 // DWARF abbreviation section
    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

      }
    
      public void testToUriStringIPv6() {
        // Unfortunately the InetAddress.toString() method for IPv6 addresses
        // does not collapse contiguous shorts of zeroes with the :: abbreviation.
        String ipStr = "3ffe::1";
        InetAddress ip = InetAddresses.forString(ipStr);
        assertEquals("[3ffe::1]", InetAddresses.toUriString(ip));
      }
    
      public void testForUriStringIPv4() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf_test.go

    }
    
    func TestOutputParamAbbrevAndAttr(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    	t.Parallel()
    
    	// This test verifies that the compiler is selecting the correct
    	// DWARF abbreviation for output parameters, and that the
    	// variable parameter attribute is correct for in-params and
    	// out-params.
    
    	const prog = `
    package main
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top