Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 320 for credit (0.04 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    autorisés",groupCheckedRangeStart:"Choisissez entre ",groupCheckedTooFewStart:"Vous devez faire au moins ",groupCheckedTooManyStart:"Vous ne pouvez pas faire plus de ",groupCheckedEnd:" sélection(s)",badCreditCard:"Vous avez saisi un numéro de carte de crédit invalide",badCVV:"Vous avez saisi un CVV incorrect",wrongFileDim:"Mauvaise taille de l'image, ",imageTooTall:"l'image ne peut pas être plus élevée que",imageTooWide:"l'image ne peut pas être plus large que",imageTooSmall:"l'image est trop petite"...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    pull requests directly into the master branch. Instead, once a pull request is
    ready for merging, we'll make the appropriate changes in the internal codebase
    and, when the change is synced out, give the pull request author credit for the
    commit.
    
    Contributor License Agreement
    -----------------------------
    
    Contributions to any Google project must be accompanied by a Contributor
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java

            // Header length
            SMBUtil.writeInt2(64, buffer, bufferIndex + 4);
            // Credit charge
            SMBUtil.writeInt2(1, buffer, bufferIndex + 6);
            // Status
            SMBUtil.writeInt4(0, buffer, bufferIndex + 8);
            // Command - SMB2_SET_INFO (0x0011)
            SMBUtil.writeInt2(0x0011, buffer, bufferIndex + 12);
            // Credits
            SMBUtil.writeInt2(1, buffer, bufferIndex + 14);
            // Flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java

            SMBUtil.writeInt2(64, buffer, headerStart + 4);
            // Credit charge
            SMBUtil.writeInt2(1, buffer, headerStart + 6);
            // Status
            SMBUtil.writeInt4(0, buffer, headerStart + 8);
            // Command (READ = 0x0008)
            SMBUtil.writeInt2(0x0008, buffer, headerStart + 12);
            // Credit request/response
            SMBUtil.writeInt2(1, buffer, headerStart + 14);
            // Flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java

                assertEquals(1, testRequest.getCreditCost());
            }
    
            @Test
            @DisplayName("setRequestCredits should set credit value")
            void testSetRequestCredits() {
                int credits = 10;
                testRequest.setRequestCredits(credits);
                assertEquals(credits, testRequest.getCredit());
            }
    
            @Test
            @DisplayName("setTid should set tree ID")
            void testSetTid() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

                    }
    
                    if (first) {
                        final int credit = resp.getCredit();
                        if (log.isDebugEnabled()) {
                            log.debug("Credit from intermediate " + credit);
                        }
                        this.credits.release(credit);
                    }
                    return true;
                }
            }
            return false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

        }
    
        @Test
        @DisplayName("Should return initial credits from getCredit")
        void testGetInitialCredits() throws Exception {
            // Given - set credit using reflection
            Field creditField = ServerMessageBlock2.class.getDeclaredField("credit");
            creditField.setAccessible(true);
            creditField.set(response, 128);
    
            // When
            int credits = response.getInitialCredits();
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. tests/joins_test.go

    	if len(users4) != 0 {
    		t.Errorf("should find no user when searching with unexisting credit card, but got %v", len(users4))
    	}
    
    	var users5 []User
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 15K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} is an invalid credit card number.
    constraints.EAN.message = {item} is an invalid {type} barcode.
    constraints.Email.message = {item} is not a valid email address.
    constraints.Length.message = The length of {item} must be between {min} and {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    constraints.CreditCardNumber.message = {item} is an invalid credit card number.
    constraints.EAN.message = {item} is an invalid {type} barcode.
    constraints.Email.message = {item} is not a valid email address.
    constraints.Length.message = The length of {item} must be between {min} and {max}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top