Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 335 for allow (0.02 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

      The scheduling hints allow the scheduler to retry scheduling a Pod that was previously rejected by the CSILimit plugin if a deleted pod has a PVC from the same driver. ([#121508](https://github.com/kubernetes/kubernetes/pull/121508), [@utam0k](https://github.com/utam0k)) [SIG Scheduling and Storage]
    - Kube-scheduler implements scheduling hints for the InterPodAffinity plugin.
      The scheduling hints allow the scheduler to retry scheduling a Pod
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.21.md

      - [Changelog since v1.21.4](#changelog-since-v1214)
      - [Important Security Information](#important-security-information)
        - [CVE-2021-25741: Symlink Exchange Can Allow Host Filesystem Access](#cve-2021-25741-symlink-exchange-can-allow-host-filesystem-access)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-6)
        - [Bug or Regression](#bug-or-regression-8)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Base class for tests for emulated {@link AbstractFuture} that allow subclasses to swap in a
     * different "source Future" for {@link AbstractFuture#setFuture} calls.
     */
    @GwtCompatible
    @NullUnmarked
    abstract class AbstractAbstractFutureTest extends TestCase {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/PathValidator.java

        /**
         * Create path validator with custom settings
         *
         * @param maxPathLength maximum total path length
         * @param maxComponentLength maximum length for path components
         * @param allowUncPaths whether to allow UNC paths
         * @param strictMode strict validation mode
         */
        public PathValidator(int maxPathLength, int maxComponentLength, boolean allowUncPaths, boolean strictMode) {
            this.maxPathLength = maxPathLength;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/NameQueryResponseTest.java

            // Verify that the 'recordName' field in the superclass (NameServicePacket) is initialized
            Field recordNameField = NameServicePacket.class.getDeclaredField("recordName");
            recordNameField.setAccessible(true); // Allow access to protected field
            Name recordName = (Name) recordNameField.get(nameQueryResponse);
            assertNotNull(recordName, "recordName should be initialized by the constructor");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ByteSource.java

      /**
       * Opens a new buffered {@link InputStream} for reading from this source. The returned stream is
       * not required to be a {@link BufferedInputStream} in order to allow implementations to simply
       * delegate to {@link #openStream()} when the stream returned by that method does not benefit from
       * additional buffering (for example, a {@code ByteArrayInputStream}). This method returns a new,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 20 20:55:20 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean useLargeReadWrite = true;
        /** LAN Manager compatibility level for authentication */
        protected int lanmanCompatibility = 3;
        /** Whether to allow fallback to NTLM authentication */
        protected boolean allowNTLMFallback = true;
        /** Whether to use raw NTLM authentication without SPNEGO */
        protected boolean useRawNTLM = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

    * GCI: Add two GCI specific metadata pairs ([#25105](https://github.com/kubernetes/kubernetes/pull/25105), [@andyzheng0831](https://github.com/andyzheng0831))
    * Add an entry to the salt config to allow Debian jessie on GCE. ([#25123](https://github.com/kubernetes/kubernetes/pull/25123), [@jlewi](https://github.com/jlewi))
        * As with the existing Wheezy image on GCE, docker is expected to already be installed in the image.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            long currentTime = roleQueryHelper.getCurrentTime();
            assertTrue(currentTime > 0);
    
            long currentTimeMillis = System.currentTimeMillis();
            // Allow for small time difference
            assertTrue(Math.abs(currentTime - currentTimeMillis) < 1000);
        }
    
        public void test_constants() {
            assertEquals("userRoles", RoleQueryHelper.USER_ROLES);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java

                assertTrue(size > 0);
                assertEquals(testName.length + 16, size);
                assertEquals(1, testRequest.getSizeCallCount());
            }
    
            @Test
            @DisplayName("Should allow size override")
            void testSizeOverride() {
                testRequest.setEncodedSize(128);
                assertEquals(128, testRequest.size());
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top