Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for protections (0.31 sec)

  1. src/crypto/rsa/pkcs1v15.go

    // function. Using at least a 16-byte key will protect against this attack.
    //
    // This method implements protections against Bleichenbacher chosen ciphertext
    // attacks [0] described in RFC 3218 Section 2.3.2 [1]. While these protections
    // make a Bleichenbacher attack significantly more difficult, the protections
    // are only effective if the rest of the protocol which uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_config.json

            "Compliance-fips*": "No FIPS",
            "*DTLS*": "No DTLS",
            "SendEmptyRecords*": "crypto/tls doesn't implement spam protections",
            "SendWarningAlerts*": "crypto/tls doesn't implement spam protections",
            "TooManyKeyUpdates": "crypto/tls doesn't implement spam protections (TODO: I think?)",
            "KyberNotEnabledByDefaultInClients": "crypto/tls intentionally enables it",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/runtime/security_test.go

    	// the program to "nobody" and set u+s on it. We execute the program, only
    	// passing it two files, for stdin and stdout, and passing
    	// GOTRACEBACK=system in the env.
    	//
    	// We expect that the program will trigger the SUID protections, resetting
    	// the value of GOTRACEBACK, and opening the missing stderr descriptor, such
    	// that the program prints "GOTRACEBACK=none" to stdout, and nothing gets
    	// written to the file pointed at by TEST_OUTPUT.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. cmd/generic-handlers.go

    // addCustomHeadersMiddleware adds various HTTP(S) response headers.
    // Security Headers enable various security protections behaviors in the client's browser.
    func addCustomHeadersMiddleware(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		header := w.Header()
    		header.Set("X-XSS-Protection", "1; mode=block")                                // Prevents against XSS attacks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery.go

    		}
    	}
    	if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    		// This is a bit like clearing EDS cache on EndpointShard update. Because Address
    		// types are fetched dynamically, they are not part of the same protections, so we need to clear
    		// the cache.
    		s.Cache.ClearAll()
    	}
    	inboundConfigUpdates.Increment()
    	s.InboundUpdates.Inc()
    	s.pushChannel <- req
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (1)
  6. src/runtime/extern.go

    	If the line ends with "(forced)", this GC was forced by a
    	runtime.GC() call.
    
    	harddecommit: setting harddecommit=1 causes memory that is returned to the OS to
    	also have protections removed on it. This is the only mode of operation on Windows,
    	but is helpful in debugging scavenger-related issues on other platforms. Currently,
    	only supported on Linux.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ChainingModelProjection.java

        private final Iterable<? extends ModelProjection> projections;
    
        public ChainingModelProjection(Iterable<? extends ModelProjection> projections) {
            this.projections = projections;
        }
    
        @Override
        public <T> boolean canBeViewedAs(ModelType<T> type) {
            for (ModelProjection projection : projections) {
                if (projection.canBeViewedAs(type)) {
                    return true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/AddProjectionsAction.java

        private final Iterable<ModelProjection> projections;
    
        private AddProjectionsAction(ModelReference<T> subject, ModelRuleDescriptor descriptor, Iterable<ModelProjection> projections) {
            super(subject, descriptor);
            this.projections = projections;
        }
    
        public static <T> AddProjectionsAction<T> of(ModelReference<T> subject, ModelRuleDescriptor descriptor, ModelProjection... projections) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

        @Override
        public void addProjection(ModelProjection projection) {
            if (isAtLeast(Discovered)) {
                throw new IllegalStateException(String.format("Cannot add projections to '%s' as it is already in state %s.", getPath(), state));
            }
            if (projections == null) {
                projections = new ArrayList<>();
            }
            projections.add(projection);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                this.actions.putAll(actions);
                return this;
            }
    
            public Builder withProjection(ModelProjection projection) {
                projections.add(projection);
                return this;
            }
    
            public Builder hidden(boolean flag) {
                this.hidden = flag;
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top