Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 242 for combiner (0.22 sec)

  1. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

            // We can't directly access it, but we can verify the behavior is correct
            assertNotNull(notifyChange);
        }
    
        @Test
        @DisplayName("Test combined completion filters")
        void testCombinedCompletionFilters() {
            int combinedFilter =
                    FILE_NOTIFY_CHANGE_FILE_NAME | FILE_NOTIFY_CHANGE_DIR_NAME | FILE_NOTIFY_CHANGE_ATTRIBUTES | FILE_NOTIFY_CHANGE_SIZE;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSetMultimap.java

            putAll(entry.getKey(), entry.getValue());
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        @Override
        Builder<K, V> combine(ImmutableMultimap.Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        /**
         * {@inheritDoc}
         *
         * @since 8.0
         */
        @CanIgnoreReturnValue
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * the current project and its ancestors. Active profiles are those that meet the
         * activation criteria through explicit activation or automatic conditions.
         * <p>
         * The combined set of active profiles from the entire project hierarchy affects
         * the effective build configuration.
         *
         * @return a non-null, possibly empty list of all active profiles from this project and its parents
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Feb 27 11:07:03 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/spnego/NegTokenInitTest.java

                assertFalse(init.getContextFlag(flag));
                assertEquals(0, init.getContextFlags());
            }
    
            @Test
            @DisplayName("Multiple flags can be combined correctly")
            void testMultipleFlagsCombination() {
                NegTokenInit init = new NegTokenInit();
    
                // Set multiple flags
                init.setContextFlag(NegTokenInit.DELEGATION, true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java

        ImmutableSet.Builder<String> zis = ImmutableSet.<String>builder().add("a", "b", "a");
        ImmutableSet.Builder<String> zat = ImmutableSet.<String>builder().add("c", "b", "d", "c");
        ImmutableSet<String> set = zis.combine(zat).build();
        assertThat(set).containsExactly("a", "b", "c", "d").inOrder();
      }
    
      @Override
      <E extends Comparable<E>> Builder<E> builder() {
        return ImmutableSet.builder();
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/SecureCredentialStorage.java

                cipher.init(Cipher.ENCRYPT_MODE, masterKey, gcmSpec);
    
                // Encrypt
                byte[] ciphertext = cipher.doFinal(plaintextBytes);
    
                // Combine IV and ciphertext
                byte[] result = new byte[GCM_IV_SIZE + ciphertext.length];
                System.arraycopy(iv, 0, result, 0, GCM_IV_SIZE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/query-params-str-validations.md

    ## Adicionando expressões regulares
    
    Você pode definir uma <abbr title="Uma expressão regular, regex ou regexp é uma sequência de caracteres que define um parâmetro de busca para textos.">expressão regular</abbr> que combine com um padrão esperado pelo parâmetro:
    
    {* ../../docs_src/query_params_str_validations/tutorial004.py hl[11] *}
    
    Essa expressão regular específica verifica se o valor recebido no parâmetro:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/Kerb5ContextTest.java

            when(gssContext.getIntegState()).thenReturn(false);
    
            int flags = ctx.getFlags();
            assertEquals(0, flags);
        }
    
        @Test
        @DisplayName("getFlags combines all flag bits when true")
        void getFlags_allTrue() {
            when(gssContext.getCredDelegState()).thenReturn(true);
            when(gssContext.getMutualAuthState()).thenReturn(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            java.lang.reflect.Method[] methods = SystemUtil.class.getDeclaredMethods();
            for (java.lang.reflect.Method method : methods) {
                if (!method.isSynthetic()) { // Ignore compiler-generated methods
                    assertTrue("Method " + method.getName() + " should be static", java.lang.reflect.Modifier.isStatic(method.getModifiers()));
                }
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

        from jCIFS or another application will fail with the "file is being
        accessed by another process" error. The <code>FILE_SHARE_READ</code>,
        <code>FILE_SHARE_WRITE</code>, and <code>FILE_SHARE_DELETE</code> may be
        combined with the bitwise OR '|' to specify that other peocesses may read,
        write, and/or delete the file while the jCIFS user has the file open.
         *
         * @param url An smb URL representing the file to write to
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top