Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 165 for uncommon (0.16 sec)

  1. src/cmd/cgo/out.go

    // in the tool, than to avoid false negatives.
    const yesTsanProlog = `
    #line 1 "cgo-tsan-prolog"
    #define CGO_NO_SANITIZE_THREAD __attribute__ ((no_sanitize_thread))
    
    long long _cgo_sync __attribute__ ((common));
    
    extern void __tsan_acquire(void*);
    extern void __tsan_release(void*);
    
    __attribute__ ((unused))
    static void _cgo_tsan_acquire() {
    	__tsan_acquire(&_cgo_sync);
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (NEG (SUBFCconst [c] x)) && is32Bit(-c) => (ADDconst [-c] x)
    (NEG (SUB x y)) => (SUB y x)
    (NEG (NEG x)) => x
    
    // Use register moves instead of stores and loads to move int<=>float values
    // Common with math Float64bits, Float64frombits
    (MOVDload [off] {sym} ptr (FMOVDstore [off] {sym} ptr x _)) => (MFVSRD x)
    (FMOVDload [off] {sym} ptr (MOVDstore [off] {sym} ptr x _)) => (MTVSRD x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/go/build/build.go

    		if p == "" || p == ctxt.GOROOT {
    			// Empty paths are uninteresting.
    			// If the path is the GOROOT, ignore it.
    			// People sometimes set GOPATH=$GOROOT.
    			// Do not get confused by this common mistake.
    			continue
    		}
    		if strings.HasPrefix(p, "~") {
    			// Path segments starting with ~ on Unix are almost always
    			// users who have incorrectly quoted ~ while setting GOPATH,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    		// will begin 0x00c0, 0x00c1, ...
    		// In little-endian, that's c0 00, c1 00, ... None of those are valid
    		// UTF-8 sequences, and they are otherwise as far away from
    		// ff (likely a common byte) as possible. If that fails, we try other 0xXXc0
    		// addresses. An earlier attempt to use 0x11f8 caused out of memory errors
    		// on OS X during thread allocations.  0x00c0 causes conflicts with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	// Verify that an implicit catch all egress listener will not bind to privileged ports
    	// if proxy is not using Iptables and cannot bind to privileged ports (1-1023).
    	//
    	// It is very common for the catch all egress listener to match services on ports 80 and 443.
    	// Therefore, the default behavior should not force users to start from looking for a workaround.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (p *Parser) Answer() (Resource, error) {
    	return p.resource(sectionAnswers)
    }
    
    // AllAnswers parses all Answer Resources.
    func (p *Parser) AllAnswers() ([]Resource, error) {
    	// The most common query is for A/AAAA, which usually returns
    	// a handful of IPs.
    	//
    	// Pre-allocate up to a certain limit, since p.header is
    	// untrusted data.
    	n := int(p.header.answers)
    	if n > 20 {
    		n = 20
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // minIovec is the size of the small initial allocation used by
    // Readv, Writev, etc.
    //
    // This small allocation gets stack allocated, which lets the
    // common use case of len(iovs) <= minIovs avoid more expensive
    // heap allocations.
    const minIovec = 8
    
    // appendBytes converts bs to Iovecs and appends them to vecs.
    func appendBytes(vecs []Iovec, bs [][]byte) []Iovec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    				b.Values[j] = v
    			}
    			j++
    		}
    		if pendingLines.get(b.Pos) == int32(b.ID) {
    			b.Pos = b.Pos.WithIsStmt()
    			pendingLines.remove(b.Pos)
    		}
    		b.truncateValues(j)
    	}
    }
    
    // Common functions called from rewriting rules
    
    func is64BitFloat(t *types.Type) bool {
    	return t.Size() == 8 && t.IsFloat()
    }
    
    func is32BitFloat(t *types.Type) bool {
    	return t.Size() == 4 && t.IsFloat()
    }
    
    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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package v1 contains API types that are common to all versions.
    //
    // The package contains two categories of types:
    //   - external (serialized) types that lack their own version (e.g TypeMeta)
    //   - internal (never-serialized) types that are needed by several different
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. pkg/kubelet/pod_workers.go

    		// 2. The pod received a kill update and then a subsequent create, which means
    		//    the UID was reused in the source config (vanishingly rare for API servers,
    		//    common for static pods that have specified a fixed UID)
    		//
    		// In the former case we wish to bound the amount of information we store for
    		// deleted pods. In the latter case we wish to minimize the amount of time before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top