Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Bar1 (0.16 sec)

  1. src/cmd/api/testdata/src/pkg/p1/p1.go

    	AIsLowerA = a // previously declared
    )
    
    const (
    	ConversionConst = MyInt(5)
    )
    
    // Variables from function calls.
    var (
    	V = ptwo.F()
    	// Deprecated: use WError.
    	VError = BarE()
    	V1     = Bar1(1, 2, 3)
    	V2     = ptwo.G()
    )
    
    // Variables with conversions:
    var (
    	StrConv  = string("foo")
    	ByteConv = []byte("foo")
    )
    
    var ChecksumError = ptwo.NewError("gzip checksum error")
    
    const B0 = 2
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/PropertiesAsMapTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    class PropertiesAsMapTest {
    
        @Test
        void testPropertiesAsMap() {
            Properties props = new Properties();
            props.setProperty("foo1", "bar1");
            props.setProperty("foo2", "bar2");
            PropertiesAsMap pam = new PropertiesAsMap(props);
            assertEquals(2, pam.size());
            Set<Entry<String, String>> set = pam.entrySet();
            assertNotNull(set);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, const FloatConst = 1.5  // 3/2
    pkg p1, const FloatConst ideal-float
    pkg p1, const StrConst = "foo"
    pkg p1, const StrConst ideal-string
    pkg p1, func Bar(int8, int16, int64)
    pkg p1, func Bar1(int8, int16, int64) uint64
    pkg p1, func Bar2(int8, int16, int64) (uint8, uint64)
    pkg p1, func BarE() Error
    pkg p1, func Now() Time
    pkg p1, func PlainFunc(int, int, string) (*B, error)
    pkg p1, func TakesFunc(func(int) int)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        assertThat(hpackWriter!!.headerCount).isEqualTo(1)
        hpackWriter!!.writeHeaders(headerEntries("foo", "bar1"))
        assertBytes(0x7e, 4, 'b'.code, 'a'.code, 'r'.code, '1'.code)
        assertThat(hpackWriter!!.headerCount).isEqualTo(2)
        hpackWriter!!.writeHeaders(headerEntries("foo", "bar1"))
        assertBytes(0xbe)
        assertThat(hpackWriter!!.headerCount).isEqualTo(2)
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 38.2K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    balestrand.no ballangen.no ballooning.aero balsan-sudtirol.it balsan-suedtirol.it balsan-südtirol.it balsan.it balsfjord.no baltimore.museum bambina.jp bamble.no banamex bananarepublic band bandai.fukushima.jp bando.ibaraki.jp bank bar bar.pro bar0.net bar1.net bar2.net barcelona barcelona.museum barclaycard barclays bardu.no barefoot bargains bari.it barletta-trani-andria.it barlettatraniandria.it barrel-of-knowledge.info barrell-of-knowledge.info barsy.bg barsy.ca barsy.club barsy.co.uk barsy.de barsy.eu...
    Others
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Daniel Netzer <******@****.***>
    *.paywhirl.com
    
    // pcarrier.ca Software Inc: https://pcarrier.ca/
    // Submitted by Pierre Carrier <******@****.***>
    bar0.net
    bar1.net
    bar2.net
    rdv.to
    
    // .pl domains (grandfathered)
    art.pl
    gliwice.pl
    krakow.pl
    poznan.pl
    wroc.pl
    zakopane.pl
    
    // Pantheon Systems, Inc. : https://pantheon.io/
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  7. android/guava/src/com/google/common/reflect/ClassPath.java

      public static ClassPath from(ClassLoader classloader) throws IOException {
        ImmutableSet<LocationInfo> locations = locationsFrom(classloader);
    
        // Add all locations to the scanned set so that in a classpath [jar1, jar2], where jar1 has a
        // manifest with Class-Path pointing to jar2, we won't scan jar2 twice.
        Set<File> scanned = new HashSet<>();
        for (LocationInfo location : locations) {
          scanned.add(location.file());
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
  8. src/cmd/asm/internal/asm/testdata/arm64error.s

    	MSR	R6, ICC_HPPIR1_EL1                               // ERROR "system register is not writable"
    	MSR	R6, ICC_IAR0_EL1                                 // ERROR "system register is not writable"
    	MSR	R6, ICC_IAR1_EL1                                 // ERROR "system register is not writable"
    	MSR	R6, ICC_RPR_EL1                                  // ERROR "system register is not writable"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
Back to top