Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Messages (0.09 sec)

  1. releasenotes/notes/47269.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
      - 47269
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 246 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    			result, err := runAnalyzer(sa)
    			if err != nil {
    				t.Fatalf("Error running analysis on testcase %s: %v", tc.name, err)
    			}
    
    			g.Expect(extractFields(result.Messages)).To(ConsistOf(tc.expected), "%v", prettyPrintMessages(result.Messages))
    		})
    	}
    }
    
    func setupMultiClusterEnvironmentForCase(tc mcTestCase, cr local.CollectionReporterFn) (*local.IstiodAnalyzer, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/content/content.go

    		log.Infof("Executed analyzers:")
    		for _, a := range result.ExecutedAnalyzers {
    			log.Infof("\t: %s", a)
    		}
    	}
    
    	// Get messages for output
    	outputMessages := result.Messages.SetDocRef("istioctl-analyze").FilterOutLowerThan(diag.Info)
    
    	// Print all the messages to stdout in the specified format
    	output, err := formatting.Print(outputMessages, formatting.LogFormat, false)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. istioctl/cmd/options_test.go

          --log_caller: Comma-separated list of scopes for which to include caller information, scopes can be any of \[.*\]
          --log_output_level: Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>,... where scope can be one of \[.*\] and level can be one of \[.*\]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 14 02:38:54 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. releasenotes/notes/43483.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 36860
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 21 16:58:40 UTC 2023
    - 201 bytes
    - Viewed (0)
  6. releasenotes/notes/43652.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 219 bytes
    - Viewed (0)
  7. pkg/config/analysis/local/analyze_test.go

    	sa.AddDefaultResources()
    	g.Expect(sa.stores).To(HaveLen(0))
    }
    
    func TestEmptyContext(t *testing.T) {
    	fakeType := diag.NewMessageType(diag.Warning, "IST9999", "Fake message for testing")
    
    	ctx := istiodContext{
    		messages: map[string]*diag.Messages{
    			"full": {
    				diag.NewMessage(fakeType, nil),
    			},
    			"empty": {},
    		},
    	}
    	ctx.GetMessages()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. 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)
  9. tests/integration/pilot/analysis/analysis_test.go

    		t.Fatalf("unexpected test failure: can't get virtualservice: %v", err)
    	}
    
    	status := &x.Status
    
    	if hasError {
    		if len(status.ValidationMessages) < 1 {
    			return fmt.Errorf("expected validation messages to exist, but got nothing")
    		}
    		found := false
    		for _, validation := range status.ValidationMessages {
    			if validation.Type.Code == msg.ReferencedResourceNotFound.Code() {
    				found = true
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/structured/structured.go

    )
    
    // Error represents structured error information, for optional use in scope.X or log.X calls.
    // It is not the same thing as structured logging. The "structured" here means adding a structure to user facing
    // messages.
    // See https://docs.google.com/document/d/1vdYswLQuYnrLA2fDjk6OoZx2flBABa18UjCGTn8gsg8/ for additional information.
    type Error struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top