Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for findProp (0.86 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    t)if(r.type==="div"&&r.value===",")return r;return{type:"div",value:",",after:" "}}cleanOtherPrefixes(e,t){return e.filter(r=>{let n=Vm.prefix(this.findProp(r));return n===""||n===t})}cleanFromUnprefixed(e,t){let r=e.map(a=>this.findProp(a)).filter(a=>a.slice(0,t.length)===t).map(a=>this.prefixes.unprefixed(a)),n=[];for(let a of e){let s=this.findProp(a),o=Vm.prefix(s);!r.includes(s)&&(o===t||o==="")&&n.push(a)}return n}disabled(e,t){let r=["order","justify-content","align-self","align-content"];...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

        rewriter.replaceOpWithNewOp<TFL::HashtableFindOp>(
            find_op, find_op->getResultTypes(), find_op.getTableHandle(),
            find_op.getKeys(), find_op.getDefaultValue());
        return success();
      }
    };
    
    class LegalizeHashTableImportOpPattern
        : public OpRewritePattern<TF::LookupTableImportV2Op> {
     public:
      using OpRewritePattern<TF::LookupTableImportV2Op>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

        }
    
        PBXGroup getProducts() {
            return findGroup('Products')
        }
    
        PBXGroup getSources() {
            return findGroup('Sources')
        }
    
        PBXGroup getTests() {
            return findGroup('Tests')
        }
    
        PBXGroup getHeaders() {
            return findGroup('Headers')
        }
    
        private PBXGroup findGroup(String groupName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/syscall/dll_windows.go

    func MustLoadDLL(name string) *DLL {
    	d, e := LoadDLL(name)
    	if e != nil {
    		panic(e)
    	}
    	return d
    }
    
    // FindProc searches [DLL] d for procedure named name and returns [*Proc]
    // if found. It returns an error if search fails.
    func (d *DLL) FindProc(name string) (proc *Proc, err error) {
    	namep, err := BytePtrFromString(name)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/os/signal/signal_windows_test.go

    	"testing"
    	"time"
    )
    
    func sendCtrlBreak(t *testing.T, pid int) {
    	d, e := syscall.LoadDLL("kernel32.dll")
    	if e != nil {
    		t.Fatalf("LoadDLL: %v\n", e)
    	}
    	p, e := d.FindProc("GenerateConsoleCtrlEvent")
    	if e != nil {
    		t.Fatalf("FindProc: %v\n", e)
    	}
    	r, _, e := p.Call(syscall.CTRL_BREAK_EVENT, uintptr(pid))
    	if r == 0 {
    		t.Fatalf("GenerateConsoleCtrlEvent: %v\n", e)
    	}
    }
    
    func TestCtrlBreak(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:07:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func MustLoadDLL(name string) *DLL {
    	d, e := LoadDLL(name)
    	if e != nil {
    		panic(e)
    	}
    	return d
    }
    
    // FindProc searches DLL d for procedure named name and returns *Proc
    // if found. It returns an error if search fails.
    func (d *DLL) FindProc(name string) (proc *Proc, err error) {
    	namep, err := BytePtrFromString(name)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  7. src/runtime/signal_windows_test.go

    func sendCtrlBreak(pid int) error {
    	kernel32, err := syscall.LoadDLL("kernel32.dll")
    	if err != nil {
    		return fmt.Errorf("LoadDLL: %v\n", err)
    	}
    	generateEvent, err := kernel32.FindProc("GenerateConsoleCtrlEvent")
    	if err != nil {
    		return fmt.Errorf("FindProc: %v\n", err)
    	}
    	result, _, err := generateEvent.Call(syscall.CTRL_BREAK_EVENT, uintptr(pid))
    	if result == 0 {
    		return fmt.Errorf("GenerateConsoleCtrlEvent: %v\n", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows_test.go

    }
    
    func GetDLL(t *testing.T, name string) *DLL {
    	d, e := syscall.LoadDLL(name)
    	if e != nil {
    		t.Fatal(e)
    	}
    	return &DLL{DLL: d, t: t}
    }
    
    func (d *DLL) Proc(name string) *syscall.Proc {
    	p, e := d.FindProc(name)
    	if e != nil {
    		d.t.Fatal(e)
    	}
    	return p
    }
    
    func TestStdCall(t *testing.T) {
    	type Rect struct {
    		left, top, right, bottom int32
    	}
    	res := Rect{}
    	expected := Rect{1, 1, 40, 60}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SwapUintptr", Func, 2},
    		{"Uint32", Type, 19},
    		{"Uint64", Type, 19},
    		{"Uintptr", Type, 19},
    		{"Value", Type, 4},
    	},
    	"syscall": {
    		{"(*Cmsghdr).SetLen", Method, 0},
    		{"(*DLL).FindProc", Method, 0},
    		{"(*DLL).MustFindProc", Method, 0},
    		{"(*DLL).Release", Method, 0},
    		{"(*DLLError).Error", Method, 0},
    		{"(*DLLError).Unwrap", Method, 16},
    		{"(*Filetime).Nanoseconds", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg syscall (windows-386), func Write(Handle, []uint8) (int, error)
    pkg syscall (windows-386), func WriteFile(Handle, []uint8, *uint32, *Overlapped) error
    pkg syscall (windows-386), method (*DLL) FindProc(string) (*Proc, error)
    pkg syscall (windows-386), method (*DLL) MustFindProc(string) *Proc
    pkg syscall (windows-386), method (*DLL) Release() error
    pkg syscall (windows-386), method (*DLLError) Error() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top