Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for completeness (0.17 sec)

  1. releasenotes/notes/56781.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. releasenotes/notes/fix-42598.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 29 16:48:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. releasenotes/notes/43045.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 15:40:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/50110.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 04:22:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. releasenotes/notes/42119.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 22:23:04 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. releasenotes/notes/25818.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: security-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. internal/ringbuffer/ring_buffer_benchmark_test.go

    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		rb.Write(data)
    		rb.Read(buf)
    	}
    }
    
    func BenchmarkRingBuffer_AsyncRead(b *testing.B) {
    	// Pretty useless benchmark, but it's here for completeness.
    	rb := New(1024)
    	data := []byte(strings.Repeat("a", 512))
    	buf := make([]byte, 512)
    
    	go func() {
    		for {
    			rb.Read(buf)
    		}
    	}()
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. releasenotes/notes/48818.yaml

    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_newroot.txt

    # https://golang.org/issue/45952: 'go mod tidy' in an eager module failed due
    # to an erroneous check on root completeness.
    #
    # Per the issue report:
    # > It may have to do with:
    # >
    # > package A imports package B in go.mod, which imports package C in its own go.mod
    # > package A drops direct dependency on package B …
    #
    # We infer from that that package C is still needed by some other indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 04 22:12:42 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top