--导入大文件30G文件到mysql1、修改配置innodb_flush_log_at_trx_commit=0 2、导入时的注意事项set autocommit=1;show variables like 'autocommit';set names utf8;source f://file.sq ...
分类:
数据库 时间:
2019-06-22 10:33:27
阅读次数:
213
sharedMaterial 和Miaterial 简介: 我们在使用unity引擎的时候 ,有时候需要去修改某个物体上的material,在Unity的Renderer类里,提供了两个方法接口供我们使用。 Renderer,material 和 Renderer.sharedMaterial 如果 ...
分类:
编程语言 时间:
2019-06-21 18:35:15
阅读次数:
127
简单概括 Material:使用的时候,如果有其他物体同时在占用这一份,则会复制一份instance出来,只改变对应的这一份。会留存在内存中,不会销毁。unloadunuse会销毁。 SharedMaterial:改变参数的时候,所有共用的都会改变。 修改对应的接口,在Editor下使用materi ...
分类:
其他好文 时间:
2019-06-18 14:29:56
阅读次数:
130
前言 注意这个里介绍的是AndroidX的com.google.android.material.bottomnavigation.BottomNavigationView xml布局中 app:labelVisibilityMode="labeled" 标签显示模式,其实就是改变点选后的整体动画, ...
分类:
移动开发 时间:
2019-06-15 13:22:17
阅读次数:
1877
题目描述 Farmer John has purchased a subscription to Good Hooveskeeping magazine for his cows, so they have plenty of material to read while waiting aroun ...
分类:
其他好文 时间:
2019-06-14 22:08:57
阅读次数:
106
1、cupertino_IOS风格介绍 在Flutter里是有两种内置风格的: material风格: Material Design 是由 Google 推出的全新设计语言,这种设计语言是为手机、平板电脑、台式机和其他平台提供一致,更广泛的外观和感觉。我喜欢称它为纸墨设计。Material Des ...
分类:
移动开发 时间:
2019-06-14 21:43:44
阅读次数:
329
import 'package:flutter/material.dart'; main() => runApp(MaterialApp( home: HomePage(), )); class HomePage extends StatefulWidget { @override State cr... ...
分类:
其他好文 时间:
2019-06-14 14:51:57
阅读次数:
95
Angular 8 - 更小的包 Angular 8 发布 原文地址:https://blog.angular.io/version-8-of-angular-smaller-bundles-cli-apis-and-alignment-with-the-ecosystem-af0261112a27 ...
分类:
其他好文 时间:
2019-06-09 23:45:50
阅读次数:
142
import 'package:flutter/material.dart';void main() => runApp(MyApp());class MyApp extends StatelessWidget { @override Widget build(BuildContext contex ...
分类:
其他好文 时间:
2019-06-06 22:40:07
阅读次数:
160
import 'package:flutter/material.dart';import 'dart:ui';void main() => runApp(MyApp());class MyApp extends StatelessWidget { @override Widget build(Bu ...
分类:
其他好文 时间:
2019-06-04 22:28:06
阅读次数:
119