Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 155 for Messages (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		if f {
    			switch t := v.(type) {
    			// need to do conversion for bool value defined in IstioOperator component spec.
    			case *wrappers.BoolValue:
    				v = t.Value
    			}
    			if v != d.def {
    				messages = append(messages, fmt.Sprintf("! %s is deprecated; use %s instead", firstCharsToLower(d.old), d.new))
    			}
    		}
    	}
    	for _, d := range failHardSettings {
    		v, f, _ := tpath.GetFromStructPath(iop, d.old)
    		if f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/log/options.go

    		sort.Strings(keys)
    		s := strings.Join(keys, ", ")
    
    		stringVar(&o.outputLevels, "log_output_level", o.outputLevels,
    			fmt.Sprintf("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 [%s] and level can be one of %s",
    				s, levelListString))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top