Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Forbidden (0.12 sec)

  1. cmd/object-handlers.go

    		return
    	}
    
    	rcfg, _ := globalBucketObjectLockSys.Get(bucket)
    	if rcfg.LockEnabled && opts.DeletePrefix {
    		apiErr := toAPIError(ctx, errInvalidArgument)
    		apiErr.Description = "force-delete is forbidden on Object Locking enabled buckets"
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    	os := newObjSweeper(bucket, object).WithVersion(opts.VersionID).WithVersioning(opts.Versioned, opts.VersionSuspended)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    }
    
    // AllowInstall returns a non-nil error if this invocation of the go command is
    // allowed to install a.Target.
    //
    // The build of cmd/go running under its own test is forbidden from installing
    // to its original GOROOT. The var is exported so it can be set by TestMain.
    var AllowInstall = func(*Action) error { return nil }
    
    // cleanup removes a's object dir to keep the amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			if target.IsAIX() && rst != sym.SDYNIMPORT {
    				// It's not possible to make a loader relocation in a
    				// symbol which is not inside .data section.
    				// FIXME: It should be forbidden to have R_ADDR from a
    				// symbol which isn't in .data. However, as .text has the
    				// same address once loaded, this is possible.
    				if ldr.SymSect(s).Seg == &Segdata {
    					Xcoffadddynrel(target, ldr, syms, s, r, ri)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // written in the trailers at the end of the response.
    func (w *response) declareTrailer(k string) {
    	k = CanonicalHeaderKey(k)
    	if !httpguts.ValidTrailerHeader(k) {
    		// Forbidden by RFC 7230, section 4.1.2
    		return
    	}
    	w.trailers = append(w.trailers, k)
    }
    
    // requestTooLarge is called by maxBytesReader when too much input has
    // been read from the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 3.
    		// Setting Invalid AccessKey to force signature check inside the handler to fail.
    		// Should return HTTP response status 403 forbidden.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			accessKey:  "Invalid-AccessKey",
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusForbidden,
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top