Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for handle1_ (0.32 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. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{Sinks: {6}}}
    }
    
    // -----
    
    // Tests that two resources allocated with identical non-empty `shared_name`
    // attributes are dependent. That means, `%handle1` and `%handle2` point to
    // the same resources and the second `InitializeTableV2` op depends on the
    // first one.
    func.func @resources_allocated_with_same_nonempty_shared_name(
      // expected-remark@above {{ID: 9}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	handler := genericapifilters.WithAudit(mux, auditSink, fakeRuleEvaluator, longRunningCheck)
    	handler = genericapifilters.WithRequestDeadline(handler, auditSink, fakeRuleEvaluator, longRunningCheck, codecs, 60*time.Second)
    	handler = genericapifilters.WithRequestInfo(handler, testRequestInfoResolver())
    	handler = genericapifilters.WithAuditInit(handler)
    
    	return &defaultAPIServer{handler, container}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top