Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 0B1110 (0.18 sec)

  1. src/reflect/all_test.go

    			kv.SetIterKey(iter)
    			seenk ^= kv.Uint()
    			kv.SetIterValue(iter)
    			seenv ^= kv.Uint()
    		}
    		if seenk != 0b111 {
    			t.Errorf("iteration yielded keys %b, want %b", seenk, 0b111)
    		}
    		if seenv != 0b1110 {
    			t.Errorf("iteration yielded values %b, want %b", seenv, 0b1110)
    		}
    	}
    
    	// Reset should not allocate.
    	n := int(testing.AllocsPerRun(10, func() {
    		iter.Reset(ValueOf(m2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/syscall/zerrors_solaris_amd64.go

    	RTV_SPIPE                     = 0x10
    	RTV_SSTHRESH                  = 0x20
    	RT_AWARE                      = 0x1
    	RUSAGE_CHILDREN               = -0x1
    	RUSAGE_SELF                   = 0x0
    	SCM_RIGHTS                    = 0x1010
    	SCM_TIMESTAMP                 = 0x1013
    	SCM_UCRED                     = 0x1012
    	SHUT_RD                       = 0x0
    	SHUT_RDWR                     = 0x2
    	SHUT_WR                       = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    			uid = 0
    		}
    	} else {
    		uid = Getuid()
    	}
    
    	if uid == 0 {
    		if mode&1 == 0 {
    			// Root can read and write any file.
    			return nil
    		}
    		if st.Mode&0111 != 0 {
    			// Root can execute any file that anybody can execute.
    			return nil
    		}
    		return EACCES
    	}
    
    	var fmode uint32
    	if uint32(uid) == st.Uid {
    		fmode = (st.Mode >> 6) & 7
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    
    			// Select x^k in constant time from the table.
    			k := uint((b >> j) & 0b1111)
    			for i := range table {
    				tmp.assign(ctEq(k, uint(i+1)), table[i])
    			}
    
    			// Multiply by x^k, discarding the result if k = 0.
    			tmp.montgomeryMul(out, tmp, m)
    			out.assign(not(ctEq(k, 0)), tmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    func ringDecodeAndDecompress4(b *[encodingSize4]byte) ringElement {
    	var f ringElement
    	for i := 0; i < n; i += 2 {
    		f[i] = fieldElement(decompress(uint16(b[i/2]&0b1111), 4))
    		f[i+1] = fieldElement(decompress(uint16(b[i/2]>>4), 4))
    	}
    	return f
    }
    
    // ringCompressAndEncode10 appends a 320-byte encoding of a ring element to s,
    // compressing four coefficients per five bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    )
    
    // Test if this value can encoded as a mask for
    // li -1, rx; rlic rx,rx,sh,mb.
    // Masks can also extend from the msb and wrap to
    // the lsb too. That is, the valid masks are 32 bit strings
    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64DoublewordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint64(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.t.Helper()
    	if st, err := os.Stat(path); err != nil {
    		if !os.IsNotExist(err) {
    			tg.t.Log(err)
    		}
    		tg.t.Fatal(msg)
    	} else {
    		if runtime.GOOS != "windows" && st.Mode()&0111 == 0 {
    			tg.t.Fatalf("binary %s exists but is not executable", path)
    		}
    	}
    }
    
    // isStale reports whether pkg is stale, and why
    func (tg *testgoData) isStale(pkg string) (bool, string) {
    	tg.t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // Test if this value can encoded as a mask for a rlwinm like
    // operation.  Masks can also extend from the msb and wrap to
    // the lsb too.  That is, the valid masks are 32 bit strings
    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64WordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint32(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    **Example**
    
                    ```python
                    from fastapi import FastAPI
    
                    app = FastAPI(version="0.0.1")
                    ```
                    """
                ),
            ] = "0.1.0",
            openapi_url: Annotated[
                Optional[str],
                Doc(
                    """
                    The URL where the OpenAPI schema will be served from.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 👥 Update FastAPI People. PR [#11511](https://github.com/tiangolo/fastapi/pull/11511) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.111.0
    
    ### Features
    
    * ✨ Add FastAPI CLI, the new `fastapi` command. PR [#11522](https://github.com/tiangolo/fastapi/pull/11522) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top