Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1731 - 1740 of 2,835 for 2$ (0.01 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        get() {
          before()
          return InetSocketAddress(hostName, portField)
        }
    
      /**
       * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or
       * HTTP/2. This is true by default; set to false to disable negotiation and restrict connections
       * to HTTP/1.1.
       */
      var protocolNegotiationEnabled: Boolean = true
    
      /**
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

      }
    
      void ensureCapacity(int minCapacity) {
        if (minCapacity > entries.length) {
          resizeEntries(minCapacity);
        }
        if (minCapacity >= threshold) {
          int newTableSize = Math.max(2, Integer.highestOneBit(minCapacity - 1) << 1);
          resizeTable(newTableSize);
        }
      }
    
      @CanIgnoreReturnValue
      public int put(@ParametricNullness K key, int value) {
        checkPositive(value, "count");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

                    } else if (Constants.DATA_CRAWLER_TYPE.equals(type)) {
                        ids[2] = "\"" + id + "\"";
                    }
                    scheduledJobForm.scriptData =
                            MessageFormat.format(fessConfig.getJobTemplateScript(), ids[0], ids[1], ids[2], id.replace('-', '_'));
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. internal/dsync/lock-args_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z LockResp) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 2
    	// write "Code"
    	err = en.Append(0x82, 0xa4, 0x43, 0x6f, 0x64, 0x65)
    	if err != nil {
    		return
    	}
    	err = en.WriteUint8(uint8(z.Code))
    	if err != nil {
    		err = msgp.WrapError(err, "Code")
    		return
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 24 10:24:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    1. Do not set a convention at all
    2. Set a convention in a plugin
    3. Set a convention in a constructor
    
    Most properties should have a convention set, so (1) can be treated as a rare case where a value must be provided by a user.
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 15 20:00:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. api/go1.6.txt

    pkg debug/elf, const COMPRESS_ZLIB CompressionType
    pkg debug/elf, const R_MIPS_16 = 1
    pkg debug/elf, const R_MIPS_16 R_MIPS
    pkg debug/elf, const R_MIPS_26 = 4
    pkg debug/elf, const R_MIPS_26 R_MIPS
    pkg debug/elf, const R_MIPS_32 = 2
    pkg debug/elf, const R_MIPS_32 R_MIPS
    pkg debug/elf, const R_MIPS_64 = 18
    pkg debug/elf, const R_MIPS_64 R_MIPS
    pkg debug/elf, const R_MIPS_ADD_IMMEDIATE = 34
    pkg debug/elf, const R_MIPS_ADD_IMMEDIATE R_MIPS
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/Configuration.java

         * {@href https://technet.microsoft.com/en-us/library/cc960646.aspx}
         * 
         * 
         * <table>
         * <tr>
         * <td>0 or 1</td>
         * <td>LM and NTLM</td>
         * </tr>
         * <tr>
         * <td>2</td>
         * <td>NTLM only</td>
         * </tr>
         * <tr>
         * <td>3-5</td>
         * <td>NTLMv2 only</td>
         * </tr>
         * </table>
         * 
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NbtSocket.java

            } catch( IOException ioe ) {
                close();
                throw ioe;
            }
    
            switch( type ) {
                case SessionServicePacket.POSITIVE_SESSION_RESPONSE:
                    if( log.level > 2 )
                        log.println( "session established ok with " + address );
                    return;
                case SessionServicePacket.NEGATIVE_SESSION_RESPONSE:
                    int errorCode = (int)( in.read() & 0xFF );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(url.queryParameterValue(2)).isEqualTo("")
        assertThat(url.queryParameterValues("foo")).isEqualTo(listOf(""))
        assertThat(url.queryParameterValues("bar")).isEqualTo(listOf(""))
        assertThat(url.queryParameterValues("baz")).isEqualTo(listOf(""))
      }
    
      @Test
      fun queryParametersWithRepeatedName() {
        val url = parse("http://host/?foo[]=1&foo[]=2&foo[]=3")
        assertThat(url.querySize).isEqualTo(3)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertEquals(1, tags.length);
            assertEquals("PrunedTag [tag=a, id=null, css=null, attrName=target, attrValue=_blank]", tags[0].toString());
    
            tags = PrunedTag.parse("a.link,div#123");
            assertEquals(2, tags.length);
            assertEquals("PrunedTag [tag=a, id=null, css=link, attrName=null, attrValue=null]", tags[0].toString());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top