Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 61 for fips (0.14 seconds)

  1. lib/fips140/fips140.sum

    # SHA256 checksums of snapshot zip files in this directory.
    # These checksums are included in the FIPS security policy
    # (validation instructions sent to the lab) and MUST NOT CHANGE.
    # That is, the zip files themselves must not change.
    #
    # It is okay to add new zip files to the list, and it is okay to
    # remove zip files from the list when they are removed from
    # this directory. To update this file:
    #
    #	go test cmd/go/internal/fips140 -update
    #
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 611 bytes
    - Click Count (0)
  2. doc/godebug.md

    Cryptographic Module operates in FIPS 140-3 mode.
    The possible values are:
    - "off": no special support for FIPS 140-3 mode. This is the default.
    - "on": the Go Cryptographic Module operates in FIPS 140-3 mode.
    - "only": like "on", but cryptographic algorithms not approved by
      FIPS 140-3 return an error or panic.
    For more information, see [FIPS 140-3 Compliance](/doc/security/fips140).
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 15:49:10 GMT 2026
    - 26K bytes
    - Click Count (0)
  3. lib/fips140/v1.26.0.zip

    func() error) { if strings.ContainsAny(name, ",#=:") { panic("fips: invalid self-test name: " + name) } if !Enabled { return } err := f() if name == failfipscast { err = errors.New("simulated CAST failure") } if err != nil { fatal("FIPS 140-3 self-test failed: " + name + ": " + err.Error()) panic("unreachable") } if debug { println("FIPS 140-3 self-test passed:", name) } } // PCT runs the named Pairwise Consistency Test (if operated in FIPS mode) and // aborts the program (stopping the module input/output...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    aign\u000faffinitylottery\u0004glug\u0003lug\u0004lugs\u000braffleentry\rweeklylottery\u0003phx\u0009ann-arbor\u0003cog\u0003dst\u0005eaton\u0009washtenaw\u0003mel\nlambda-url\u000ftransfer-webapp\u0014transfer-webapp-fips\u0008notebook\u0008labeling\rnotebook-fips\u000bstudio-fips\u0004alp1\u0003eur\u0008fr-par-1\u0008fr-par-2\u0008nl-ams-1\u0007cockpit\u0003ddl\u0004dtwh\u0003fnc\u0003ifr\u0004kafk\u0004mgdb\u0003rdb\ns3-website\u0004scbl\u0003whm\ncn-north-1\u000ecn-northwest-1\u0002eb\naws-c...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
  5. src/cmd/asm/internal/arch/arch.go

    	// Note that there is no list of names as there is for x86.
    	for i := mips.REG_R0; i <= mips.REG_R31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    
    	for i := mips.REG_F0; i <= mips.REG_F31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_M0; i <= mips.REG_M31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_FCR0; i <= mips.REG_FCR31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 17:02:17 GMT 2026
    - 22K bytes
    - Click Count (0)
  6. build-logic/build.gradle.kts

                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    }
    
    fun readProperties(propertiesFile: File) = java.util.Properties().apply {
        propertiesFile.inputStream().use { fis -> load(fis) }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Feb 09 03:14:32 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/ObjectArrays.java

       * of the returned array is that of the specified array. If the collection fits in the specified
       * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the
       * specified array and the size of the specified collection.
       *
       * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jan 23 17:16:53 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        }
    
        @Test
        public void test_addHistoryWithBudget_multipleTurns_budgetTight() {
            // 3 turns: turn0(Q1+A1=10), turn1(Q2+A2=10), turn2(Q3+A3=10)
            // Budget=25: turn2(10) fits (remaining=15), turn1(10) fits (remaining=5), turn0(10) doesn't
            final List<LlmMessage> history = new ArrayList<>();
            history.add(LlmMessage.user("QQQQQ")); // 5
            history.add(LlmMessage.assistant("AAAAA")); // 5
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/ObjectArrays.java

       * of the returned array is that of the specified array. If the collection fits in the specified
       * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the
       * specified array and the size of the specified collection.
       *
       * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jan 23 17:16:53 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

            // Check statically configured blocked IPs
            final Set<String> blockedIpSet = ComponentUtil.getFessConfig().getRateLimitBlockedIpsAsSet();
            if (blockedIpSet.contains(ip)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("IP in static block list: ip={}", ip);
                }
                return true;
            }
    
            // Check dynamically blocked IPs (Cache handles expiration automatically)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top