當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript dns.resolve函數代碼示例

本文整理匯總了TypeScript中dns.resolve函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript resolve函數的具體用法?TypeScript resolve怎麽用?TypeScript resolve使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了resolve函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Promise

        return new Promise((resolve: (value: Repo) => void, reject: (error: any) => void) => {
            this.alreadyTryFetchAll = true;

            // check network connectivity
            let hostname: string;
            if (this.urlInfo) {
                hostname = this.urlInfo.hostname;
            } else if (this.sshInfo) {
                hostname = this.sshInfo.hostname;
            } else {
                throw new Error("unsupported url: " + this.spec.url);
            }
            dns.resolve(hostname, err => {
                this.networkConnectivity = !err;
                if (this.networkConnectivity) {
                    let command: { base: string; args: string[]; };
                    if (fs.existsSync(this.targetDir)) {
                        command = this._buildCommand("fetch", "--all");
                    } else {
                        debug("make dir", path.resolve(this.targetDir, "../"));
                        mkdirp.sync(path.resolve(this.targetDir, "../"));
                        command = this._buildCommand("clone", "--mirror", this.spec.url, this.targetDir);
                    }
                    debug("exec command", command);
                    child_process.execFile(command.base, command.args, { encoding: "buffer" }, (error, stdout, stderr) => {
                        this.fetchError = error ? stderr.toString("utf8") : null;
                        resolve(this);
                    });
                } else {
                    if (!fs.existsSync(this.targetDir)) {
                        reject("no network connectivity");
                        return;
                    } else {
                        resolve(this);
                        return;
                    }
                }
            });
        });
開發者ID:vvakame,項目名稱:packagemanager-backend,代碼行數:39,代碼來源:repo.ts

示例2: trueOrFalse

    dns.lookup("nodejs.org", {all: true}, (err, addresses) => {
        const _err: NodeJS.ErrnoException = err;
        const _address: dns.LookupAddress[] = addresses;
    });

    function trueOrFalse(): boolean {
        return Math.random() > 0.5 ? true : false;
    }
    dns.lookup("nodejs.org", {all: trueOrFalse()}, (err, addresses, family) => {
        const _err: NodeJS.ErrnoException = err;
        const _addresses: string | dns.LookupAddress[] = addresses;
        const _family: number | undefined = family;
    });

    dns.resolve("nodejs.org", (err, addresses) => {
        const _addresses: string[] = addresses;
    });
    dns.resolve("nodejs.org", "A", (err, addresses) => {
        const _addresses: string[] = addresses;
    });
    dns.resolve("nodejs.org", "AAAA", (err, addresses) => {
        const _addresses: string[] = addresses;
    });
    dns.resolve("nodejs.org", "MX", (err, addresses) => {
        const _addresses: dns.MxRecord[] = addresses;
    });

    dns.resolve4("nodejs.org", (err, addresses) => {
        const _addresses: string[] = addresses;
    });
開發者ID:Crevil,項目名稱:DefinitelyTyped,代碼行數:30,代碼來源:node-tests.ts

示例3: Promise

	return new Promise((res, rej) => {
		dns.resolve('marketplace.visualstudio.com', (err) => {
			err ? res(false) : res(true);
		});
	});
開發者ID:FabianLauer,項目名稱:vscode,代碼行數:5,代碼來源:extensions.ts


注:本文中的dns.resolve函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。