Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for signatures (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

       ([#117024](https://github.com/kubernetes/kubernetes/pull/117024), [@sanposhiho](https://github.com/sanposhiho))
    - Some interfaces' signatures in the scheduler were updated: - PluginsRunner: used NodeInfo in `RunPreScorePlugins` and `RunScorePlugins`. - PreScorePlugin: used NodeInfo in `PreScore`. - Extender: used NodeInfo in `Filter` and `Prioritize`.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                @Override
                public boolean isLdapIgnoreNetbiosName() {
                    return false;
                }
            });
            sambaHelper.init();
    
            // Verify method signature exists for SMB1 SID - actual test would require real SMB1 SID instance
            assertNotNull(sambaHelper);
        }
    
        public void test_createSearchRole_lowercase() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeTraverser.java

       *
       * @since 20.0
       * @deprecated Use {@link com.google.common.graph.Traverser#forTree} instead. If you are using a
       *     lambda, these methods have exactly the same signature.
       */
      @Deprecated
      public static <T> TreeTraverser<T> using(
          Function<T, ? extends Iterable<T>> nodeToChildrenFunction) {
        checkNotNull(nodeToChildrenFunction);
        return new TreeTraverser<T>() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. pom.xml

                </annotations>
                <checkTestClasses>true</checkTestClasses>
                <signature>
                  <groupId>org.codehaus.mojo.signature</groupId>
                  <artifactId>java18</artifactId>
                  <version>1.0</version>
                </signature>
              </configuration>
              <executions>
                <execution>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        public static final int SMB2_FLAGS_REPLAY_OPERATION = 0x20000000;
    
        private int command;
        private int flags;
        private int length, headerStart, wordCount, byteCount;
    
        private final byte[] signature = new byte[16];
        private Smb2SigningDigest digest = null;
    
        private final Configuration config;
    
        private int creditCharge;
        private int status;
        private int credit;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/ServerResponseValidator.java

            // Check SMB1 signature
            if (protocolId == 0x424D53FF) { // 0xFF 'S' 'M' 'B'
                // SMB1
                if (structureSize < 32 || structureSize > 65535) {
                    failedValidations.incrementAndGet();
                    throw new SmbException("Invalid SMB1 header size: " + structureSize);
                }
            }
            // Check SMB2/3 signature
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeBasedTable.java

      }
    
      /**
       * Creates an empty {@code TreeBasedTable} that uses the natural orderings of both row and column
       * keys.
       *
       * <p>The method signature specifies {@code R extends Comparable} with a raw {@link Comparable},
       * instead of {@code R extends Comparable<? super R>}, and the same for {@code C}. That's
       * necessary to support classes defined without generics.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

            }
    
            @Test
            @DisplayName("Constructor with invalid signature should throw IOException")
            void testConstructor_ByteArray_InvalidSignature() {
                // Given
                byte[] invalidSignature = new byte[100];
                Arrays.fill(invalidSignature, (byte) 0xFF); // Fill with non-NTLMSSP signature
    
                // When & Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/AbstractListMultimap.java

      @Override
      public boolean put(@ParametricNullness K key, @ParametricNullness V value) {
        return super.put(key, value);
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>Though the method signature doesn't say so explicitly, the returned map has {@link List}
       * values.
       */
      @Override
      public Map<K, Collection<V>> asMap() {
        return super.asMap();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 15:07:59 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            assertEquals("fess.search_engine.http_address", Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    
        public void test_static_method_signature() {
            // Verify method signature is correct
            try {
                java.lang.reflect.Method method = SystemUtil.class.getMethod("getSearchEngineHttpAddress");
    
                // Check return type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top