Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for Messages (0.12 sec)

  1. pkg/log/uds_test.go

    		json.Unmarshal([]byte(srv.messages[0]), &got[0])
    		json.Unmarshal([]byte(srv.messages[1]), &got[1])
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("received log messages, got %v want %v", got, want)
    		}
    	}
    
    	{
    		t.Log("test sending log with specified time")
    
    		// Clean up all the mssages, and log again. Check that buffer is cleaned up properly.
    		srv.messages = make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    	}
    
    	var messages diag.Messages = make([]diag.Message, 0)
    	if minor <= 21 {
    		// ENHANCED_RESOURCE_SCOPING
    		if err := checkPilot(cli, ctx.IstioNamespace(), &messages); err != nil {
    			return nil, err
    		}
    	}
    	if minor <= 20 {
    		// VERIFY_CERTIFICATE_AT_CLIENT and ENABLE_AUTO_SNI
    		if err := checkDestinationRuleTLS(cli, &messages); err != nil {
    			return nil, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/generate.main.go

    type messages struct {
    	Messages []message `json:"messages"`
    }
    
    type message struct {
    	Name        string `json:"name"`
    	Code        string `json:"code"`
    	Level       string `json:"level"`
    	Description string `json:"description"`
    	Template    string `json:"template"`
    	Url         string `json:"url"`
    	Args        []arg  `json:"args"`
    }
    
    type arg struct {
    	Name string `json:"name"`
    	Type string `json:"type"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/local.go

    	meshConfigMapName  = "istio"
    	meshNetworksMapKey = "meshNetworks"
    )
    
    // AnalysisResult represents the returnable results of an analysis execution
    type AnalysisResult struct {
    	Messages          diag.Messages
    	MappedMessages    map[string]diag.Messages
    	SkippedAnalyzers  []string
    	ExecutedAnalyzers []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 984 bytes
    - Viewed (0)
  5. pkg/log/scope.go

    func (s *Scope) WarnEnabled() bool {
    	return s.GetOutputLevel() >= WarnLevel
    }
    
    // Info outputs a message at info level.
    func (s *Scope) Info(msg any) {
    	if s.GetOutputLevel() >= InfoLevel {
    		s.emit(zapcore.InfoLevel, fmt.Sprint(msg))
    	}
    }
    
    // Infof uses fmt.Sprintf to construct and log a message at info level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. 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)
  7. releasenotes/notes/45644.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 04:04:36 UTC 2023
    - 171 bytes
    - Viewed (0)
  8. releasenotes/notes/dedupe-mismatch-output.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 14:28:49 UTC 2023
    - 247 bytes
    - Viewed (0)
  9. pkg/log/default.go

    	return registerScope(DefaultScopeName, "Unscoped logging messages.", 1),
    		registerScope(GrpcScopeName, "logs from gRPC", 3)
    }
    
    var defaultScope, grpcScope = registerDefaultScopes()
    
    // Fatal outputs a message at fatal level.
    func Fatal(fields any) {
    	defaultScope.Fatal(fields)
    }
    
    // Fatalf uses fmt.Sprintf to construct and log a message at fatal level.
    func Fatalf(format string, args ...any) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    		notReady = notReadyObjects
    		debugInfo = debugInfoObjects
    		return isReady, err
    	})
    
    	messages := []string{}
    	for _, id := range notReady {
    		debug, f := debugInfo[id]
    		if f {
    			messages = append(messages, fmt.Sprintf("  %s (%s)", id, debug))
    		} else {
    			messages = append(messages, fmt.Sprintf("  %s", debug))
    		}
    	}
    	if errPoll != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top