Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for HEvent (0.22 sec)

  1. pkg/apis/admissionregistration/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
    - 52.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   is interpreted as "data at least as new as the provided `resourceVersion`"
      //   and the bookmark event is send when the state is synced
      //   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   is interpreted as "data at least as new as the provided `resourceVersion`"
      //   and the bookmark event is send when the state is synced
      //   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
      //   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
      //   bookmark event is send when the state is synced at least to the moment
      //   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    		}
    
    		// queue a retry if necessary, then put the next event in the channel if any
    		p.completeWork(podUID, phaseTransition, err)
    		if start := update.Options.StartTime; !start.IsZero() {
    			metrics.PodWorkerDuration.WithLabelValues(update.Options.UpdateType.String()).Observe(metrics.SinceInSeconds(start))
    		}
    		klog.V(4).InfoS("Processing pod event done", "pod", podRef, "podUID", podUID, "updateType", update.WorkType)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top