Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 708 for handle1_ (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SecuredHandlerCollection.groovy

        private Handler delegate = handlers
    
        SecuredHandlerCollection() {
        }
    
        HandlerCollection getHandlers() {
            handlers
        }
    
        void reset() {
            realm = null
            securityHandler?.stop()
            securityHandler = null
            handlers.stop()
            delegate = handlers
            handlers.setHandlers(new Handler[0])
            handlers.start()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. istioctl/pkg/cli/context.go

    	if err != nil {
    		return "", "", err
    	}
    	return handlers.InferPodInfoFromTypedResource(name, i.NamespaceOrDefault(namespace), MakeKubeFactory(client))
    }
    
    func (i *instance) InferPodsFromTypedResource(name, namespace string) ([]string, string, error) {
    	client, err := i.CLIClient()
    	if err != nil {
    		return nil, "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    		if err != nil {
    			return nil, err
    		}
    		if plugin != nil {
    			if decorator != nil {
    				handlers = append(handlers, decorator.Decorate(plugin, pluginName))
    			} else {
    				handlers = append(handlers, plugin)
    			}
    
    			if _, ok := plugin.(MutationInterface); ok {
    				mutationPlugins = append(mutationPlugins, pluginName)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/cluster.go

    }
    
    // Run starts the cluster's informers and waits for caches to sync. Once caches are synced, we mark the cluster synced.
    // This should be called after each of the handlers have registered informers, and should be run in a goroutine.
    func (c *Cluster) Run(mesh mesh.Watcher, handlers []handler, action ACTION) {
    	if features.RemoteClusterTimeout > 0 {
    		time.AfterFunc(features.RemoteClusterTimeout, func() {
    			if !c.initialSync.Load() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md

        opt raise
            dep -->> handler: Raise HTTPException
            handler -->> client: HTTP error response
            dep -->> dep: Raise other exception
        end
        dep ->> operation: Run dependency, e.g. DB session
        opt raise
            operation -->> dep: Raise HTTPException
            dep -->> handler: Auto forward exception
            handler -->> client: HTTP error response
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 04:21:06 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/ipamhandle-crd.yaml

                properties:
                  block:
                    additionalProperties:
                      type: integer
                    type: object
                  handleID:
                    type: string
                required:
                - block
                - handleID
                type: object
            type: object
        served: true
        storage: true
    status:
      acceptedNames:
        kind: ""
        plural: ""
      conditions: []
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. src/runtime/cgo/sigaction.go

    // any sanitizer interceptors. This supports using the sanitizers
    // with Go programs. The thread and memory sanitizers only apply to
    // C/C++ code; this permits that code to see the Go runtime's existing signal
    // handlers when registering new signal handlers for the process.
    
    //go:cgo_import_static x_cgo_sigaction
    //go:linkname x_cgo_sigaction x_cgo_sigaction
    //go:linkname _cgo_sigaction _cgo_sigaction
    var x_cgo_sigaction byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 877 bytes
    - Viewed (0)
  8. src/runtime/testdata/testwinlib/main.go

    	C.bridgeCallback(callback)
    }
    
    // Dummy is called by the C code before registering the exception/continue handlers simulating a debugger.
    // This makes sure that the Go runtime's lastcontinuehandler is reached before the C continue handler and thus,
    // validate that it does not crash the program before another handler could take an action.
    // The idea here is to reproduce what happens when you attach a debugger to a running program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    			handleRootHealth(name, firstTimeHealthy, checks...)))
    	for _, check := range checks {
    		mux.Handle(fmt.Sprintf("%s/%v", path, check.Name()), adaptCheckToHandler(check.Check))
    	}
    }
    
    // mux is an interface describing the methods InstallHandler requires.
    type mux interface {
    	Handle(pattern string, handler http.Handler)
    }
    
    // healthzCheck implements HealthChecker on an arbitrary name and check function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    	"k8s.io/apiserver/pkg/authentication/authenticator"
    )
    
    // unionAuthRequestHandler authenticates requests using a chain of authenticator.Requests
    type unionAuthRequestHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Request
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top