Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,255 for yearly (0.3 sec)

  1. .github/SECURITY.md

    the group can be found at [Early Disclosure Membership].
    
    ## Security Bulletins
    
    Information about previous Istio vulnerabilities can be found on the
    [Security Bulletins] page.
    
    [Support Announcements]: https://istio.io/news/support/
    [Istio Security Vulnerabilities]: https://istio.io/about/security-vulnerabilities/
    [Security Bulletins]: https://istio.io/news/security/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 15:17:53 UTC 2023
    - 905 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/lif/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/byteorder/byteorder.go

    package byteorder
    
    func LeUint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func LePutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func LeAppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/benchshort.json

    {"Action":"start"}
    {"Action":"output","Output":"# This file ends in an early EOF to trigger the Benchmark prefix test,\n"}
    {"Action":"output","Output":"# which only happens when a benchmark prefix is seen ahead of the \\n.\n"}
    {"Action":"output","Output":"# Normally that's due to the benchmark running and the \\n coming later,\n"}
    {"Action":"output","Output":"# but to avoid questions of timing, we just use a file with no \\n at all.\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 537 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_util.h

      bool IsEmpty() const;
    
      // Calls `func` on each DeviceId in the set.  Stops iterating early if `func`
      // return false.
      //
      // TODO(sanjoy): Change this to take a typed std::function if that's
      // performance neutral.
      template <typename FnTy>
      void ForEach(FnTy func) const {
        // This is really a poor man's iterator, we should consider writing a proper
        // iterator if this ends up being used widely.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue57823.go

    	s := make([]byte, 100)
    	s[0] = 1
    	one := unsafe.SliceData(s)
    
    	done := make(chan struct{})
    	runtime.SetFinalizer(one, func(*byte) { close(done) })
    
    	h := g(one)
    
    	if wait(done) {
    		panic("GC'd early")
    	}
    
    	if *h != 1 {
    		panic("lost one")
    	}
    
    	if !wait(done) {
    		panic("never GC'd")
    	}
    }
    
    var strDone = make(chan struct{})
    
    //go:noinline
    func str(x, y string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 01:27:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/testdata/benchshort.test

    # This file ends in an early EOF to trigger the Benchmark prefix test,
    # which only happens when a benchmark prefix is seen ahead of the \n.
    # Normally that's due to the benchmark running and the \n coming later,
    # but to avoid questions of timing, we just use a file with no \n at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:53:38 UTC 2018
    - 318 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredDependencies 'a', 'b', 'c'
            declaredReplacements 'a->b', 'b->c'
            expect:
            resolvedModules 'c'
        }
    
        def "reports replacement cycles early"() {
            declaredDependencies 'a', 'b', 'c'
            declaredReplacements 'a->b', 'b->c', 'c->a'
            expect:
            def failure = fails()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/math/rand/auto_test.go

    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	. "math/rand"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top