Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for HEvent (3.31 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    	backendURL, err := url.Parse(backend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var (
    		mu  sync.Mutex
    		log []string
    	)
    	addLog := func(event string) {
    		mu.Lock()
    		defer mu.Unlock()
    		log = append(log, event)
    	}
    	rp := NewSingleHostReverseProxy(backendURL)
    	const size = 1234
    	rp.BufferPool = bufferPool{
    		get: func() []byte {
    			addLog("getBuf")
    			return make([]byte, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		proxier.logger.Error(nil, "Received a watch event for a node that doesn't match the current node",
    			"eventNode", node.Name, "currentNode", proxier.hostname)
    		return
    	}
    
    	proxier.mu.Lock()
    	proxier.nodeLabels = nil
    	proxier.needFullSync = true
    	proxier.mu.Unlock()
    
    	proxier.Sync()
    }
    
    // OnNodeSynced is called once all the initial event handlers were
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenEvent(desiredAccess uint32, inheritHandle bool, name *uint16) (handle Handle, err error) = kernel32.OpenEventW
    //sys	SetEvent(event Handle) (err error) = kernel32.SetEvent
    //sys	ResetEvent(event Handle) (err error) = kernel32.ResetEvent
    //sys	PulseEvent(event Handle) (err error) = kernel32.PulseEvent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// both for allowed or denied admission responses.
    	//
    	// "Audit" specifies that a validation failure is included in the published
    	// audit event for the request. The audit event will contain a
    	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
    	// with a value containing the details of the validation failures, formatted as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		store, kube, fx := setupTest(t)
    		makeIstioObject(t, store, workloadEntry)
    		// 	Other than proxy update, no event pushed when workload entry created as no service entry
    		fx.WaitOrFail(t, "proxy")
    		fx.AssertEmpty(t, 40*time.Millisecond)
    
    		makeService(t, kube, service)
    		fx.MatchOrFail(t, xdsfake.Event{Type: "eds cache", EndpointCount: 1})
    
    		instances := []EndpointResponse{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	if node.Name != proxier.hostname {
    		proxier.logger.Error(nil, "Received a watch event for a node that doesn't match the current node", "eventNode", node.Name, "currentNode", proxier.hostname)
    		return
    	}
    
    	proxier.mu.Lock()
    	proxier.nodeLabels = nil
    	proxier.mu.Unlock()
    
    	proxier.Sync()
    }
    
    // OnNodeSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    	{Value: &Book{Title: "Pride & Prejudice"}, ExpectXML: `<book>Pride &amp; Prejudice</book>`},
    	{Value: &Event{Year: -3114}, ExpectXML: `<event>-3114</event>`},
    	{Value: &Movie{Length: 13440}, ExpectXML: `<movie>13440</movie>`},
    	{Value: &Pi{Approximation: 3.14159265}, ExpectXML: `<pi>3.1415927</pi>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			[]framework.ClusterEventWithHint{
    				{Event: framework.ClusterEvent{Resource: "Pod", ActionType: framework.Update | framework.Delete}},
    				{Event: framework.ClusterEvent{Resource: "Node", ActionType: framework.Add | framework.Update}},
    			},
    		},
    		{
    			"Register events with InPlacePodVerticalScaling feature disabled",
    			false,
    			[]framework.ClusterEventWithHint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	// need to return all specific cluster events with framework.All action instead of wildcard event
    	// because the returning values are used to register event handlers.
    	// If we return the wildcard here, it won't affect the event handlers registered by the plugin
    	// and some events may not be registered in the event handlers.
    	return framework.UnrollWildCardResource()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// both for allowed or denied admission responses.
    	//
    	// "Audit" specifies that a validation failure is included in the published
    	// audit event for the request. The audit event will contain a
    	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
    	// with a value containing the details of the validation failures, formatted as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top