This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for homebrew/php/php56 on macOS 10.12.5 | |
Build date: 2017-05-21 14:04:26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"payload" : [ | |
{ | |
"id": "unique", | |
"name" : "test", | |
"email": "[email protected]", | |
"maillist" : [ | |
{ | |
"id": "unique", | |
"name": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2020 Kentaro Hibino. All rights reserved. | |
// Use of this source code is governed by a MIT license | |
// that can be found in the LICENSE file. | |
package asynq | |
import ( | |
"context" | |
"errors" | |
"fmt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import path from 'path' | |
import {defineConfig, splitVendorChunkPlugin} from 'vite' | |
import Vue from '@vitejs/plugin-vue' | |
import Pages from 'vite-plugin-pages' | |
import Layouts from 'vite-plugin-vue-layouts' | |
import Icons from 'unplugin-icons/vite' | |
import IconsResolver from 'unplugin-icons/resolver' | |
import Components from 'unplugin-vue-components/vite' | |
import AutoImport from 'unplugin-auto-import/vite' | |
import Markdown from 'vite-plugin-md' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { Head, Link } from '@inertiajs/inertia-vue3'; | |
import '@vime/core/themes/default.css'; | |
import {computed, ref} from "vue"; | |
import {getLangByCode} from '~/Data/lang' | |
import { | |
ArrowLeftIcon | |
} from '@heroicons/vue/solid' | |
const props = defineProps(['canDownload', 'adsense', 'video', 'poster', 'subtitles', 'id', 'settings', 'source', 'canDownload', 'videos']) |