Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Messages (0.1 sec)

  1. cni/pkg/log/uds.go

    		return
    	}
    	messages := make([]cniLog, 0, len(cniLogs))
    	for _, l := range cniLogs {
    		msg, ok := parseCniLog(l)
    		if !ok {
    			continue
    		}
    		messages = append(messages, msg)
    	}
    	// Lock log message printing to prevent log messages from different CNI
    	// processes interleave.
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	for _, m := range messages {
    		logger := pluginLog
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    	istiolog "istio.io/istio/pkg/log"
    )
    
    type httpServerErrorLogWriter struct{}
    
    // Webhook http.Server.ErrorLog handler specifically to filter
    // http: TLS handshake error from 127.0.0.1:<PORT>: EOF
    // messages that occur when clients send RST while TLS handshake is still in progress.
    // httpsReadyClient can trigger this periodically when multiple concurrent probes are hitting this endpoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. cni/pkg/log/uds_test.go

    			cniLog{
    				Level:     "info",
    				Time:      *wantT,
    				Msg:       "my message",
    				Arbitrary: nil,
    			},
    		},
    		{
    			"with keys",
    			`{"level":"info","time":"2020-01-01T00:00:00.356374Z","msg":"my message","key":"string value","bar":2}`,
    			cniLog{
    				Level: "info",
    				Time:  *wantT,
    				Msg:   "my message",
    				Arbitrary: map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/deltatest.go

    			}
    		}
    	}
    }
    
    func applyDelta(message model.Resources, resp *discovery.DeltaDiscoveryResponse) model.Resources {
    	deleted := sets.New(resp.RemovedResources...)
    	byName := map[string]*discovery.Resource{}
    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top