Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Bruijn (0.11 sec)

  1. src/runtime/internal/sys/intrinsics.go

    	// index of that bit. Since only a single bit is set, the value is two
    	// to the power of k. Multiplying by a power of two is equivalent to
    	// left shifting, in this case by k bits. The de Bruijn (64 bit) constant
    	// is such that all six bit, consecutive substrings are distinct.
    	// Therefore, if we have a left shifted version of this constant we can
    	// find by how many bits it was shifted by looking at which six bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/math/bits/bits.go

    	// index of that bit. Since only a single bit is set, the value is two
    	// to the power of k. Multiplying by a power of two is equivalent to
    	// left shifting, in this case by k bits. The de Bruijn (64 bit) constant
    	// is such that all six bit, consecutive substrings are distinct.
    	// Therefore, if we have a left shifted version of this constant we can
    	// find by how many bits it was shifted by looking at which six bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    https://dev.to/errietta/introduction-to-the-fastapi-python-framework-2n10 title: Introduction to the fastapi python framework - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-how-to-add-basic-and-cookie-authentication-a45c85ef47d3 title: FastAPI — How to add basic and cookie authentication - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-google-as-an-external-authentication-provider-3a527672cf33...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/runtime/race/testdata/mop_test.go

    		*p = 2
    		comm <- p
    		done <- true
    	}()
    	<-done
    	<-done
    }
    
    func TestNoRaceHeapReallocation(t *testing.T) {
    	// It is possible that a future implementation
    	// of memory allocation will ruin this test.
    	// Increasing n might help in this case, so
    	// this test is a bit more generic than most of the
    	// others.
    	const n = 2
    	done := make(chan bool, n)
    	empty := func(p *int) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
Back to top