Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 562 for handlers (0.06 sec)

  1. internal/grid/handlers.go

    	HandlerCheckParts3
    
    	// Add more above here ^^^
    	// If all handlers are used, the type of Handler can be changed.
    	// Handlers have no versioning, so non-compatible handler changes must result in new IDs.
    	handlerTest
    	handlerTest2
    	handlerLast
    )
    
    // handlerPrefixes are prefixes for handler IDs used for tracing.
    // If a handler is not listed here, it will be traced with "grid" prefix.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 27.7K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package handlers
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sort"
    	"strings"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-10-09 16:05
    - 6.3K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	"github.com/minio/minio/internal/config/dns"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/etag"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/handlers"
    	"github.com/minio/minio/internal/hash"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-03 06:45
    - 63.6K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		Object:       oi,
    		ReqParams:    extractReqParams(r),
    		RespElements: extractRespElements(w),
    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    }
    
    // RestoreObjectHandler - POST restore object handler.
    // ----------
    func (api objectAPIHandlers) PostRestoreObjectHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PostRestoreObject")
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-03 14:55
    - 118.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/dsync"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/minio/internal/handlers"
    	xhttp "github.com/minio/minio/internal/http"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-01 15:21
    - 99.6K bytes
    - Viewed (0)
  6. cmd/tier-handlers.go

    Anis Eleuch <******@****.***> 1726173845 +0100
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-12 20:44
    - 7.5K bytes
    - Viewed (0)
  7. cmd/generic-handlers.go

    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    // criticalErrorHandler handles panics and fatal errors by
    // `panic(logger.ErrCritical)` as done by `logger.CriticalIf`.
    //
    // It should be always the first / highest HTTP handler.
    func setCriticalErrorHandler(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		defer func() {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-01-27 16:42
    - 20.7K bytes
    - Viewed (1)
  8. cmd/sts-handlers.go

    // stsAPIHandlers implements and provides http handlers for AWS STS API.
    type stsAPIHandlers struct{}
    
    // registerSTSRouter - registers AWS STS compatible APIs.
    func registerSTSRouter(router *mux.Router) {
    	// Initialize STS.
    	sts := &stsAPIHandlers{}
    
    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    	// Assume roles with no JWT, handles AssumeRole.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-31 18:51
    - 35.2K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    jiuker <******@****.***> 1745813978 +0800
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-28 04:19
    - 63.5K bytes
    - Viewed (0)
  10. cmd/kms-handlers.go

    Mark Theunissen <******@****.***> 1723963383 +1000
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-08-18 06:43
    - 10.1K bytes
    - Viewed (0)
Back to top