Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 528 for _type (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                                final Map<String, String> indexObj = dataObj.get("index");
                                if (indexObj != null) {
                                    if (indexObj.containsKey("_type")) {
                                        indexObj.remove("_type");
                                    }
                                    final String index = indexObj.get("_index");
                                    if (index != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  2. src/main/assemblies/extension/kibana/fess_log.ndjson

    se},{\"name\":\"_source\",\"type\":\"_source\",\"esTypes\":[\"_source\"],\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"_type\",\"type\":\"string\",\"esTypes\":[\"_type\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"accessType\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDoc...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/DcerpcMessageTest.java

                // Verify header encoding including ptype
                verify(mockBuffer, times(3)).enc_ndr_small(0); // minor version, ptype (REQUEST=0), and flags (all are 0)
            }
    
            @Test
            @DisplayName("encode should handle non-REQUEST ptype correctly")
            void testEncodeNonRequestPtype() throws NdrException {
                message.ptype = DcerpcConstants.RPC_PT_RESPONSE; // 2, not 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java

                    ENCRYPTION_TYPE, ENCRYPTED_DATA, null);
            when(kerberosKey.getKeyType()).thenReturn(99); // Different key type
    
            PACDecodingException e = assertThrows(PACDecodingException.class, () -> new KerberosTicket(token, (byte) 0, keys));
            assertEquals("Kerberos key not found for eType " + ENCRYPTION_TYPE, e.getMessage());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/GenericsUtil.java

         * <p>
         * If <code>type</code> is not a parameterized type, <code>null</code> is returned.
         * </p>
         *
         * @param type
         *            the type to analyze
         * @return the array of type arguments for the specified type
         * @see ParameterizedType#getActualTypeArguments()
         */
        public static Type[] getGenericParameters(final Type type) {
            if (type instanceof ParameterizedType) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeResolver.java

            throw new IllegalArgumentException("No type mapping from " + fromClass + " to " + to);
          }
        }.visit(from);
      }
    
      /**
       * Resolves all type variables in {@code type} and all downstream types and returns a
       * corresponding type with type variables resolved.
       */
      public Type resolveType(Type type) {
        checkNotNull(type);
        if (type instanceof TypeVariable) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/NameServiceClientTest.java

            String scope = "testScope";
            when(nameServiceClient.getNbtByName(host, type, scope)).thenThrow(new UnknownHostException("Host not found"));
    
            // Act & Assert
            assertThrows(UnknownHostException.class, () -> nameServiceClient.getNbtByName(host, type, scope));
            verify(nameServiceClient, times(1)).getNbtByName(host, type, scope);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/FieldUtil.java

        }
    
        /**
         * Returns the key type of a parameterized map field.
         *
         * @param field a field of a parameterized map type (must not be {@literal null})
         * @return the key type of the map
         */
        public static Class<?> getKeyTypeOfMap(final Field field) {
            assertArgumentNotNull("field", field);
    
            final Type type = field.getGenericType();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

          }
    
          private /*static*/ <S> S doConvert(TypeToken<S> type) {
            return checkNotNull(getDefaultValue(type));
          }
        };
      }
    
      private static TypeToken<?> getFirstTypeParameter(Type type) {
        if (type instanceof ParameterizedType) {
          return TypeToken.of(((ParameterizedType) type).getActualTypeArguments()[0]);
        } else {
          return TypeToken.of(Object.class);
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type3Message.java

            setWorkstation(tc.getNameServiceClient().getLocalHost().getHostName());
        }
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message.
         *
         * @param tc
         *            context to use
         * @param type2
         *            The Type-2 message which this represents a response to.
         * @param targetName
         *            SPN of the target system, optional
         * @param password
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top