View Vertex Pipelines - Distributed task.py
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
PROJECT_ID = "avolkov-31337" | |
PIPELINE_ROOT = "gs://avolkov/tmp/vertex" | |
REGION = "us-central1" | |
from typing import NamedTuple | |
import kfp | |
from kfp.components import load_component_from_url, InputPath, OutputPath, create_component_from_func | |
from kfp.v2.google import experimental | |
@create_component_from_func |
View gist:9279034
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
function f1() { return @("hello"); } | |
function f2() { return @("hello", "world"); } | |
$a = @(f1); | |
write-host $a.Length # prints 1 | |
$a = @(f2); | |
write-host $a.Length # prints 2 |
View MonoGame.Framework - Windows except Android
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
System.Boolean Microsoft.Xna.Framework.Audio.SoundEffect::get_IsDisposed() | |
System.String Microsoft.Xna.Framework.Content.ContentTypeReader::Normalize(System.String,System.String[]) | |
Microsoft.Xna.Framework.FrameworkDispatcher | |
System.Void Microsoft.Xna.Framework.FrameworkDispatcher::Update() | |
Microsoft.Xna.Framework.GameWindow Microsoft.Xna.Framework.Game::get_Window() | |
Microsoft.Xna.Framework.GameWindow Microsoft.Xna.Framework.GamerServices.Guide::get_Window() |
View MonoGame.Framework.skeleton.portable.dll.log
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
MakePortableSkeletonProcessor: Started MakePortableSkeletonProcessor. | |
MakeSkeletonProcessor: Started MakeSkeletonProcessor. | |
RemoveAllResourcesProcessor: Started RemoveAllResourcesProcessor. | |
RemoveAllResourcesProcessor: Finished RemoveAllResourcesProcessor. | |
EnsureParameterlessConstructorsProcessor: Started EnsureParameterlessConstructorsProcessor. | |
EnsureParameterlessConstructors: Added parameterless constructor to type Microsoft.Xna.Framework.Content.ContentTypeReader. | |
EnsureParameterlessConstructors: Added parameterless constructor to type Microsoft.Xna.Framework.Content.ContentManager. | |
EnsureParameterlessConstructors: Added parameterless constructor to type Microsoft.Xna.Framework.Graphics.Texture3D. | |
EnsureParameterlessConstructors: Added parameterless constructor to type Microsoft.Xna.Framework.Graphics.TextureCube. | |
EnsureParameterlessConstructors: Added parameterless constructor to type Microsoft.Xna.Framework.Graphics. |
View gist:5669311
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
[MonoGame.Framework]Enumerator | |
[MonoGame.Framework]GateType | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.AudioChannels | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.AudioEmitter | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.AudioListener | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.AudioStopOptions | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.InstancePlayLimitException | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.NoAudioHardwareException | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.SoundEffect | |
[MonoGame.Framework]Microsoft.Xna.Framework.Audio.SoundEffectInstance |