Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for DOS (0.02 sec)

  1. cmd/sftp-server-driver.go

    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/pkg/sftp"
    	"golang.org/x/crypto/ssh"
    )
    
    // Maximum write offset for incoming SFTP blocks.
    // Set to 100MiB to prevent hostile DOS attacks.
    const ftpMaxWriteOffset = 100 << 20
    
    type sftpDriver struct {
    	permissions *ssh.Permissions
    	endpoint    string
    }
    
    //msgp:ignore sftpMetrics
    type sftpMetrics struct{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that considers any subsequence matching {@code pattern} to be a separator.
       * For example, {@code Splitter.on(Pattern.compile("\r?\n")).split(entireFile)} splits a string
       * into lines whether it uses DOS-style or UNIX-style line terminators.
       *
       * @param separatorPattern the pattern that determines whether a subsequence is a separator. This
       *     pattern may not match the empty string.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

                            "content": {
                                "application/json": {
    
    
    
    ...
    ```
    
    #### ¿Para qué se usa OpenAPI?
    
    El schema de OpenAPI es lo que alimenta a los dos sistemas de documentación interactiva incluidos.
    
    También hay docenas de alternativas, todas basadas en OpenAPI. Podrías añadir fácilmente cualquiera de esas alternativas a tu aplicación construida con **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/handling-errors.md

    Isso é bastante similar ao caso do HTTP status code 200 (do 200 ao 299). Esses "200" status codes significam que, de algum modo, houve sucesso na requisição.
    
    Os status codes na faixa dos 400 significam que houve um erro por parte do cliente.
    
    Você se lembra de todos aqueles erros (e piadas) a respeito do "**404 Not Found**"?
    
    ## Use o `HTTPException`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/scheduler/util/utils_test.go

    				t.Fatalf("Error calling removeNominatedNodeName: %v", err)
    			}
    
    			if actualPatchRequests != test.expectedPatchRequests {
    				t.Fatalf("Actual patch requests (%d) dos not equal expected patch requests (%d)", actualPatchRequests, test.expectedPatchRequests)
    			}
    
    			if test.expectedPatchRequests > 0 && actualPatchData != test.expectedPatchData {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// beta: v1.24
    	//
    	// Enables server-side field validation.
    	ServerSideFieldValidation featuregate.Feature = "ServerSideFieldValidation"
    
    	// owner: @enj
    	// beta: v1.29
    	//
    	// Enables http2 DOS mitigations for unauthenticated clients.
    	//
    	// Some known reasons to disable these mitigations:
    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/html/template/js.go

    			args[i] = indirectToJSONMarshaler(arg)
    		}
    		a = fmt.Sprint(args...)
    	}
    	// TODO: detect cycles before calling Marshal which loops infinitely on
    	// cyclic data. This may be an unacceptable DoS risk.
    	b, err := json.Marshal(a)
    	if err != nil {
    		// While the standard JSON marshaler does not include user controlled
    		// information in the error message, if a type has a MarshalJSON method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	}
    	return subjectAccessReview, statusCode, err
    }
    
    // shouldCache determines whether it is safe to cache the given request attributes. If the
    // requester-controlled attributes are too large, this may be a DoS attempt, so we skip the cache.
    func shouldCache(attr authorizer.Attributes) bool {
    	controlledAttrSize := int64(len(attr.GetNamespace())) +
    		int64(len(attr.GetVerb())) +
    		int64(len(attr.GetAPIGroup())) +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    	IMAGE_REL_BASED_HIGHLOW = 3
    	IMAGE_REL_BASED_DIR64   = 10
    )
    
    const (
    	PeMinimumTargetMajorVersion = 6
    	PeMinimumTargetMinorVersion = 1
    )
    
    // DOS stub that prints out
    // "This program cannot be run in DOS mode."
    // See IMAGE_DOS_HEADER in the Windows SDK for the format of the header used here.
    var dosstub = []uint8{
    	0x4d,
    	0x5a,
    	0x90,
    	0x00,
    	0x03,
    	0x00,
    	0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    		b.r.Discard(2)
    		return nil
    	}
    	if len(buf) < 2 {
    		return errTrailerEOF
    	}
    	if err != nil {
    		return err
    	}
    
    	// Make sure there's a header terminator coming up, to prevent
    	// a DoS with an unbounded size Trailer. It's not easy to
    	// slip in a LimitReader here, as textproto.NewReader requires
    	// a concrete *bufio.Reader. Also, we can't get all the way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top