Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  1. TESTING.asciidoc

    property `tests.bwc.git_fetch_latest` to `false` and the BWC builds will skip
    fetching the latest from the remote.
    
    == Testing in FIPS 140-2 mode
    
    We have a CI matrix job that periodically runs all our tests with the JVM configured
    to be FIPS 140-2 compliant with the use of the BouncyCastle FIPS approved Security Provider.
    FIPS 140-2 imposes certain requirements that affect how our tests should be set up or what
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K 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. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

     */
    public class ElasticsearchTestBasePlugin implements Plugin<Project> {
    
        @Override
        public void apply(Project project) {
            project.getPluginManager().apply(GradleTestPolicySetupPlugin.class);
            // for fips mode check
            project.getRootProject().getPluginManager().apply(GlobalBuildInfoPlugin.class);
            // Default test task should run only unit tests
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

                params.setIsCi(System.getenv("JENKINS_URL") != null);
                params.setDefaultParallel(ParallelDetector.findDefaultParallel(project));
                params.setInFipsJvm(Util.getBooleanProperty("tests.fips.enabled", false));
                params.setIsSnapshotBuild(Util.getBooleanProperty("build.snapshot", true));
                params.setBwcVersions(providers.provider(() -> resolveBwcVersions(rootDir)));
            });
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  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. cmd/global-heal.go

    					return
    				}
    			}
    
    			// erasureObjects layer needs object names to be encoded
    			encodedEntryName := encodeDirObject(entry.name)
    
    			var result healEntryResult
    			fivs, err := entry.fileInfoVersions(bucket)
    			if err != nil {
    				res, err := er.HealObject(ctx, bucket, encodedEntryName, "",
    					madmin.HealOpts{
    						ScanMode: scanMode,
    						Remove:   healDeleteDangling,
    					})
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Apr 04 13:49:12 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  7. docs/en/docs/advanced/behind-a-proxy.md

    ///
    
    ### Enable Proxy Forwarded Headers { #enable-proxy-forwarded-headers }
    
    You can start FastAPI CLI with the *CLI Option* `--forwarded-allow-ips` and pass the IP addresses that should be trusted to read those forwarded headers.
    
    If you set it to `--forwarded-allow-ips="*"` it would trust all the incoming IPs.
    
    If your **server** is behind a trusted **proxy** and only the proxy talks to it, this would make it accept whatever is the IP of that **proxy**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  8. docs/es/docs/advanced/behind-a-proxy.md

    ### Habilitar headers reenviados por el Proxy { #enable-proxy-forwarded-headers }
    
    Puedes iniciar FastAPI CLI con la *Opción de CLI* `--forwarded-allow-ips` y pasar las direcciones IP que deberían ser confiables para leer esos headers reenviados.
    
    Si lo estableces a `--forwarded-allow-ips="*"`, confiaría en todas las IPs entrantes.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  9. docs/ru/docs/advanced/behind-a-proxy.md

    ///
    
    ### Включить пересылаемые заголовки прокси { #enable-proxy-forwarded-headers }
    
    Вы можете запустить FastAPI CLI с опцией командной строки `--forwarded-allow-ips` и передать IP‑адреса, которым следует доверять при чтении этих пересылаемых заголовков.
    
    Если указать `--forwarded-allow-ips="*"`, приложение будет доверять всем входящим IP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  10. docs/uk/docs/advanced/behind-a-proxy.md

    ///
    
    ### Увімкнути направлені заголовки представника { #enable-proxy-forwarded-headers }
    
    Ви можете запустити FastAPI CLI з *опцією CLI* `--forwarded-allow-ips` і передати IP-адреси, яким слід довіряти для читання цих направлених заголовків.
    
    Якщо ви встановите `--forwarded-allow-ips="*"`, це означатиме довіру до всіх вхідних IP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 23.1K bytes
    - Click Count (0)
Back to Top