Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 370 for field1s (0.2 sec)

  1. guava-tests/test/com/google/common/base/ToStringHelperTest.java

            MoreObjects.toStringHelper(new TestClass())
                .add("field1", "This is string.")
                .add("field2", Arrays.asList("abc", "def", "ghi"))
                .add("field3", map)
                .toString();
        final String expected =
            "TestClass{"
                + "field1=This is string., field2=[abc, def, ghi], field3={abc=1, def=2, ghi=3}}";
    
        assertEquals(expected, toTest);
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:24:55 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

            final String[] fields = getParamValueArray(request, "facet.field");
            final String[] queries = getParamValueArray(request, "facet.query");
            if (fields.length == 0 && queries.length == 0) {
                return null;
            }
            final FacetInfo facetInfo = new FacetInfo();
            facetInfo.field = fields;
            facetInfo.query = queries;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            final StringBuilder buf = new StringBuilder(100);
            buf.append(form.q);
            if (!form.fields.isEmpty() && form.fields.containsKey(LABEL_FIELD)) {
                final String[] values = form.fields.get(LABEL_FIELD);
                final List<String> labelList = new ArrayList<>();
                if (values != null) {
                    Collections.addAll(labelList, values);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

            return sequence;
        }
    
        public KerberosApRequest(ASN1Sequence seq, KerberosKey[] keys) throws PACDecodingException {
            Enumeration<?> fields = seq.getObjects();
            while ( fields.hasMoreElements() ) {
                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields.nextElement());
                switch ( tagged.getTagNo() ) {
                case 0:
                    ASN1Integer pvno = ASN1Util.as(ASN1Integer.class, tagged);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        } finally {
          Thread.currentThread().setContextClassLoader(oldClassLoader);
        }
    
        Thread.currentThread().setContextClassLoader(NO_ATOMIC_REFERENCE_FIELD_UPDATER);
        try {
          runTestMethod(NO_ATOMIC_REFERENCE_FIELD_UPDATER);
          // TODO(lukes): assert that the logs are full of errors
        } finally {
          Thread.currentThread().setContextClassLoader(oldClassLoader);
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 16 03:24:50 GMT 2021
    - 6.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String DATE = "Date";
      /** The HTTP {@code Pragma} header field name. */
      public static final String PRAGMA = "Pragma";
      /** The HTTP {@code Via} header field name. */
      public static final String VIA = "Via";
      /** The HTTP {@code Warning} header field name. */
      public static final String WARNING = "Warning";
    
      // HTTP Request header fields
    
      /** The HTTP {@code Accept} header field name. */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                 * necessarily populated with header data because they're not writing
                 * the header, only their body. But for whatever reason one might wish
                 * to populate fields if the writeXxx operation needs this header data
                 * for whatever reason. I copy over the uid here so it appears correct
                 * in logging output. Logging of andx segments of messages inadvertantly
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_ADMIN_LONG_FIELDS = "index.admin.long.fields";
    
        /** The key of the configuration. e.g. boost */
        String INDEX_ADMIN_FLOAT_FIELDS = "index.admin.float.fields";
    
        /** The key of the configuration. e.g.  */
        String INDEX_ADMIN_DOUBLE_FIELDS = "index.admin.double.fields";
    
        /** The key of the configuration. e.g. url,title,role,boost */
        String INDEX_ADMIN_REQUIRED_FIELDS = "index.admin.required.fields";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. src/main/java/jcifs/spnego/NegTokenTarg.java

                ASN1EncodableVector fields = new ASN1EncodableVector();
                int res = getResult();
                if ( res != UNSPECIFIED_RESULT ) {
                    fields.add(new DERTaggedObject(true, 0, new ASN1Enumerated(res)));
                }
                ASN1ObjectIdentifier mech = getMechanism();
                if ( mech != null ) {
                    fields.add(new DERTaggedObject(true, 1, mech));
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 5.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

        input.addListener(future, rejectionPropagatingExecutor(executor, future));
        return future;
      }
    
      /*
       * In certain circumstances, this field might theoretically not be visible to an afterDone() call
       * triggered by cancel(). For details, see the comments on the fields of TimeoutFuture.
       */
      @CheckForNull @LazyInit ListenableFuture<? extends V> inputFuture;
      @CheckForNull @LazyInit Class<X> exceptionType;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top