Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ist0042 (0.31 sec)

  1. pkg/config/analysis/diag/message_test.go

    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    	m.DocRef = "test-ref"
    	g.Expect(m.Unstructured(false)["documentationUrl"]).To(Equal(url.ConfigAnalysis + "/ist0042/?ref=test-ref"))
    }
    
    func TestMessage_JSON(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST0042", "Cheese type not found: %q")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	InternalError = diag.NewMessageType(diag.Error, "IST0001", "Internal error: %v")
    
    	// Deprecated defines a diag.MessageType for message "Deprecated".
    	// Description: A feature that the configuration is depending on is now deprecated.
    	Deprecated = diag.NewMessageType(diag.Warning, "IST0002", "Deprecated: %s")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/repo-inheritance/pom.xml

      <groupId>org.apache.maven.its.it0043</groupId>
      <artifactId>maven-it-it0043</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: it0043</name>
      <description>Test for repository inheritance - ensure using the same id overrides the defaults</description>
    
      <repositories>
        <repository>
          <id>central</id>
          <name>it0043</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.it0052</groupId>
      <artifactId>maven-it-it0052</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0052</name>
      <description>Test that source attachment doesn't take place when -DperformRelease=true is missing.</description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  6. releasenotes/notes/49379.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 49379
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:34 UTC 2024
    - 212 bytes
    - Viewed (0)
  7. releasenotes/notes/51278.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/51257
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 213 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/deployment/pod.go

    		return true
    	})
    }
    
    func (appUID *ApplicationUIDAnalyzer) analyzeAppUIDForPod(resource *resource.Instance, context analysis.Context) {
    	p := resource.Message.(*v1.PodSpec)
    	// Skip analyzing control plane for IST0144
    	if util.IsIstioControlPlane(resource) {
    		return
    	}
    	message := msg.NewInvalidApplicationUID(resource)
    
    	if p.SecurityContext != nil && p.SecurityContext.RunAsUser != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. releasenotes/notes/34814.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 34653
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 14 07:18:19 UTC 2021
    - 216 bytes
    - Viewed (0)
  10. istioctl/pkg/analyze/analyze.go

    		"Suppress reporting a message code on a specific resource. Values are supplied in the form "+
    			`<code>=<resource> (e.g. '--suppress "IST0102=DestinationRule primary-dr.default"'). Can be repeated. `+
    			`You can include the wildcard character '*' to support a partial match (e.g. '--suppress "IST0102=DestinationRule *.default" ).`)
    	analysisCmd.PersistentFlags().DurationVar(&analysisTimeout, "timeout", 30*time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top