Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 4141 (0.02 sec)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java

            String str = "port = 4141" + LINE_SEPARATOR + "host = localhost"
                    + LINE_SEPARATOR + "url = https://${host}:${port}/service"
                    + LINE_SEPARATOR;
            MavenProperties properties = new MavenProperties();
            properties.load(new StringReader(str));
            properties.put("url", "https://localhost:4141/service");
            StringWriter sw = new StringWriter();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

        assertEquals(0, factory.count);
        multimap.putAll(Color.BLUE, asList(3, 1, 4, 1));
        assertEquals(1, factory.count);
        multimap.putAll(Color.RED, asList(2, 7, 1, 8));
        assertEquals(2, factory.count);
        assertEquals("{BLUE=[3, 1, 4, 1], RED=[2, 7, 1, 8]}", multimap.toString());
        assertFalse(multimap.get(Color.BLUE) instanceof RandomAccess);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidEncryptionParametersSSEC-137]
    	_ = x[ErrInvalidSSECustomerAlgorithm-138]
    	_ = x[ErrInvalidSSECustomerKey-139]
    	_ = x[ErrMissingSSECustomerKey-140]
    	_ = x[ErrMissingSSECustomerKeyMD5-141]
    	_ = x[ErrSSECustomerKeyMD5Mismatch-142]
    	_ = x[ErrInvalidSSECustomerParameters-143]
    	_ = x[ErrIncompatibleEncryptionMethod-144]
    	_ = x[ErrKMSNotConfigured-145]
    	_ = x[ErrKMSKeyNotFoundException-146]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/archive/tar/strconv_test.go

    		ok   bool
    	}{
    		// Test base-256 (binary) encoded values.
    		{"", 0, true},
    		{"\x80", 0, true},
    		{"\x80\x00", 0, true},
    		{"\x80\x00\x00", 0, true},
    		{"\xbf", (1 << 6) - 1, true},
    		{"\xbf\xff", (1 << 14) - 1, true},
    		{"\xbf\xff\xff", (1 << 22) - 1, true},
    		{"\xff", -1, true},
    		{"\xff\xff", -1, true},
    		{"\xff\xff\xff", -1, true},
    		{"\xc0", -1 * (1 << 6), true},
    		{"\xc0\x00", -1 * (1 << 14), true},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  5. cmd/erasure-decode_test.go

    	b.Run(" X000|0000 ", func(b *testing.B) { benchmarkErasureDecode(4, 4, 1, 0, size, b) })
    	b.Run(" X000|X000 ", func(b *testing.B) { benchmarkErasureDecode(4, 4, 1, 1, size, b) })
    	b.Run(" 0000|XXXX ", func(b *testing.B) { benchmarkErasureDecode(4, 4, 0, 4, size, b) })
    	b.Run(" XX00|XX00 ", func(b *testing.B) { benchmarkErasureDecode(4, 4, 2, 2, size, b) })
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

                  writeByteString(value)
                  insertIntoDynamicTable(header)
                }
              }
            }
          }
    
          // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12#section-4.1.1
          fun writeInt(
            value: Int,
            prefixMask: Int,
            bits: Int,
          ) {
            var value = value
            // Write the raw value for a single byte value.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X125,
        X126,
        X127,
        X128,
        X129,
        X130,
        X131,
        X132,
        X133,
        X134,
        X135,
        X136,
        X137,
        X138,
        X139,
        X140,
        X141,
        X142,
        X143,
        X144,
        X145,
        X146,
        X147,
        X148,
        X149,
        X150,
        X151,
        X152,
        X153,
        X154,
        X155,
        X156,
        X157,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. src/archive/tar/reader_test.go

    		wantSize: 03333,
    	}, {
    		input: makeInput(FormatGNU, "",
    			append(append(
    				makeSparseStrings(sparseDatas{{0, 1}, {2, 1}}),
    				[]string{"", ""}...),
    				makeSparseStrings(sparseDatas{{4, 1}, {6, 1}})...)...),
    		wantMap: sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}},
    	}, {
    		input: makeInput(FormatGNU, "",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}, {8, 1}, {10, 1}})...)[:blockSize],
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. cmd/bucket-policy-handlers_test.go

    			expectedRespStatus: http.StatusBadRequest,
    		},
    		// Test case - 3.
    		// Case with content-length of the HTTP request set to 0.
    		// Expecting the HTTP response status to be StatusLengthRequired (411).
    		{
    			bucketName:         bucketName,
    			bucketPolicyReader: bytes.NewReader([]byte(fmt.Sprintf(bucketPolicyTemplate, bucketName, bucketName))),
    
    			policyLen:          0,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. api/go1.11.txt

    pkg debug/elf, const EM_TILEPRO = 188
    pkg debug/elf, const EM_TILEPRO Machine
    pkg debug/elf, const EM_TI_ARP32 = 143
    pkg debug/elf, const EM_TI_ARP32 Machine
    pkg debug/elf, const EM_TI_C2000 = 141
    pkg debug/elf, const EM_TI_C2000 Machine
    pkg debug/elf, const EM_TI_C5500 = 142
    pkg debug/elf, const EM_TI_C5500 Machine
    pkg debug/elf, const EM_TI_C6000 = 140
    pkg debug/elf, const EM_TI_C6000 Machine
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
Back to top