Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for confirmed (0.25 sec)

  1. src/test/java/jcifs/pac/kerberos/KerberosConstantsTest.java

         */
        @Test
        void testConstants() {
            // A simple assertion to verify that some of the constants have the expected values.
            // This confirms that the class is on the classpath and its fields are accessible.
            assertEquals("1.2.840.113554.1.2.2", KerberosConstants.KERBEROS_OID, "KERBEROS_OID should have the correct value.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_fr.properties

    labels.kuromojiFile=Fichier Kuromoji
    labels.elevateWordFile=Fichier de mots à élever
    labels.badWordFile=Fichier de mots incorrects
    labels.urlExpr=Condition
    labels.boostExpr=Expression de boost
    labels.confirmPassword=Confirmer
    labels.crawler=Robot d'exploration
    labels.crudMode=Mode
    labels.errorCountMax=Nombre d'erreurs maximum
    labels.errorCountMin=Nombre d'erreurs minimum
    labels.facet=Facette
    labels.geo=Géo
    labels.groups=Groupes
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/ServerTruncatesRequestTest.kt

        expectedEvents += "ResponseBodyEnd"
        expectedEvents += "ConnectionReleased"
        expectedEvents += "CallEnd"
        assertThat(listener.recordedEventTypes()).isEqualTo(expectedEvents)
    
        // Confirm that the connection pool was not corrupted by making another call.
        makeSimpleCall()
      }
    
      /**
       * If the server returns a full response, it doesn't really matter if the HTTP/2 stream is reset.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/privileged.yml

      - type: checkboxes
        id: privileged
        attributes:
          label: Privileged issue
          description: Confirm that you are allowed to create an issue here.
          options:
            - label: I'm @tiangolo or he asked me directly to create an issue here.
              required: true
      - type: textarea
        id: content
        attributes:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 888 bytes
    - Viewed (1)
  5. src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java

     */
    package jcifs.internal.smb2;
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Echo response message.
     *
     * This response confirms that the server is still active
     * and the connection is working properly.
     *
     * @author mbechler
     */
    public class Smb2EchoResponse extends ServerMessageBlock2Response {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbTreeHandleImplTest.java

            verify(treeConnection).getSession();
        }
    
        @Test
        @DisplayName("ensureDFSResolved forwards to tree connection with locator")
        void ensureDFSResolvedDelegates() throws Exception {
            // Confirms DFS resolution is delegated with the correct locator
            // Act
            handle.ensureDFSResolved();
            // Assert & interaction verify
            verify(treeConnection).ensureDFSResolved(resourceLoc);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/login/LoginForm.java

            // Default constructor
        }
    
        /** The username. */
        @NotBlank
        public String username;
    
        /** The password. */
        @NotBlank
        public String password;
    
        /** The confirm password. */
        public String confirmPassword;
    
        /**
         * Clears the security info.
         */
        public void clearSecurityInfo() {
            password = null;
            confirmPassword = null;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java

            // Default constructor
        }
    
        /** The old password. */
        @NotBlank
        public String oldPassword;
    
        /** The new password. */
        @NotBlank
        public String newPassword;
    
        /** The confirm new password. */
        @NotBlank
        public String confirmNewPassword;
    
        /**
         * Clears security information.
         */
        public void clearSecurityInfo() {
            oldPassword = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/io/Smb2FlushResponse.java

    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 Flush response message.
     *
     * This response confirms that buffered data has been
     * successfully flushed to the storage device.
     *
     * @author mbechler
     */
    public class Smb2FlushResponse extends ServerMessageBlock2Response {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/platform/PlatformTest.kt

      @Test
      fun testToStringIsClassname() {
        assertThat(Platform().toString()).isEqualTo("Platform")
      }
    
      @Test
      fun testNotAndroid() {
        platform.assumeNotAndroid()
    
        // This is tautological so just confirms that it runs.
        assertThat(isAndroid).isEqualTo(false)
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top