Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for handle1_ (0.14 sec)

  1. 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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. 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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    		obj := &autoscalingv2.HorizontalPodAutoscalerList{
    			Items: hpaList[:],
    		}
    		return true, obj, nil
    	})
    
    	testClient.AddReactor("update", "horizontalpodautoscalers", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    		closec: make(chan bool, 1),
    	}
    	handled := 0
    	handler := HandlerFunc(func(rw ResponseWriter, r *Request) {
    		handled++
    		rw.Header().Set("Content-Type", "text/html; charset=utf-8")
    		rw.Write(res)
    	})
    	ln := &oneConnListener{conn: conn}
    	go Serve(ln, handler)
    	<-conn.closec
    	if b.N != handled {
    		b.Errorf("b.N=%d but handled %d", b.N, handled)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		if !kl.syncLoopIteration(ctx, updates, handler, syncTicker.C, housekeepingTicker.C, plegCh) {
    			break
    		}
    		kl.syncLoopMonitor.Store(kl.clock.Now())
    	}
    }
    
    // syncLoopIteration reads from various channels and dispatches pods to the
    // given handler.
    //
    // Arguments:
    // 1.  configCh:       a channel to read config events from
    // 2.  handler:        the SyncHandler to dispatch pods to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                Some examples are {@code jar}, {@code war}, {@code ejb-client}
                and {@code test-jar}: see <a href="../maven-core/artifact-handlers.html">default
                artifact handlers</a> for a list. New types can be defined by extensions, so this is not a complete list.
                ]]>
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. fastapi/applications.py

            ] = None,
            on_startup: Annotated[
                Optional[Sequence[Callable[[], Any]]],
                Doc(
                    """
                    A list of startup event handler functions.
    
                    You should instead use the `lifespan` handlers.
    
                    Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/).
                    """
                ),
            ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		makeTestEndpointSlice("ns4", "ep4", 1, complexSubset8),
    		nil,
    	}
    
    	testCases := []struct {
    		// previousEndpoints and currentEndpoints are used to call appropriate
    		// handlers OnEndpoints* (based on whether corresponding values are nil
    		// or non-nil) and must be of equal length.
    		name                           string
    		previousEndpoints              []*discovery.EndpointSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    			// See issue 57952.
    			ctxt.Diag("mask register must be specified for .Z instructions: %v", p)
    		} else if k.Reg == REG_K0 {
    			// The mask register must not be K0. That restriction is already
    			// handled by the Yknot0 restriction in the opcode tables, so we
    			// won't ever reach here. But put something sensible here just in case.
    			ctxt.Diag("mask register must not be K0 for .Z instructions: %v", p)
    		}
    		evexZ = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top