Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for STRICT (0.09 sec)

  1. src/os/os_test.go

    }
    
    // Test that simultaneous RemoveAll do not report an error.
    // As long as it gets removed, we should be happy.
    func TestRemoveAllRace(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		// Windows has very strict rules about things like
    		// removing directories while someone else has
    		// them open. The racing doesn't work out nicely
    		// like it does on Unix.
    		t.Skip("skipping on windows")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    // But the definition of x3 doesn't dominate b2.  We should really
    // insert an extra phi at the start of b2 (x5=phi(x3,x4):BX) to keep
    // SSA form. For now, we ignore this problem as remaining in strict
    // SSA form isn't needed after regalloc. We'll just leave the use
    // of x3 not dominated by the definition of x3, and the CX->BX copy
    // will have no use (so don't run deadcode after regalloc!).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	// badVoidPointerTypedef handles the "void *" HANDLE type, but other
    	// handles are defined as
    	//
    	// struct <name>__{int unused;}; typedef struct <name>__ *name;
    	//
    	// by the DECLARE_HANDLE macro in STRICT mode. The macro is declared in
    	// the Windows ntdef.h header,
    	//
    	// https://github.com/tpn/winsdk-10/blob/master/Include/10.0.16299.0/shared/ntdef.h#L779
    	if goos != "windows" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},ea...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
Back to top