hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
414b16d544051d6fe4fcdc356b5d6bba888c23cc | 641 | h | C | hw/mcu/broadcom/broadcom/interrupts.h | bm16ton/portenta-tinyusb | 472ccb5bd6da5c3cf55210c28df72667c825152a | [
"MIT"
] | 3 | 2021-10-01T15:55:49.000Z | 2021-11-11T14:18:08.000Z | hw/mcu/broadcom/broadcom/interrupts.h | bm16ton/portenta-tinyusb | 472ccb5bd6da5c3cf55210c28df72667c825152a | [
"MIT"
] | null | null | null | hw/mcu/broadcom/broadcom/interrupts.h | bm16ton/portenta-tinyusb | 472ccb5bd6da5c3cf55210c28df72667c825152a | [
"MIT"
] | 2 | 2021-11-22T04:29:37.000Z | 2021-12-01T01:38:53.000Z | #pragma once
#include <stdbool.h>
#include "broadcom/defines.h"
void BP_EnableIRQs(void);
void BP_DisableIRQs(void);
// Minimum priority is the highest priority value. (0 is highest priority)
void BP_SetMinPriority(uint8_t priority);
// We mimic the NVIC used in Cortex M SoCs.
void BP_EnableIRQ(IRQn_Type IRQn);
bo... | 27.869565 | 74 | 0.806552 |
12e052e5ec70f5ee6aed53ca258bd0515f3e2aa5 | 1,705 | html | HTML | 404.html | oubihis/Viralebom | e175dc9bb545fac1965d5809022f26b4a86509eb | [
"MIT"
] | null | null | null | 404.html | oubihis/Viralebom | e175dc9bb545fac1965d5809022f26b4a86509eb | [
"MIT"
] | null | null | null | 404.html | oubihis/Viralebom | e175dc9bb545fac1965d5809022f26b4a86509eb | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>ViraleBom - 404</title>
<meta name="robots" content="noindex, nofollow">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" hr... | 35.520833 | 113 | 0.493255 |
266159ed48ce8a48fa7a8502411babe790263e10 | 700 | java | Java | src/main/java/org/cvs/data/entities/QualificationType.java | yamiko/cv_service | b33fbecfac2f993880b55131e089fa6cce06ef3c | [
"MIT"
] | null | null | null | src/main/java/org/cvs/data/entities/QualificationType.java | yamiko/cv_service | b33fbecfac2f993880b55131e089fa6cce06ef3c | [
"MIT"
] | null | null | null | src/main/java/org/cvs/data/entities/QualificationType.java | yamiko/cv_service | b33fbecfac2f993880b55131e089fa6cce06ef3c | [
"MIT"
] | null | null | null | package org.cvs.data.entities;
import javax.persistence.Entity;
import javax.validation.constraints.NotBlank;
import lombok.NoArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
/**
*
* Defines structure and relationship(s) for the <code>qualification_type</code>
* table.
*
* ... | 17.948718 | 80 | 0.747143 |
7295a5e5b687923da6ff73af54bc21602ad1fe88 | 2,012 | rs | Rust | src/if_.rs | vitorenesduarte/pluscal-rs | 63bec76c8ca8e335208de939d83236293fec2ed8 | [
"Apache-2.0",
"MIT"
] | 5 | 2020-07-19T15:55:54.000Z | 2021-03-22T20:38:09.000Z | src/if_.rs | vitorenesduarte/pluscal-rs | 63bec76c8ca8e335208de939d83236293fec2ed8 | [
"Apache-2.0",
"MIT"
] | null | null | null | src/if_.rs | vitorenesduarte/pluscal-rs | 63bec76c8ca8e335208de939d83236293fec2ed8 | [
"Apache-2.0",
"MIT"
] | null | null | null | use crate::cond::Cond;
use crate::label::Label;
use crate::{Instruction, ToPlusCal};
#[must_use]
pub struct IfBuilder<'a> {
parent: &'a mut Label,
cond: Cond,
then_label: Option<Label>,
else_label: Option<Label>,
}
impl<'a> IfBuilder<'a> {
pub(crate) fn new(parent: &'a mut Label, cond: Cond) -> Se... | 24.240964 | 86 | 0.542744 |
0ba9d7b223c8e242ba7b53673e8ddcaa9c5e834e | 2,192 | js | JavaScript | gsjson.js | ITarrio/google-spreadsheet-to-json-without-date-format | 0f4a8741ee42063249c0d683a4b667797993c1d8 | [
"Unlicense"
] | 1 | 2021-09-08T14:46:40.000Z | 2021-09-08T14:46:40.000Z | gsjson.js | zaimramlan/google-spreadsheet-to-json | 269163bb20b757f5dbd71eec5df71f6b336cefe0 | [
"Unlicense"
] | null | null | null | gsjson.js | zaimramlan/google-spreadsheet-to-json | 269163bb20b757f5dbd71eec5df71f6b336cefe0 | [
"Unlicense"
] | null | null | null | #!/usr/bin/env node
var fs = require('fs');
var program = require('commander');
var Promise = require('bluebird');
var helper = require('./helper');
var packageData = require('./package.json');
program
.version(packageData.version)
.usage('<spreadsheet-id> [file] [options]')
.option('-b, --beautify', 'Bea... | 30.873239 | 166 | 0.633668 |
c73c8bce8d4d6e4be81952feedc718adc1f9ad07 | 373 | kt | Kotlin | app/src/main/java/com/wavesplatform/wallet/v2/data/model/local/WelcomeItem.kt | isabella232/WavesWallet-android | 5f4106576dc4fe377a355d045f638e7469cd6abe | [
"MIT"
] | 58 | 2017-07-26T16:49:17.000Z | 2021-07-19T03:42:37.000Z | app/src/main/java/com/wavesplatform/wallet/v2/data/model/local/WelcomeItem.kt | wavesplatform/WavesWallet-android | 5f4106576dc4fe377a355d045f638e7469cd6abe | [
"MIT"
] | 22 | 2017-12-24T07:01:17.000Z | 2021-05-26T17:57:14.000Z | app/src/main/java/com/wavesplatform/wallet/v2/data/model/local/WelcomeItem.kt | isabella232/WavesWallet-android | 5f4106576dc4fe377a355d045f638e7469cd6abe | [
"MIT"
] | 53 | 2017-11-14T21:25:23.000Z | 2022-03-07T11:04:07.000Z | /*
* Created by Eduard Zaydel on 1/4/2019
* Copyright © 2019 Waves Platform. All rights reserved.
*/
package com.wavesplatform.wallet.v2.data.model.local
import androidx.annotation.DrawableRes
import androidx.annotation.StringRes
data class WelcomeItem(
@DrawableRes val image: Int,
@StringRes val ... | 24.866667 | 56 | 0.731903 |
50cfcc11245dec844cdad297fc2299cdd0d9e734 | 4,886 | go | Go | resourcewatchers/metadata.go | guangbochen/scheduler | d9a8d0a5b624a47649df52c72e125f29d582f36f | [
"Apache-2.0"
] | 19 | 2016-06-17T06:30:04.000Z | 2020-08-09T21:29:56.000Z | resourcewatchers/metadata.go | guangbochen/scheduler | d9a8d0a5b624a47649df52c72e125f29d582f36f | [
"Apache-2.0"
] | 29 | 2016-10-26T16:48:21.000Z | 2019-01-22T00:10:39.000Z | resourcewatchers/metadata.go | guangbochen/scheduler | d9a8d0a5b624a47649df52c72e125f29d582f36f | [
"Apache-2.0"
] | 29 | 2016-05-27T22:14:59.000Z | 2021-01-23T09:52:14.000Z | package resourcewatchers
import (
"fmt"
"sync"
"github.com/rancher/go-rancher-metadata/metadata"
"github.com/rancher/go-rancher/v2"
"github.com/rancher/log"
"github.com/rancher/scheduler/scheduler"
)
func WatchMetadata(client metadata.Client, updater scheduler.ResourceUpdater, rclient *client.RancherClient) er... | 28.08046 | 161 | 0.695661 |
5be7a3338b8f479adf12f25c57e9cabcbfcb59b4 | 2,704 | h | C | app/socket.h | gary109/udt4-appclient | 912f2402a77bdc6fa4107e3642bb27b2b7208e46 | [
"BSD-3-Clause"
] | null | null | null | app/socket.h | gary109/udt4-appclient | 912f2402a77bdc6fa4107e3642bb27b2b7208e46 | [
"BSD-3-Clause"
] | null | null | null | app/socket.h | gary109/udt4-appclient | 912f2402a77bdc6fa4107e3642bb27b2b7208e46 | [
"BSD-3-Clause"
] | null | null | null | /*
* Project: udptunnel
* File: socket.h
*
* Copyright (C) 2009 Daniel Meekins
* Contact: dmeekins - gmail
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the Lice... | 31.44186 | 78 | 0.699704 |
c96ad45290e23e5be4b3956c300012b812b63faf | 232 | kt | Kotlin | presentation/src/main/java/com/cheise_proj/presentation/model/people/People.kt | Bik-Krlvn/Nagies-Edu-Center | ce52e33fdf764530f84595042f3d23f3e5daaeb8 | [
"BSD-3-Clause"
] | 2 | 2020-03-17T14:22:19.000Z | 2020-06-29T02:04:41.000Z | presentation/src/main/java/com/cheise_proj/presentation/model/people/People.kt | Bik-Krlvn/Nagies-Edu-Center | ce52e33fdf764530f84595042f3d23f3e5daaeb8 | [
"BSD-3-Clause"
] | 1 | 2020-05-13T02:30:05.000Z | 2020-06-28T21:38:09.000Z | presentation/src/main/java/com/cheise_proj/presentation/model/people/People.kt | Bik-Krlvn/Nagies-Edu-Center | ce52e33fdf764530f84595042f3d23f3e5daaeb8 | [
"BSD-3-Clause"
] | 1 | 2020-03-25T02:40:09.000Z | 2020-03-25T02:40:09.000Z | package com.cheise_proj.presentation.model.people
data class People(
val id: Int,
val refNo: String,
val name: String,
val photo: String?,
val username: String,
val gender: String,
val contact: String?
) | 21.090909 | 49 | 0.672414 |
5c3da07e3337505f4ce494c39a48da02f6779229 | 98 | css | CSS | public/themes/foxes/styles/dropdown.css | acronamydesign/foxie | 9712aada8a5e934e84fbba59f254228a3c06a116 | [
"0BSD"
] | null | null | null | public/themes/foxes/styles/dropdown.css | acronamydesign/foxie | 9712aada8a5e934e84fbba59f254228a3c06a116 | [
"0BSD"
] | null | null | null | public/themes/foxes/styles/dropdown.css | acronamydesign/foxie | 9712aada8a5e934e84fbba59f254228a3c06a116 | [
"0BSD"
] | null | null | null | .navbar-default .navbar-nav>.open>a{background-color:#f7f7f7}.dropdown-menu>li>a{padding:9px 20px} | 98 | 98 | 0.785714 |
5a578a1bf85c5b657c460639c35ef9f335740b1b | 1,948 | swift | Swift | Sources/PerlCore/PerlScalarValue.swift | freyaariel/perl-core | 0777f2f5a9658e1b87c8db2ef1c87556918006d5 | [
"MIT"
] | null | null | null | Sources/PerlCore/PerlScalarValue.swift | freyaariel/perl-core | 0777f2f5a9658e1b87c8db2ef1c87556918006d5 | [
"MIT"
] | null | null | null | Sources/PerlCore/PerlScalarValue.swift | freyaariel/perl-core | 0777f2f5a9658e1b87c8db2ef1c87556918006d5 | [
"MIT"
] | null | null | null | import CPerlCore
/// A Perl scalar value.
///
/// You use the `PerlScalarValue` class to convert basic values, such as numbers and strings, between Perl and Swift representations to pass data between native code and Perl code.
@available(macOS 10.10, iOS 9, tvOS 9, watchOS 7, *)
public class PerlScalarValue: CustomStr... | 33.586207 | 180 | 0.681725 |
16ddc19c79f3737b6d4e4ae59629a94bbe87c296 | 457 | ts | TypeScript | api/plugin/Plugin.ts | joaomede/Auto-Deploy-Docker | 8bca0c77ea80056d3f6b86fe6302df34f2115c25 | [
"MIT"
] | 2 | 2020-02-20T13:21:56.000Z | 2020-02-20T13:23:24.000Z | api/plugin/Plugin.ts | joaomede/Auto-Deploy-Docker | 8bca0c77ea80056d3f6b86fe6302df34f2115c25 | [
"MIT"
] | null | null | null | api/plugin/Plugin.ts | joaomede/Auto-Deploy-Docker | 8bca0c77ea80056d3f6b86fe6302df34f2115c25 | [
"MIT"
] | null | null | null | import * as jwt from 'jsonwebtoken'
import * as dotenv from 'dotenv'
dotenv.config()
const secret = process.env.SECRET
class Plugin {
/**
*
* @param params Retorna o token decodificado com validade
* @param validade Validade do token, ex: 7d
*/
public async generateToken (params: string | object, valida... | 24.052632 | 91 | 0.684902 |
e9235cdd91eff26b60f282545a745b9c849936aa | 1,082 | rake | Ruby | lib/tasks/bookmarklet.rake | BrettBukowski/CatchLater | f40f0d85b8ebe185eb1948f5ed31cf0bed67b7e8 | [
"MIT"
] | null | null | null | lib/tasks/bookmarklet.rake | BrettBukowski/CatchLater | f40f0d85b8ebe185eb1948f5ed31cf0bed67b7e8 | [
"MIT"
] | null | null | null | lib/tasks/bookmarklet.rake | BrettBukowski/CatchLater | f40f0d85b8ebe185eb1948f5ed31cf0bed67b7e8 | [
"MIT"
] | null | null | null | namespace :assets do
desc 'Include SnackJS within the bookmarklet module, minify, write to app.min.js'
task :bookmarklet do
require 'erb'
require 'uglifier'
env = ENV['RAILS_ENV'] || 'development'
javascript_path = File.expand_path('app/assets/javascripts') + '/'
write_to = (env == 'development... | 37.310345 | 104 | 0.68207 |
0b7d1c464ba5f7b2f25f469546bc0725ef4ae2f0 | 25,033 | py | Python | snlds/model_cavi_snlds.py | egonrian/google-research | 8177adbe9ca0d7e5a9463b54581fe6dd27be0974 | [
"Apache-2.0"
] | 3 | 2021-01-18T04:46:49.000Z | 2021-03-05T09:21:40.000Z | snlds/model_cavi_snlds.py | Alfaxad/google-research | 2c0043ecd507e75e2df9973a3015daf9253e1467 | [
"Apache-2.0"
] | 25 | 2020-07-25T08:53:09.000Z | 2022-03-12T00:43:02.000Z | snlds/model_cavi_snlds.py | Alfaxad/google-research | 2c0043ecd507e75e2df9973a3015daf9253e1467 | [
"Apache-2.0"
] | 4 | 2021-02-08T10:25:45.000Z | 2021-04-17T14:46:26.000Z | # coding=utf-8
# Copyright 2020 The Google Research Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicab... | 40.770358 | 80 | 0.667878 |
0b0691f0be9f25d86b29ad84f617ff8d2bcf9148 | 184 | sql | SQL | src/sql/sample_data/favourites_tables_sample_data.sql | ScottGarland/MonteCarlo | 8d2a8026da8a0ce38e94c9e045820a6f55a46866 | [
"MIT"
] | null | null | null | src/sql/sample_data/favourites_tables_sample_data.sql | ScottGarland/MonteCarlo | 8d2a8026da8a0ce38e94c9e045820a6f55a46866 | [
"MIT"
] | 1 | 2020-11-16T18:56:13.000Z | 2020-11-16T18:56:13.000Z | src/sql/sample_data/favourites_tables_sample_data.sql | ScottGarland/MonteCarlo | 8d2a8026da8a0ce38e94c9e045820a6f55a46866 | [
"MIT"
] | 2 | 2020-11-17T02:54:07.000Z | 2021-04-10T19:42:48.000Z | INSERT INTO favourites (Username, Ticker)
VALUES
('A', 'AAPL'),
('S', 'FB'),
('A', 'GOOGL'),
('T', 'TSLA'),
('F', 'SNAP'),
('khalid', 'AAPL'),
('T', 'ZM'),
('F', 'TSLA'),
('A', 'ZM');
| 15.333333 | 41 | 0.461957 |
3315d3da5cb288937c32fd7b87ba8f28f91c0406 | 4,113 | lua | Lua | lua/map.lua | Itsnexn/nvim | 5967fe77f00d05fa9954c562f28ac305c710a093 | [
"MIT"
] | null | null | null | lua/map.lua | Itsnexn/nvim | 5967fe77f00d05fa9954c562f28ac305c710a093 | [
"MIT"
] | null | null | null | lua/map.lua | Itsnexn/nvim | 5967fe77f00d05fa9954c562f28ac305c710a093 | [
"MIT"
] | null | null | null | -- =============================================
-- -== Keyboard Cfg ==-
-- =============================================
local bind = vim.api.nvim_set_keymap
local default_opts = { noremap = true, silent = true }
local wk = require("which-key")
-- {{{ Better Movement
-- Move between windows
bind("n", "<c... | 39.932039 | 91 | 0.546803 |
3125908d8fd4e43737049d46d3e357017344ad38 | 4,143 | swift | Swift | Example/Tests/NavigatorControllerSpec.swift | oscarvgg/Sailor | 5807d1c8e1be41ac34ba9a29b14326ac40018c27 | [
"MIT"
] | null | null | null | Example/Tests/NavigatorControllerSpec.swift | oscarvgg/Sailor | 5807d1c8e1be41ac34ba9a29b14326ac40018c27 | [
"MIT"
] | null | null | null | Example/Tests/NavigatorControllerSpec.swift | oscarvgg/Sailor | 5807d1c8e1be41ac34ba9a29b14326ac40018c27 | [
"MIT"
] | null | null | null | //
// NavigatorControllerSpec.swift
// Sailor_Example
//
// Created by Oscar Gonzalez on 13/04/2018.
// Copyright © 2018 CocoaPods. All rights reserved.
//
import Quick
import Nimble
import Sailor
class NavigatorControllerSpec: QuickSpec {
override func spec() {
describe("A Navigator Con... | 43.610526 | 88 | 0.464156 |
abd76095a0726c9fbefa9886b57dca1e9758755c | 1,848 | kt | Kotlin | Android/app/src/main/java/com/versilistyson/searchflix/presentation/adapters/MediaAdapter.kt | vdtyson/SearchFlix | 895bb09903d38952a4373bbe7dd413301771e6c9 | [
"MIT"
] | 1 | 2020-04-28T01:05:50.000Z | 2020-04-28T01:05:50.000Z | Android/app/src/main/java/com/versilistyson/searchflix/presentation/adapters/MediaAdapter.kt | vdtyson/SearchFlix | 895bb09903d38952a4373bbe7dd413301771e6c9 | [
"MIT"
] | null | null | null | Android/app/src/main/java/com/versilistyson/searchflix/presentation/adapters/MediaAdapter.kt | vdtyson/SearchFlix | 895bb09903d38952a4373bbe7dd413301771e6c9 | [
"MIT"
] | null | null | null | package com.versilistyson.searchflix.presentation.adapters
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import androidx.lifecycle.LifecycleOwner
import androidx.lifecycle.MutableLiveData
import com.squareup.pica... | 35.538462 | 96 | 0.745671 |
11bc83b6567f2bdb5322d1ec050d6988ef23c985 | 1,014 | swift | Swift | ToolBox/Classes/iOS/Views/TBGradientView.swift | sgigou/ToolBox | 06b788db23056eff47e7f09fd1e0eba39e0602ea | [
"MIT"
] | null | null | null | ToolBox/Classes/iOS/Views/TBGradientView.swift | sgigou/ToolBox | 06b788db23056eff47e7f09fd1e0eba39e0602ea | [
"MIT"
] | null | null | null | ToolBox/Classes/iOS/Views/TBGradientView.swift | sgigou/ToolBox | 06b788db23056eff47e7f09fd1e0eba39e0602ea | [
"MIT"
] | null | null | null | //
// GradientView.swift
// ToolBox
//
// Created by Nicolas Berthelot on 05/01/2017.
// Copyright © 2017 Berthelot Nicolas. All rights reserved.
//
import Foundation
public final class TBGradientView: UIView {
@IBInspectable public var startColor: UIColor = UIColor.clear {
didSet {
updateColor()
... | 20.693878 | 65 | 0.66568 |
9635ac5df4dc2f8fb29b41012564f6e7f72a906a | 4,423 | ctp | PHP | app/views/casetas_pendings/view.ctp | ambagasdowa/kml | b56e9eb5671b5dd71485064f481b288c23384033 | [
"MIT"
] | null | null | null | app/views/casetas_pendings/view.ctp | ambagasdowa/kml | b56e9eb5671b5dd71485064f481b288c23384033 | [
"MIT"
] | 16 | 2020-04-30T02:17:12.000Z | 2021-08-07T19:59:38.000Z | cake/console/views/casetas_pendings/view.ctp | ambagasdowa/kml | b56e9eb5671b5dd71485064f481b288c23384033 | [
"MIT"
] | null | null | null |
<div class="casetasPendings view">
<h2><?php __('Casetas Pending');?></h2>
<dl><?php $i = 0; $class = ' class="altrow"';?>
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Id'); ?></dt>
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
<?php echo $casetasPending['CasetasPending']['id']; ?>
</dd>
<dt... | 72.508197 | 257 | 0.598236 |
b14e4578ec61a5f9c6dd3629e2c79ae11bb72108 | 7,573 | h | C | cpp/testing/verifier.h | breakds/monster-avengers | c24e32f45047c20c918e7905044a413d317d1d87 | [
"MIT"
] | 30 | 2015-01-25T06:13:44.000Z | 2020-08-04T09:03:01.000Z | cpp/testing/verifier.h | breakds/monster-avengers | c24e32f45047c20c918e7905044a413d317d1d87 | [
"MIT"
] | 10 | 2015-02-17T16:42:51.000Z | 2021-02-26T05:28:06.000Z | cpp/testing/verifier.h | breakds/monster-avengers | c24e32f45047c20c918e7905044a413d317d1d87 | [
"MIT"
] | 16 | 2015-01-26T02:16:55.000Z | 2019-10-25T15:50:21.000Z | // This is the library for verifying the search results.
#ifndef _MONSTER_AVENGERS_CORE_VERIFIER_
#define _MONSTER_AVENGERS_CORE_VERIFIER_
#include "dataset/dataset.h"
using namespace monster_avengers::dataset;
using monster_avengers::dataset::StringifyEnum;
namespace monster_avengers {
namespace testing {
struc... | 31.293388 | 80 | 0.587614 |
261c98da3d4c18e57793d7163f208fe704e2f2db | 4,398 | java | Java | litr-filters/src/main/java/com/linkedin/android/litr/filter/video/gl/ZoomBlurFilter.java | lu16j/LiTr | 1af0d696c806c4033c0950e2968881b606d76cc4 | [
"BSD-2-Clause"
] | 391 | 2019-10-18T18:19:26.000Z | 2022-03-31T18:30:44.000Z | litr-filters/src/main/java/com/linkedin/android/litr/filter/video/gl/ZoomBlurFilter.java | lu16j/LiTr | 1af0d696c806c4033c0950e2968881b606d76cc4 | [
"BSD-2-Clause"
] | 87 | 2019-12-05T15:25:15.000Z | 2022-03-30T12:28:01.000Z | litr-filters/src/main/java/com/linkedin/android/litr/filter/video/gl/ZoomBlurFilter.java | lu16j/LiTr | 1af0d696c806c4033c0950e2968881b606d76cc4 | [
"BSD-2-Clause"
] | 67 | 2019-10-21T02:04:06.000Z | 2022-03-30T09:35:09.000Z | /*
* Copyright 2018 Masayuki Suda
*
* The MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
* associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modif... | 49.977273 | 143 | 0.672351 |
8e2d2e33449ae8ceb085acf525c2c9965fe420e5 | 1,173 | swift | Swift | ___BigMountainStudio-SwiftUI-Books-And-Tutorials/SwiftUI-Views-Mastery-Bundle/SwiftUI_Views/ImageModifiers/Interpolation/Interpolation_Intro.swift | luannguyen252/my-swift-journey | 788d66f256358dc5aefa2f3093ef74fd572e83b3 | [
"MIT"
] | 14 | 2020-12-09T08:53:39.000Z | 2021-12-07T09:15:44.000Z | ___BigMountainStudio-SwiftUI-Books-And-Tutorials/SwiftUI-Views-Mastery-Bundle/SwiftUI_Views/ImageModifiers/Interpolation/Interpolation_Intro.swift | luannguyen252/my-swift-journey | 788d66f256358dc5aefa2f3093ef74fd572e83b3 | [
"MIT"
] | null | null | null | ___BigMountainStudio-SwiftUI-Books-And-Tutorials/SwiftUI-Views-Mastery-Bundle/SwiftUI_Views/ImageModifiers/Interpolation/Interpolation_Intro.swift | luannguyen252/my-swift-journey | 788d66f256358dc5aefa2f3093ef74fd572e83b3 | [
"MIT"
] | 8 | 2020-12-10T05:59:26.000Z | 2022-01-03T07:49:21.000Z | //
// Interpolation_Intro.swift
// 100Views
//
// Created by Mark Moeykens on 9/16/19.
// Copyright © 2019 Mark Moeykens. All rights reserved.
//
import SwiftUI
struct Interpolation_Intro: View {
var body: some View {
VStack(spacing: 10) {
Text("Interpolation").font(.largeTitle)
... | 28.609756 | 80 | 0.55925 |
658be9dcfaa23140950c37a37f7f9426df3f251c | 1,221 | kt | Kotlin | src/main/kotlin/frc/robot/utils/Translation3d.kt | kobijones111529/RapidReact2022-Kotlin | 8895345d706260f725a837617f1035a79553adc9 | [
"BSD-3-Clause"
] | null | null | null | src/main/kotlin/frc/robot/utils/Translation3d.kt | kobijones111529/RapidReact2022-Kotlin | 8895345d706260f725a837617f1035a79553adc9 | [
"BSD-3-Clause"
] | null | null | null | src/main/kotlin/frc/robot/utils/Translation3d.kt | kobijones111529/RapidReact2022-Kotlin | 8895345d706260f725a837617f1035a79553adc9 | [
"BSD-3-Clause"
] | null | null | null | package frc.robot.utils
class Translation3d : Interpolable<Translation3d> {
private val v: Vector3
var x: Double
get() = v.x
set(value) {
v.x = value
}
var y: Double
get() = v.y
set(value) {
v.y = value
}
var z: Double
get() = v.z
set(value) {
v.z = value
... | 20.694915 | 76 | 0.64783 |
2a8faf4cb597e46530e95b1a2b61e5a92085c883 | 5,891 | java | Java | eu.indenica.config.runtime/src/eu/indenica/config/runtime/RuntimeRuntimeModule.java | inz/monina | 5cd441d3e68a17db0a018e7b8ae88347b80551b9 | [
"Apache-2.0"
] | 1 | 2015-01-09T08:34:03.000Z | 2015-01-09T08:34:03.000Z | eu.indenica.config.runtime/src/eu/indenica/config/runtime/RuntimeRuntimeModule.java | inz/monina | 5cd441d3e68a17db0a018e7b8ae88347b80551b9 | [
"Apache-2.0"
] | null | null | null | eu.indenica.config.runtime/src/eu/indenica/config/runtime/RuntimeRuntimeModule.java | inz/monina | 5cd441d3e68a17db0a018e7b8ae88347b80551b9 | [
"Apache-2.0"
] | null | null | null | /*
* generated by Xtext
*/
package eu.indenica.config.runtime;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.e... | 35.487952 | 90 | 0.68732 |
37997c90abb2af846af282412bed58d456ccf034 | 3,059 | kt | Kotlin | kert-http/src/test/kotlin/ws/leap/kert/http/VertxTestServer.kt | wsleap/kettle | 8333230ddef6e14278b5773193ae2c843ad39393 | [
"Apache-2.0"
] | 25 | 2021-03-23T04:41:15.000Z | 2022-02-04T09:15:51.000Z | kert-http/src/test/kotlin/ws/leap/kert/http/VertxTestServer.kt | wsleap/kettle | 8333230ddef6e14278b5773193ae2c843ad39393 | [
"Apache-2.0"
] | 8 | 2021-05-10T02:08:16.000Z | 2021-08-21T23:21:20.000Z | kert-http/src/test/kotlin/ws/leap/kert/http/VertxTestServer.kt | wsleap/kettle | 8333230ddef6e14278b5773193ae2c843ad39393 | [
"Apache-2.0"
] | 1 | 2021-11-05T00:02:20.000Z | 2021-11-05T00:02:20.000Z | package ws.leap.kert.http
import io.vertx.core.*
import io.vertx.core.http.HttpServer
import io.vertx.core.http.HttpServerOptions
import io.vertx.core.streams.Pump
import io.vertx.ext.web.Router
import io.vertx.kotlin.coroutines.await
import kotlinx.coroutines.runBlocking
import mu.KotlinLogging
// 500 loops with 8K ... | 23.174242 | 147 | 0.647924 |
b89d10715ed14b030e89924cba1028102441bede | 357 | html | HTML | src/pages/line-up/list/line-up-list.component.html | SamVerschueren/eurovision2017 | 86651baf3a3c913fee9981a0606cec6f2f4593d6 | [
"MIT"
] | null | null | null | src/pages/line-up/list/line-up-list.component.html | SamVerschueren/eurovision2017 | 86651baf3a3c913fee9981a0606cec6f2f4593d6 | [
"MIT"
] | null | null | null | src/pages/line-up/list/line-up-list.component.html | SamVerschueren/eurovision2017 | 86651baf3a3c913fee9981a0606cec6f2f4593d6 | [
"MIT"
] | null | null | null | <ion-spinner *ngIf="lineup === null" color="primary"></ion-spinner>
<ion-list *ngIf="lineup">
<line-up-item
*ngFor="let song of lineup"
[order]="song.order"
[title]="song.title"
[picture]="song.picture"
[userScore]="song.userScore"
[country]="song.country"
[artist]="song.artist"
(select)="select.emit(... | 23.8 | 67 | 0.64986 |
40503bb2cc991dc20d35bc01beade7749fc37ad1 | 883 | py | Python | bin/dumb_round.py | rherriman/Avara | eaa68133ac273796b60162673b8f240619cb35ed | [
"MIT"
] | 77 | 2016-10-30T18:37:14.000Z | 2022-02-13T05:02:55.000Z | bin/dumb_round.py | tra/Avara | 5a6b5a4f2cf29e8b2ddf7dd3f422579f37a14dab | [
"MIT"
] | 135 | 2018-09-09T06:46:04.000Z | 2022-01-29T19:33:12.000Z | bin/dumb_round.py | tra/Avara | 5a6b5a4f2cf29e8b2ddf7dd3f422579f37a14dab | [
"MIT"
] | 19 | 2018-09-09T02:02:46.000Z | 2022-03-16T08:21:08.000Z | #!/usr/bin/env python3
import argparse
def dumb_round(num, repeats=6):
s = str(num)
if "." not in s:
return s
if s.endswith(".0"):
return s[:-2]
zeros = "0" * repeats
nines = "9" * repeats
if zeros in s:
return s.split(zeros, 1)[0].rstrip(".")
if nines in s:
... | 24.527778 | 75 | 0.616082 |
29059de9a4aa8e993c70e1df238f3a6dcc31e238 | 1,405 | py | Python | psq/__init__.py | Tomesco/bookshelf-demo-project | 9d422f3aa04edbb3312d3e177caf699653ed6a73 | [
"Apache-2.0"
] | 210 | 2015-07-29T16:50:01.000Z | 2022-03-02T15:24:52.000Z | psq/__init__.py | Tomesco/bookshelf-demo-project | 9d422f3aa04edbb3312d3e177caf699653ed6a73 | [
"Apache-2.0"
] | 60 | 2015-12-03T23:15:57.000Z | 2021-01-21T09:25:42.000Z | psq/__init__.py | Tomesco/bookshelf-demo-project | 9d422f3aa04edbb3312d3e177caf699653ed6a73 | [
"Apache-2.0"
] | 47 | 2015-12-21T06:09:36.000Z | 2021-09-04T13:20:21.000Z | # Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | 27.54902 | 77 | 0.749466 |
53a9a0b20e86b2933c134100a0dc7dca49fd46b2 | 162 | java | Java | src/main/java8/net/finmath/montecarlo/hybridassetinterestrate/RiskFactorID.java | noittom/finmath-lib | 49e673ef1f38e4f011d7e4ab1f170fc5df6108e9 | [
"Apache-2.0"
] | 373 | 2015-01-01T11:27:51.000Z | 2022-03-29T21:51:49.000Z | src/main/java8/net/finmath/montecarlo/hybridassetinterestrate/RiskFactorID.java | noittom/finmath-lib | 49e673ef1f38e4f011d7e4ab1f170fc5df6108e9 | [
"Apache-2.0"
] | 67 | 2015-01-21T08:52:23.000Z | 2021-09-22T20:13:11.000Z | src/main/java8/net/finmath/montecarlo/hybridassetinterestrate/RiskFactorID.java | noittom/finmath-lib | 49e673ef1f38e4f011d7e4ab1f170fc5df6108e9 | [
"Apache-2.0"
] | 184 | 2015-01-05T17:30:18.000Z | 2022-03-28T10:55:29.000Z | package net.finmath.montecarlo.hybridassetinterestrate;
public interface RiskFactorID {
/**
* @return The name of the risk factor.
*/
String getName();
}
| 16.2 | 55 | 0.728395 |
ffdfd13a9d3d36ac38ea73964c3d36b92d7d1071 | 722 | html | HTML | html/fnm.html | slicer69/tldr | 8347a142e7e5722921e9011bd188ffa3a31495c1 | [
"MIT"
] | 1 | 2021-12-25T13:30:17.000Z | 2021-12-25T13:30:17.000Z | html/fnm.html | slicer69/tldr | 8347a142e7e5722921e9011bd188ffa3a31495c1 | [
"MIT"
] | null | null | null | html/fnm.html | slicer69/tldr | 8347a142e7e5722921e9011bd188ffa3a31495c1 | [
"MIT"
] | null | null | null | <b>fnm</b><br><br>
<b>Fast Node.js version manager.</b><br><br><b>Install, uninstall or switch between Node.js versions.</b><br><br><b>More information: <a href="https://github.com/Schniz/fnm">home page</a></b><br><br>
- Install a specific version of Node.js:
<blockquote>fnm install <i>node_version</i></blockquote>
- ... | 40.111111 | 199 | 0.735457 |
267f5acec54cc531532fcd72cf3bedc3fcde2a02 | 814 | swift | Swift | HelloLayout/ReloadableView.swift | HelloCore/HelloLayout | f32983e81a1727ee101d81b5c7f93de329a5d96e | [
"MIT"
] | null | null | null | HelloLayout/ReloadableView.swift | HelloCore/HelloLayout | f32983e81a1727ee101d81b5c7f93de329a5d96e | [
"MIT"
] | null | null | null | HelloLayout/ReloadableView.swift | HelloCore/HelloLayout | f32983e81a1727ee101d81b5c7f93de329a5d96e | [
"MIT"
] | null | null | null | //
// ReloadableView.swift
// HelloLayout
//
// Created by Akkharawat Chayapiwat on 14/6/2562 BE.
//
import UIKit
class ReloadableView: UIView {
init() {
super.init(frame: CGRect.zero)
on("INJECTION_BUNDLE_NOTIFICATION") { [weak self] in
self?.loadView()
}
self.... | 19.853659 | 60 | 0.54914 |
48f5902c2b97c61331b785c71e01040f4a384e05 | 5,133 | swift | Swift | Sources/DoggieMath/Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift | SusanDoggie/Doggie | e841261ec8e5db94a87c8b594844193d9e43e3aa | [
"MIT"
] | 116 | 2015-02-06T17:59:59.000Z | 2022-03-11T23:15:29.000Z | Sources/DoggieMath/Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift | SusanDoggie/Doggie | e841261ec8e5db94a87c8b594844193d9e43e3aa | [
"MIT"
] | 6 | 2016-12-02T03:47:13.000Z | 2020-09-30T14:42:06.000Z | Sources/DoggieMath/Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift | SusanDoggie/Doggie | e841261ec8e5db94a87c8b594844193d9e43e3aa | [
"MIT"
] | 9 | 2016-12-02T03:33:18.000Z | 2022-02-09T08:16:16.000Z | //
// HalfRadix2CooleyTukey.swift
//
// The MIT License
// Copyright (c) 2015 - 2021 Susan Cheng. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without rest... | 34.918367 | 257 | 0.638028 |
0cac9d083e4dfd2daccd29d3da4102e79f646255 | 1,919 | py | Python | neurovault/apps/statmaps/tests/test_qa.py | abitrolly/NeuroVault | e62bc65c8e0e58bff55bb9fa7cf11193dc54d734 | [
"MIT"
] | 68 | 2015-02-07T06:09:49.000Z | 2022-03-03T22:58:33.000Z | neurovault/apps/statmaps/tests/test_qa.py | abitrolly/NeuroVault | e62bc65c8e0e58bff55bb9fa7cf11193dc54d734 | [
"MIT"
] | 436 | 2015-01-01T01:01:13.000Z | 2021-11-07T18:24:00.000Z | neurovault/apps/statmaps/tests/test_qa.py | abitrolly/NeuroVault | e62bc65c8e0e58bff55bb9fa7cf11193dc54d734 | [
"MIT"
] | 60 | 2015-01-10T23:31:26.000Z | 2021-08-10T06:39:57.000Z | import os
import nibabel as nb
import numpy as np
from django.test import TestCase
from neurovault.apps.statmaps.models import BaseStatisticMap
from neurovault.apps.statmaps.utils import is_thresholded, infer_map_type
class QATest(TestCase):
def setUp(self):
this_path = os.path.abspath(os.path.dirname(... | 50.5 | 112 | 0.684211 |
ffec024ea62f7a2f33f638f30b1fb3ca3d0e90b4 | 1,111 | html | HTML | front-end/src/app/user/user-list/user-list.component.html | cismael/SpringBootAngularApp | 30bcf58b73cead0a1c5ebb0269f02d2f1ccbb4b5 | [
"MIT"
] | null | null | null | front-end/src/app/user/user-list/user-list.component.html | cismael/SpringBootAngularApp | 30bcf58b73cead0a1c5ebb0269f02d2f1ccbb4b5 | [
"MIT"
] | 37 | 2021-07-23T23:52:46.000Z | 2022-03-26T16:15:32.000Z | front-end/src/app/user/user-list/user-list.component.html | cismael/SpringBootAngularApp | 30bcf58b73cead0a1c5ebb0269f02d2f1ccbb4b5 | [
"MIT"
] | null | null | null | <div class="container">
<div class="row">
<div class="col">
<section>
<header class="header">
<div class="row">
<div class="col-md-4">
<h1>Users</h1>
</div>
<div class="col-md-6"></div>
<div class="col-md-2">
<button type="button" class="btn btn-primary" (click)="re... | 23.638298 | 102 | 0.50315 |
40cd1a081ca325a5df2b21534eab530a41f3836a | 32,170 | html | HTML | docs/file/packages/core/src/temporal/TemporalQueries.js.html | leejaycoke/js-joda | ff835c3a96128d99f9b75b5a168039517090d89e | [
"BSD-3-Clause"
] | null | null | null | docs/file/packages/core/src/temporal/TemporalQueries.js.html | leejaycoke/js-joda | ff835c3a96128d99f9b75b5a168039517090d89e | [
"BSD-3-Clause"
] | 9 | 2021-09-02T19:41:49.000Z | 2022-03-02T10:26:23.000Z | docs/file/packages/core/src/temporal/TemporalQueries.js.html | leejaycoke/js-joda | ff835c3a96128d99f9b75b5a168039517090d89e | [
"BSD-3-Clause"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base data-ice="baseUrl" href="../../../../../">
<title data-ice="title">packages/core/src/temporal/TemporalQueries.js | js-joda</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/prettify-t... | 86.945946 | 377 | 0.703855 |
5f8e89c38bea8674633d47212c9659bbea313af6 | 11,321 | h | C | source/extensions/common/tap/tap_matcher.h | jaricftw/envoy | 766f3fb8dbdafce402631c43c16fda46ed003462 | [
"Apache-2.0"
] | 1 | 2021-12-10T23:58:57.000Z | 2021-12-10T23:58:57.000Z | source/extensions/common/tap/tap_matcher.h | jaricftw/envoy | 766f3fb8dbdafce402631c43c16fda46ed003462 | [
"Apache-2.0"
] | 30 | 2022-02-17T02:28:37.000Z | 2022-03-31T02:31:02.000Z | source/extensions/common/tap/tap_matcher.h | jaricftw/envoy | 766f3fb8dbdafce402631c43c16fda46ed003462 | [
"Apache-2.0"
] | 1 | 2020-03-28T12:23:29.000Z | 2020-03-28T12:23:29.000Z | #pragma once
#include "envoy/service/tap/v2alpha/common.pb.h"
#include "common/http/header_utility.h"
namespace Envoy {
namespace Extensions {
namespace Common {
namespace Tap {
class Matcher;
using MatcherPtr = std::unique_ptr<Matcher>;
/**
* Base class for all tap matchers.
*
* A high level note on the design... | 37.118033 | 100 | 0.714336 |
3f58a6b173c58487b34faaafe5c19a619d3ed133 | 368 | sql | SQL | sql_templates/insert_genelist.sql | Duke-GCB/PredictionsDB | 066278425890288d9e430a46096a347453301b08 | [
"MIT"
] | null | null | null | sql_templates/insert_genelist.sql | Duke-GCB/PredictionsDB | 066278425890288d9e430a46096a347453301b08 | [
"MIT"
] | 57 | 2016-09-16T15:23:49.000Z | 2021-09-07T15:20:22.000Z | sql_templates/insert_genelist.sql | Duke-GCB/PredictionsDB | 066278425890288d9e430a46096a347453301b08 | [
"MIT"
] | 1 | 2016-09-09T20:03:48.000Z | 2016-09-09T20:03:48.000Z | {# fill gene table in a particular schema with data from another we downloaded #}
insert into {{schema_prefix}}.gene(gene_list, name, common_name, chrom, strand, txstart, txend, gene_begin)
select '{{source_table}}', name, {{common_name}}, chrom, strand, txstart, txend, case strand when '+' then txstart else txend e... | 61.333333 | 131 | 0.730978 |
d25bde476c8c2d672062cd1896546c950381f929 | 276 | php | PHP | app/Models/Contrat.php | awa98/gestion_cnee | 261c447aafc762777460d88377ce844ba3c635ae | [
"MIT"
] | null | null | null | app/Models/Contrat.php | awa98/gestion_cnee | 261c447aafc762777460d88377ce844ba3c635ae | [
"MIT"
] | null | null | null | app/Models/Contrat.php | awa98/gestion_cnee | 261c447aafc762777460d88377ce844ba3c635ae | [
"MIT"
] | null | null | null | <?php
namespace App\Models;
class Contrat extends Eloquent {
protected $table = 'contrats';
public $timestamps = true;
protected $fillable = array('duree', 'date_debut', 'date_fin');
public function entreprises()
{
return $this->hasMany('App\Models\Contrat');
}
} | 17.25 | 64 | 0.699275 |
bfd572ebc8821c6f6b780052980a6b1a9fe33875 | 915 | rs | Rust | common/examples/lowlevel_1.rs | RCasatta/rust-clightning-rpc | 491dca79871c7450d0dc0d4fbf35706f7f01a9d4 | [
"CC0-1.0"
] | null | null | null | common/examples/lowlevel_1.rs | RCasatta/rust-clightning-rpc | 491dca79871c7450d0dc0d4fbf35706f7f01a9d4 | [
"CC0-1.0"
] | null | null | null | common/examples/lowlevel_1.rs | RCasatta/rust-clightning-rpc | 491dca79871c7450d0dc0d4fbf35706f7f01a9d4 | [
"CC0-1.0"
] | null | null | null | extern crate clightningrpc_common;
use serde::{Deserialize, Serialize};
use std::env;
use clightningrpc_common::client;
use clightningrpc_common::types::Response;
/// Example of type definition
#[derive(Debug, Clone, Deserialize, Serialize)]
struct GetInfoResponse {
pub id: String,
}
/// Example of type definit... | 24.72973 | 73 | 0.619672 |
da1858baeec95a8b92f5723caa971485eaaa5a1f | 83 | sql | SQL | fixtures/tests/backend/data/sql/mv_flood_event_world_pop_village_summary.sql | meomancer/inasafe-fba | 7a05cf09795c366afdc2885bcee5777a4a731cd8 | [
"MIT"
] | 1 | 2020-12-01T14:42:12.000Z | 2020-12-01T14:42:12.000Z | fixtures/tests/backend/data/sql/mv_flood_event_world_pop_village_summary.sql | meomancer/inasafe-fba | 7a05cf09795c366afdc2885bcee5777a4a731cd8 | [
"MIT"
] | 50 | 2020-01-10T07:44:34.000Z | 2020-05-27T12:00:52.000Z | fixtures/tests/backend/data/sql/mv_flood_event_world_pop_village_summary.sql | meomancer/inasafe-fba | 7a05cf09795c366afdc2885bcee5777a4a731cd8 | [
"MIT"
] | 7 | 2020-01-13T08:45:42.000Z | 2020-12-07T06:37:11.000Z | select * from mv_flood_event_world_pop_village_summary where flood_event_id = 257;
| 41.5 | 82 | 0.86747 |
74717299cfcca474a862b84c076a0eb0049fe611 | 21,653 | c | C | src/measure_seeing.c | marissakotze/timDIMM | dde00a3bb6ca7c3d9b71e24f9363350a0e2a323f | [
"BSD-3-Clause"
] | 1 | 2021-06-06T15:26:36.000Z | 2021-06-06T15:26:36.000Z | src/measure_seeing.c | marissakotze/timDIMM | dde00a3bb6ca7c3d9b71e24f9363350a0e2a323f | [
"BSD-3-Clause"
] | null | null | null | src/measure_seeing.c | marissakotze/timDIMM | dde00a3bb6ca7c3d9b71e24f9363350a0e2a323f | [
"BSD-3-Clause"
] | 3 | 2015-07-29T15:16:35.000Z | 2017-12-01T13:02:36.000Z | #include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <dc1394/dc1394.h>
#include <math.h>
#include <fitsio.h>
#include <gsl/gsl_statistics.h>
#include <xpa.h>
#include <time.h>
#include <sys/time.h>
#include <string.h>
#include <inttypes.h>
#define NXPA 10
typedef struct _Box {
double x;
double... | 28.19401 | 104 | 0.596176 |
ddf10b6d969b297181e9507f67684ef2285d66b1 | 388 | php | PHP | app/Models/Society.php | RifkiNoviandra/vaccinify_lks | 52ae4abf74deeaf90bd72f77dd89cc578db585d4 | [
"MIT"
] | null | null | null | app/Models/Society.php | RifkiNoviandra/vaccinify_lks | 52ae4abf74deeaf90bd72f77dd89cc578db585d4 | [
"MIT"
] | null | null | null | app/Models/Society.php | RifkiNoviandra/vaccinify_lks | 52ae4abf74deeaf90bd72f77dd89cc578db585d4 | [
"MIT"
] | null | null | null | <?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Society extends Authenticatable
{
use HasFactory;
protected $guarded = [];
public $timestamps = false;
function re... | 19.4 | 55 | 0.729381 |
396d09addf393c416a946b0c024c2dd6c3f085ee | 3,290 | html | HTML | about.html | CodeForChofu/brownbag | bc4422d47b6fc7b0bdbb577e86a0b3684e9dbe19 | [
"MIT"
] | null | null | null | about.html | CodeForChofu/brownbag | bc4422d47b6fc7b0bdbb577e86a0b3684e9dbe19 | [
"MIT"
] | 2 | 2021-05-11T09:20:29.000Z | 2022-02-13T10:00:55.000Z | about.html | CodeForChofu/brownbag | bc4422d47b6fc7b0bdbb577e86a0b3684e9dbe19 | [
"MIT"
] | 3 | 2020-04-07T15:45:13.000Z | 2020-04-15T15:42:17.000Z | <ons-page id="setting-page">
<ons-list>
<ons-list-header>投稿する</ons-list-header>
<ons-list-item expandable>
投稿されたお店をみる
<div class="expandable-content">
<ol style="list-style-type: upper-roman">
<li>お店を探す機能</li>
<ul>
... | 33.232323 | 137 | 0.459574 |
b7a665a865f6f28e0516f6f508ceb74e8df0d725 | 263 | kt | Kotlin | src/main/kotlin/com/github/wakingrufus/eloleague/data/GameData.kt | wakingrufus/elo-league-jfx | 49fdacf104b5bb42ea72ec72f6b36aab33b1b8f8 | [
"MIT"
] | 1 | 2019-03-01T14:11:28.000Z | 2019-03-01T14:11:28.000Z | src/main/kotlin/com/github/wakingrufus/eloleague/data/GameData.kt | wakingrufus/elo-league-jfx | 49fdacf104b5bb42ea72ec72f6b36aab33b1b8f8 | [
"MIT"
] | 9 | 2018-01-05T13:54:14.000Z | 2018-09-06T19:42:55.000Z | src/main/kotlin/com/github/wakingrufus/eloleague/data/GameData.kt | wakingrufus/elo-league-jfx | 49fdacf104b5bb42ea72ec72f6b36aab33b1b8f8 | [
"MIT"
] | 1 | 2020-08-06T20:25:47.000Z | 2020-08-06T20:25:47.000Z | package com.github.wakingrufus.eloleague.data
data class GameData(
val id: String,
val team1Score: Int,
val team2Score: Int,
val timestamp: Long,
val team1PlayerIds: List<String>,
val team2PlayerIds: List<String>
) | 26.3 | 45 | 0.646388 |
0efc7d1104bc3009d37af3da9e785236e395e98a | 782 | swift | Swift | Harvest-SwiftUI-Gallery/Screens/StateDiagram/StateDiagramExample.swift | ctalladen78/Harvest-SwiftUI-Gallery | 2627588b45b9c80e2a7b039403aac9147f213c3d | [
"MIT"
] | 160 | 2019-10-21T02:30:59.000Z | 2022-03-21T00:37:07.000Z | Harvest-SwiftUI-Gallery/Screens/StateDiagram/StateDiagramExample.swift | ctalladen78/Harvest-SwiftUI-Gallery | 2627588b45b9c80e2a7b039403aac9147f213c3d | [
"MIT"
] | 5 | 2019-10-25T00:05:05.000Z | 2020-07-28T09:53:18.000Z | Harvest-SwiftUI-Gallery/Screens/StateDiagram/StateDiagramExample.swift | ctalladen78/Harvest-SwiftUI-Gallery | 2627588b45b9c80e2a7b039403aac9147f213c3d | [
"MIT"
] | 15 | 2019-10-21T16:06:06.000Z | 2022-02-07T13:59:31.000Z | import SwiftUI
import HarvestStore
struct StateDiagramExample: Example
{
var exampleIcon: Image { Image(systemName: "arrow.3.trianglepath") }
var exampleInitialState: Root.State.Current
{
.stateDiagram(.loggedOut)
}
func exampleView(store: Store<Root.Input, Root.State>.Proxy) -> AnyView
... | 26.965517 | 75 | 0.652174 |
0f354997a6e054cf38993e59e04c3fb92ff246de | 590 | lua | Lua | lualib/base/common.lua | ChestnutGames/chestnut | 720cf88779f480191ae16fb1ba4da4597e5797d9 | [
"MIT"
] | null | null | null | lualib/base/common.lua | ChestnutGames/chestnut | 720cf88779f480191ae16fb1ba4da4597e5797d9 | [
"MIT"
] | null | null | null | lualib/base/common.lua | ChestnutGames/chestnut | 720cf88779f480191ae16fb1ba4da4597e5797d9 | [
"MIT"
] | 1 | 2019-11-07T16:06:03.000Z | 2019-11-07T16:06:03.000Z | function cc.genpk_1(_1, ... )
-- body
return _1
end
function cc.genpk_2(_1, _2, ... )
-- body
local pk = (~(1 << 33 -1) & _1)
pk = pk << 32
pk = (pk | (~(1 << 33 -1) & _2 ))
return pk
end
function cc.genpk_3(_1, _2, ...)
local pk = (~(1 << 9 - 1) & _1)
pk = pk << 24
pk = (pk | (~(1 << 25 - 1)... | 15.945946 | 37 | 0.50339 |
a505aced90f23cc7bcb14e6a5b94d0a8041734e0 | 12,561 | swift | Swift | Source/Core/RXCDiffArray+Row.swift | ruixingchen/RXCDiffArray | cd532f1cda438c17002f5a19fc0a1eacb834d702 | [
"MIT"
] | 1 | 2019-09-20T04:51:51.000Z | 2019-09-20T04:51:51.000Z | Source/Core/RXCDiffArray+Row.swift | ruixingchen/RXCDiffArray | cd532f1cda438c17002f5a19fc0a1eacb834d702 | [
"MIT"
] | null | null | null | Source/Core/RXCDiffArray+Row.swift | ruixingchen/RXCDiffArray | cd532f1cda438c17002f5a19fc0a1eacb834d702 | [
"MIT"
] | null | null | null | //
// RXCDiffArray+Row.swift
// RXCDiffArray
//
// Created by ruixingchen on 12/3/19.
// Copyright © 2019 ruixingchen. All rights reserved.
//
import Foundation
extension RXCDiffArray where Element: RDASectionElementProtocol, Index==Int {
public typealias RowElement = Any
public typealias RowIndex = Int
... | 47.760456 | 209 | 0.62304 |
6fd79f165250115a04c0e12a55f18f8f33b887c6 | 327 | asm | Assembly | non_regression/other_x86_linux_43.s.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | 1 | 2021-02-28T21:31:18.000Z | 2021-02-28T21:31:18.000Z | non_regression/other_x86_linux_43.s.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | null | null | null | non_regression/other_x86_linux_43.s.asm | LRGH/plasmasm | 4cd50546c3dc895763d72dd60b7c46179c1916bc | [
"Apache-2.0"
] | null | null | null | .file "common_test_3.c"
.text
.p2align 4,,15
# ----------------------
.globl c1_v1
.type c1_v1, @function
c1_v1:
.cfi_startproc
rep; ret
.cfi_endproc
.size c1_v1, .-c1_v1
# ----------------------
.symver c1_v1,c1@@VER1
.ident "GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3"
.section .note.GNU-stack,"",@pr... | 20.4375 | 51 | 0.568807 |
af45833b5c194f8538030bd8b126870462de5a47 | 411 | rb | Ruby | attributes/install.rb | Shcerbak/filebeat-cookbook | 06da0500e32746cec4d4ff69adf158378ddc82b3 | [
"Apache-2.0"
] | null | null | null | attributes/install.rb | Shcerbak/filebeat-cookbook | 06da0500e32746cec4d4ff69adf158378ddc82b3 | [
"Apache-2.0"
] | null | null | null | attributes/install.rb | Shcerbak/filebeat-cookbook | 06da0500e32746cec4d4ff69adf158378ddc82b3 | [
"Apache-2.0"
] | null | null | null | default['filebeat']['repository']['uri'] = 'https://packages.elastic.co/beats/apt'
default['filebeat']['repository']['dist'] = 'stable'
default['filebeat']['repository']['repo'] = ['main']
default['filebeat']['repository']['key'] = 'https://packages.elasticsearch.org/GPG-KEY-elasticsearch'
default['filebeat']['apt']['o... | 58.714286 | 101 | 0.671533 |
40562f9a5dfaaeecd2d4171a09b2cd5d966c4114 | 3,780 | swift | Swift | tests/FlatBuffers.Benchmarks.swift/Sources/FlatBuffers.Benchmarks.swift/main.swift | zxscn/flatbuffers | 431c96afa3611b191229bd5242fdc2291571b789 | [
"Apache-2.0"
] | 2 | 2021-01-26T07:10:40.000Z | 2022-03-30T18:22:19.000Z | tests/FlatBuffers.Benchmarks.swift/Sources/FlatBuffers.Benchmarks.swift/main.swift | zxscn/flatbuffers | 431c96afa3611b191229bd5242fdc2291571b789 | [
"Apache-2.0"
] | 8 | 2021-02-24T10:53:27.000Z | 2021-02-24T13:37:22.000Z | tests/FlatBuffers.Benchmarks.swift/Sources/FlatBuffers.Benchmarks.swift/main.swift | zxscn/flatbuffers | 431c96afa3611b191229bd5242fdc2291571b789 | [
"Apache-2.0"
] | 1 | 2021-01-29T09:52:20.000Z | 2021-01-29T09:52:20.000Z | /*
* Copyright 2021 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | 28.421053 | 88 | 0.658201 |
bcbb3149a9d6dcbccfae6a67398dacf223e47670 | 1,444 | js | JavaScript | src/components/Tours/single-tour.component.js | ChallaRavi/gatsby-img-component | b41ea7dbf1ce62f768e58dc5e00cfbf7e0ebebab | [
"MIT"
] | 1 | 2021-05-30T11:01:00.000Z | 2021-05-30T11:01:00.000Z | src/components/Tours/single-tour.component.js | ChallaRavi/gatsby-img-component | b41ea7dbf1ce62f768e58dc5e00cfbf7e0ebebab | [
"MIT"
] | 4 | 2021-03-10T02:01:10.000Z | 2022-02-18T16:58:20.000Z | src/components/Tours/single-tour.component.js | ChallaRavi/gatsby-img-component | b41ea7dbf1ce62f768e58dc5e00cfbf7e0ebebab | [
"MIT"
] | null | null | null | import React from "react"
import { FaMap } from "react-icons/fa"
import Image from 'gatsby-image'
import tourstyle from '../../css-modules/tour.module.css'
import { Link } from "gatsby"
import PropTypes from 'prop-types'
export const SingleTour = ({ tour }) => {
console.log(tour)
const { text, price, country, da... | 29.469388 | 72 | 0.617036 |
9640da37092add813a9c0e31d967b82902c896ca | 214 | php | PHP | app/General/Concretes/Repositories/TransactionRepository.php | Scalcar/MyOnlineBank | aeed09570f93e3b629f1866e3140d1cfe5883b43 | [
"MIT"
] | 1 | 2021-11-22T21:36:09.000Z | 2021-11-22T21:36:09.000Z | app/General/Concretes/Repositories/TransactionRepository.php | Scalcar/MyOnlineBank | aeed09570f93e3b629f1866e3140d1cfe5883b43 | [
"MIT"
] | null | null | null | app/General/Concretes/Repositories/TransactionRepository.php | Scalcar/MyOnlineBank | aeed09570f93e3b629f1866e3140d1cfe5883b43 | [
"MIT"
] | null | null | null | <?php
namespace App\General\Concretes\Repositories;
use App\General\Abstracts\Repository;
use App\Models\Transaction;
class TransactionRepository extends Repository
{
protected $model = Transaction::class;
} | 19.454545 | 46 | 0.799065 |
8e618df7b9c124959b7f628b0eb2ff5e87da7d84 | 6,263 | rb | Ruby | spec/controllers/participates_controller_spec.rb | muescha/website | f59d02d17aff4a12328be37e0d6ce6be7b2717cb | [
"MIT"
] | null | null | null | spec/controllers/participates_controller_spec.rb | muescha/website | f59d02d17aff4a12328be37e0d6ce6be7b2717cb | [
"MIT"
] | null | null | null | spec/controllers/participates_controller_spec.rb | muescha/website | f59d02d17aff4a12328be37e0d6ce6be7b2717cb | [
"MIT"
] | null | null | null | require 'spec_helper'
def assert_response_for single_event, format, query_params={}
assert_template(/single_events\/_participants|participates\/update/) if format == :js
assert_redirected_to event_single_event_path(single_event.event, single_event, query_params) if format == :html
end
describe ParticipatesControl... | 42.89726 | 175 | 0.723455 |
4748d12469f7a00c0905d8e3c025fa358f284ae0 | 476 | html | HTML | layouts/partials/related-posts.html | SeteMares/kinchaku_theme | ee9e37a5816fdf14a01cc9cc246161ae23e437f2 | [
"MIT"
] | null | null | null | layouts/partials/related-posts.html | SeteMares/kinchaku_theme | ee9e37a5816fdf14a01cc9cc246161ae23e437f2 | [
"MIT"
] | null | null | null | layouts/partials/related-posts.html | SeteMares/kinchaku_theme | ee9e37a5816fdf14a01cc9cc246161ae23e437f2 | [
"MIT"
] | null | null | null | <li class="media mb-3">
<a title="{{ .Title }}" href="{{ .RelPermalink }}" class="d-none d-sm-block">
<img class="mr-3 img-thumbnail img-fluid" width="200" alt="{{ .Title }}"
src="{{ with .Params.heroBackground }}{{ . | absURL }}{{ end }}" alt="{{ .Params.title }}">
</a>
<div class="media-body">
<h5... | 36.615385 | 97 | 0.52521 |
5b2e4b9eba6a432e803957aa81ce39c917fe7db8 | 431 | h | C | src/svnrev.h | Lotharyx/kicad-librarian | 379e09c0c5113e75ac2ad2008b0e14b01daa831f | [
"Apache-2.0"
] | 41 | 2016-11-04T11:36:22.000Z | 2022-02-09T20:10:05.000Z | src/svnrev.h | Lotharyx/kicad-librarian | 379e09c0c5113e75ac2ad2008b0e14b01daa831f | [
"Apache-2.0"
] | 10 | 2016-11-04T09:53:58.000Z | 2022-02-23T15:49:03.000Z | src/svnrev.h | Lotharyx/kicad-librarian | 379e09c0c5113e75ac2ad2008b0e14b01daa831f | [
"Apache-2.0"
] | 15 | 2016-11-01T17:16:57.000Z | 2021-06-26T12:33:27.000Z | /* This file was generated by the "svnrev" utility
* (http://www.compuphase.com/svnrev.htm).
* You should not modify it manually, as it may be re-generated.
*
* $Revision: 5907$
* $Date: 2018-12-14$
*/
#ifndef SVN_REV_H
#define SVN_REV_H
#define SVN_REV 5907
#define SVN_REVSTR "1.4.5907"
#define ... | 22.684211 | 65 | 0.686775 |
04b6f52dc49236eeafd94fb252ad3038cd6b5482 | 1,445 | html | HTML | zstack_dashboard/static/templates/cluster/attachPrimaryStorage.html | code1k/zstack-dashboard | 6f2e6db7f7734012be75fa3a3ba8f1c385826e75 | [
"Apache-2.0"
] | null | null | null | zstack_dashboard/static/templates/cluster/attachPrimaryStorage.html | code1k/zstack-dashboard | 6f2e6db7f7734012be75fa3a3ba8f1c385826e75 | [
"Apache-2.0"
] | null | null | null | zstack_dashboard/static/templates/cluster/attachPrimaryStorage.html | code1k/zstack-dashboard | 6f2e6db7f7734012be75fa3a3ba8f1c385826e75 | [
"Apache-2.0"
] | null | null | null | <div kendo-window="attachPrimaryStorage__" k-visible="false" k-options="attachPrimaryStorageOptions__">
<div>
<div class="alert alert-warning col-sm-21" ng-show="!hasPrimaryStorage()">
{{"cluster.attachPrimaryStorage.hasPrimaryStorage()" | translate}} <a href="/#/primaryStorage">{{"cluster.attac... | 68.809524 | 241 | 0.636678 |
4063d38eaf4852881f358cbea1fc33adfe640f68 | 3,071 | py | Python | openstack/tests/unit/csbs/v1/test_policy.py | wangrui1121/huaweicloud-sdk-python | 240abe00288760115d1791012d4e3c4592d77ad1 | [
"Apache-2.0"
] | 43 | 2018-12-19T08:39:15.000Z | 2021-07-21T02:45:43.000Z | openstack/tests/unit/csbs/v1/test_policy.py | wangrui1121/huaweicloud-sdk-python | 240abe00288760115d1791012d4e3c4592d77ad1 | [
"Apache-2.0"
] | 11 | 2019-03-17T13:28:56.000Z | 2020-09-23T23:57:50.000Z | openstack/tests/unit/csbs/v1/test_policy.py | wangrui1121/huaweicloud-sdk-python | 240abe00288760115d1791012d4e3c4592d77ad1 | [
"Apache-2.0"
] | 47 | 2018-12-19T05:14:25.000Z | 2022-03-19T15:28:30.000Z | # -*- coding:utf-8 -*-
# Copyright 2018 Huawei Technologies Co.,Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use
# this file except in compliance with the License. You may obtain a copy of the
# License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by... | 34.505618 | 83 | 0.660371 |
d952802c5956ff0e878f555080fee740876ca749 | 1,187 | rs | Rust | specifications/src/status.rs | onnovalkering/brane | e2a0e5a8659db6454fd73d8cd99bc610b84043ea | [
"Apache-2.0"
] | 5 | 2020-09-14T09:42:23.000Z | 2021-09-25T17:10:22.000Z | specifications/src/status.rs | onnovalkering/brane | e2a0e5a8659db6454fd73d8cd99bc610b84043ea | [
"Apache-2.0"
] | 20 | 2020-11-11T23:04:23.000Z | 2021-12-01T00:59:31.000Z | specifications/src/status.rs | onnovalkering/brane | e2a0e5a8659db6454fd73d8cd99bc610b84043ea | [
"Apache-2.0"
] | 2 | 2021-06-04T11:36:17.000Z | 2021-08-02T11:29:51.000Z | use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use serde_with::skip_serializing_none;
#[skip_serializing_none]
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StatusInfo {
pub created: DateTime<Utc>,
pub instruction_id: i32,
pub invocation_id... | 23.74 | 51 | 0.646167 |
48f1a1b4525ad00874cc334655bd9aa79431af47 | 449 | h | C | ios/bc3.1/Frameworks/AlibcTradeSDK.framework/Headers/AliJSBridgeDynamicHandler.h | RyanFu/DSJAPP | db6d8fa4719052dcb4de3557e966d633eeff8fcb | [
"BSD-3-Clause"
] | 1 | 2019-03-13T15:46:58.000Z | 2019-03-13T15:46:58.000Z | ios/bc3.1/Frameworks/AlibcTradeSDK.framework/Headers/AliJSBridgeDynamicHandler.h | RyanFu/DSJAPP | db6d8fa4719052dcb4de3557e966d633eeff8fcb | [
"BSD-3-Clause"
] | null | null | null | ios/bc3.1/Frameworks/AlibcTradeSDK.framework/Headers/AliJSBridgeDynamicHandler.h | RyanFu/DSJAPP | db6d8fa4719052dcb4de3557e966d633eeff8fcb | [
"BSD-3-Clause"
] | null | null | null | /*
* AliJSBridgeDynamicHandler.h
*
* 阿里百川电商
* 项目名称:阿里巴巴电商 AlibcTradeSDK
* 版本号:3.1.1.14
* 发布时间:2016-12-04
* 开发团队:阿里巴巴百川商业化团队
* 阿里巴巴电商SDK答疑群号:1229144682(阿里旺旺)
* Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
*/
#import <Foundation/Foundation.h>
#import "ALiHybridContext.h"
//继承该类,并且实现一个如下格式的函数即... | 21.380952 | 72 | 0.741648 |
9e5bc04ed67dee27311d6dabf51cee0a124a5a5c | 688 | swift | Swift | Source/LinkedinSwiftConfiguration.swift | simformsolutions/SSLinkedIn | a2a7135e919209410ba075de663af52affc0308b | [
"MIT"
] | 3 | 2018-11-26T09:51:45.000Z | 2019-04-05T07:15:59.000Z | Source/LinkedinSwiftConfiguration.swift | simformsolutions/SSLinkedIn | a2a7135e919209410ba075de663af52affc0308b | [
"MIT"
] | null | null | null | Source/LinkedinSwiftConfiguration.swift | simformsolutions/SSLinkedIn | a2a7135e919209410ba075de663af52affc0308b | [
"MIT"
] | null | null | null | // LinkedinSwiftApplication.m
// LinkedinSwift
//
// Created by PranayPatel on 11/05/18.
// Copyright © 2018 Simform Solutions Pvt.Ltd. All rights reserved.
//
import UIKit
import Foundation
class LinkedinSwiftConfiguration {
let clientId: String?
let clientSecret: String?
let state: String?
let p... | 25.481481 | 117 | 0.681686 |
4ed9aecf52b78e36522197d9ddd00809b1eb51d0 | 446 | kt | Kotlin | app/src/main/java/io/github/wulkanowy/data/db/dao/ConferenceDao.kt | MRmlik12/wulkanowy | 15280857aab83c0c8f270feaa9b8f322ddb150c2 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/io/github/wulkanowy/data/db/dao/ConferenceDao.kt | MRmlik12/wulkanowy | 15280857aab83c0c8f270feaa9b8f322ddb150c2 | [
"Apache-2.0"
] | 54 | 2021-06-12T06:45:25.000Z | 2022-03-28T00:37:04.000Z | app/src/main/java/io/github/wulkanowy/data/db/dao/ConferenceDao.kt | MRmlik12/wulkanowy | 15280857aab83c0c8f270feaa9b8f322ddb150c2 | [
"Apache-2.0"
] | null | null | null | package io.github.wulkanowy.data.db.dao
import androidx.room.Dao
import androidx.room.Query
import io.github.wulkanowy.data.db.entities.Conference
import kotlinx.coroutines.flow.Flow
import javax.inject.Singleton
@Dao
@Singleton
interface ConferenceDao : BaseDao<Conference> {
@Query("SELECT * FROM Conferences WH... | 27.875 | 93 | 0.784753 |
76cb4db8b2a27517f39c441707740d5bf4577e25 | 1,842 | h | C | Applications/Podcasts/MTSetPlaybackQueueUtil.h | lechium/tvOS135Headers | 46cd30d3f0f7962eaa0c3f925cd71f414c65e2ac | [
"MIT"
] | 2 | 2020-07-26T20:30:54.000Z | 2020-08-10T04:26:23.000Z | Applications/Podcasts/MTSetPlaybackQueueUtil.h | lechium/tvOS135Headers | 46cd30d3f0f7962eaa0c3f925cd71f414c65e2ac | [
"MIT"
] | 1 | 2020-07-26T20:45:31.000Z | 2020-08-09T09:30:46.000Z | Applications/Podcasts/MTSetPlaybackQueueUtil.h | lechium/tvOS135Headers | 46cd30d3f0f7962eaa0c3f925cd71f414c65e2ac | [
"MIT"
] | null | null | null | //
// Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Jun 10 2020 10:03:13).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <objc/NSObject.h>
@interface MTSetPlaybackQueueUtil : NSObject
{
}
+ (long long)_automaticCommandStatusForRequestStatus:(long long)arg1; ... | 73.68 | 283 | 0.813246 |
8774ad14e503585cf3793c40d6efa69455490f45 | 11,605 | html | HTML | src/app/user-interviewer/home/home.component.html | praku12/angular | 8d9bbcef5a4a00825f001182a303c9179f2dc742 | [
"MIT"
] | null | null | null | src/app/user-interviewer/home/home.component.html | praku12/angular | 8d9bbcef5a4a00825f001182a303c9179f2dc742 | [
"MIT"
] | null | null | null | src/app/user-interviewer/home/home.component.html | praku12/angular | 8d9bbcef5a4a00825f001182a303c9179f2dc742 | [
"MIT"
] | null | null | null |
<!-- <div class="home">
<div class="container-fluid">
<mat-toolbar>
<h5 class="form-group walkintype" style="margin-left: 5px;">
ongoing-interview
</h5>
</mat-toolbar>
<mat-toolbar>
<div class="hiring_status ">
<img src="assets/img/Rectangle.png" style="width: 100%;">
... | 42.509158 | 229 | 0.621025 |
be651f2ed1a787154081975638fa856bca437063 | 8,099 | rs | Rust | tests/src/lib.rs | casper-ecosystem/kv-storage-contract | 8eda3ae30c29f40bd7a0c1c7b4199fd49f6083b8 | [
"Apache-2.0"
] | 2 | 2021-09-06T04:24:24.000Z | 2021-09-22T02:11:55.000Z | tests/src/lib.rs | casper-ecosystem/kv-storage-contract | 8eda3ae30c29f40bd7a0c1c7b4199fd49f6083b8 | [
"Apache-2.0"
] | 5 | 2021-04-20T11:54:40.000Z | 2022-03-25T18:35:35.000Z | tests/src/lib.rs | casper-ecosystem/kv-storage-contract | 8eda3ae30c29f40bd7a0c1c7b4199fd49f6083b8 | [
"Apache-2.0"
] | 4 | 2021-01-23T18:24:11.000Z | 2021-09-26T12:26:00.000Z | #[cfg(test)]
mod kv_storage;
#[cfg(test)]
mod tests {
use super::kv_storage;
use casper_types::{
account::AccountHash,
bytesrepr::{Bytes, FromBytes, ToBytes},
AsymmetricType, CLTyped, Key, PublicKey, U128, U256, U512,
};
use kv_storage::KVstorageContract;
use std::collection... | 33.192623 | 98 | 0.543647 |
af769dbb7663dc0e28e9b2bebb4a9deb128e36ab | 826 | rb | Ruby | spec/models/request_spec.rb | gferrarocamus/a-social-network | 3cf07614580726ea755c47fc6189da86a4681559 | [
"MIT"
] | 2 | 2019-10-07T12:53:29.000Z | 2020-01-31T17:17:05.000Z | spec/models/request_spec.rb | jeton-th/travelers-network | 334bc2c9842a51e13e162f08b0d072a356b0bc66 | [
"Ruby",
"MIT"
] | 13 | 2019-05-13T14:34:46.000Z | 2022-03-30T23:08:26.000Z | spec/models/request_spec.rb | jeton-th/travelers-network | 334bc2c9842a51e13e162f08b0d072a356b0bc66 | [
"Ruby",
"MIT"
] | 1 | 2019-08-29T13:32:46.000Z | 2019-08-29T13:32:46.000Z | # frozen_string_literal: true
require 'rails_helper'
RSpec.describe Request, type: :model do
let(:user) { create(:user) }
let(:friend) { create(:user) }
let(:request) { create(:request, sender: user, receiver: friend) }
it 'should be a valid request' do
expect(request).to be_valid
end
it 'should not... | 26.645161 | 84 | 0.715496 |
dfdf313dd6b6fd1f6b652ace14cf6f32eae60134 | 3,377 | tsx | TypeScript | src/components/parts/_legacy/publishing-calendar/PublishingCalendar.tsx | navikt/nav-enonicxp-frontend | acc589af3614209c20cf552a5483e9fbafb05abb | [
"MIT"
] | 3 | 2021-05-26T07:12:29.000Z | 2022-01-25T19:55:28.000Z | src/components/parts/_legacy/publishing-calendar/PublishingCalendar.tsx | navikt/nav-enonicxp-frontend | acc589af3614209c20cf552a5483e9fbafb05abb | [
"MIT"
] | 113 | 2021-04-06T08:55:38.000Z | 2022-03-31T10:12:01.000Z | src/components/parts/_legacy/publishing-calendar/PublishingCalendar.tsx | navikt/nav-enonicxp-frontend | acc589af3614209c20cf552a5483e9fbafb05abb | [
"MIT"
] | null | null | null | import * as React from 'react';
import { Heading, BodyLong, Ingress } from '@navikt/ds-react';
import { BEM } from '../../../../utils/classnames';
import { translator } from '../../../../translations';
import './PublishingCalendar.less';
import {
PublishingCalendarChildren,
PublishingCalendarEntries,
Publi... | 33.107843 | 103 | 0.400651 |
39df88644a75896ea182b2d7fcf54c2a3170d3d5 | 602 | java | Java | src/main/java/com/github/minyk/morphlinesmr/shaded/com/googlecode/jcsv/writer/CSVColumnJoiner.java | chenxubai/morphline-mr-hfile | 1d17c69c6c56e4dd2d78398550d3ead0524a74d0 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/github/minyk/morphlinesmr/shaded/com/googlecode/jcsv/writer/CSVColumnJoiner.java | chenxubai/morphline-mr-hfile | 1d17c69c6c56e4dd2d78398550d3ead0524a74d0 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/github/minyk/morphlinesmr/shaded/com/googlecode/jcsv/writer/CSVColumnJoiner.java | chenxubai/morphline-mr-hfile | 1d17c69c6c56e4dd2d78398550d3ead0524a74d0 | [
"Apache-2.0"
] | null | null | null | package com.github.minyk.morphlinesmr.shaded.com.googlecode.jcsv.writer;
import com.github.minyk.morphlinesmr.shaded.com.googlecode.jcsv.CSVStrategy;
/**
* The csv column joiner receives an array of strings and joines it
* to a single string that represents a line of the csv file.
*
*/
public interface CSVColumnJ... | 28.666667 | 76 | 0.744186 |
5bc913d54db98ffd385d4bf51bea060f22cf2107 | 3,571 | h | C | Gossip/GSCall.h | isabella232/aircall-gossip | f5fb40ee1797656b363a4d341e00417483d442a2 | [
"Unlicense"
] | 2 | 2016-11-09T15:48:01.000Z | 2017-05-17T19:22:37.000Z | Gossip/GSCall.h | aircall/aircall-gossip | f5fb40ee1797656b363a4d341e00417483d442a2 | [
"Unlicense"
] | 1 | 2021-02-23T13:47:49.000Z | 2021-02-23T13:47:49.000Z | Gossip/GSCall.h | isabella232/aircall-gossip | f5fb40ee1797656b363a4d341e00417483d442a2 | [
"Unlicense"
] | 1 | 2020-11-11T17:32:32.000Z | 2020-11-11T17:32:32.000Z | //
// GSCall.h
// Gossip
//
// Created by Chakrit Wichian on 7/9/12.
//
#import <Foundation/Foundation.h>
#import "GSAccount.h"
#import "GSRingback.h"
/// Call session states.
typedef enum {
GSCallStatusReady = 0, ///< Call is ready to be made/pickup.
GSCallStatusCalling = 1, ///< Call is ringing.
GSC... | 39.241758 | 143 | 0.735928 |
015a51b52b9c178f77876882ea72af7820cf5967 | 359 | swift | Swift | Sources/Graphaello/Processing/Code Generstion/CodeTransformable/String+CodeTransformable.swift | eliperkins/Graphaello | a74aa71f194b45c6df56d6855649a088f6793523 | [
"MIT"
] | null | null | null | Sources/Graphaello/Processing/Code Generstion/CodeTransformable/String+CodeTransformable.swift | eliperkins/Graphaello | a74aa71f194b45c6df56d6855649a088f6793523 | [
"MIT"
] | null | null | null | Sources/Graphaello/Processing/Code Generstion/CodeTransformable/String+CodeTransformable.swift | eliperkins/Graphaello | a74aa71f194b45c6df56d6855649a088f6793523 | [
"MIT"
] | null | null | null | //
// String+CodeTransformable.swift
// Graphaello
//
// Created by Mathias Quintero on 11.12.19.
// Copyright © 2019 Mathias Quintero. All rights reserved.
//
import Foundation
import Stencil
extension String: CodeTransformable {
func code(using context: Stencil.Context, arguments: [Any?]) throws -> Str... | 18.894737 | 83 | 0.679666 |
92232ab5dd4c9d05ab14075287a7fcaad7d99e87 | 966 | ddl | SQL | oracle_script/SCHEMA/BASE_SCRIPTS/role.ddl | BrettPWRE/HDB | be7cd4f20064f3f0599810ebf4c6fe85e67ccfac | [
"Apache-2.0"
] | null | null | null | oracle_script/SCHEMA/BASE_SCRIPTS/role.ddl | BrettPWRE/HDB | be7cd4f20064f3f0599810ebf4c6fe85e67ccfac | [
"Apache-2.0"
] | null | null | null | oracle_script/SCHEMA/BASE_SCRIPTS/role.ddl | BrettPWRE/HDB | be7cd4f20064f3f0599810ebf4c6fe85e67ccfac | [
"Apache-2.0"
] | null | null | null | set echo on
set feedback on
spool hdb_roles.out
-- ALL ROLE PASSWORDS REMOVED By M. Bogner SUtron Corporation
-- June 2011 due to issues passworded roles have with ORACLE 11g
--create role app_role identified by PASSWD;
-- create role derivation_role identified by PASSWD; removed by CP project
--create... | 30.1875 | 79 | 0.769151 |
94c98f244fe31bfac51455209d4c7dd6c063c254 | 3,322 | swift | Swift | ReactiveCocoaCatalog/Catalog.swift | inamiy/ReactiveCocoaCatalog | b630267ea2f22f30883606bff9e1789e25f7cc08 | [
"MIT"
] | 62 | 2015-09-17T08:38:47.000Z | 2021-03-21T10:11:47.000Z | ReactiveCocoaCatalog/Catalog.swift | inamiy/ReactiveCocoaCatalog | b630267ea2f22f30883606bff9e1789e25f7cc08 | [
"MIT"
] | 1 | 2016-08-17T12:46:05.000Z | 2016-08-17T12:46:05.000Z | ReactiveCocoaCatalog/Catalog.swift | inamiy/ReactiveCocoaCatalog | b630267ea2f22f30883606bff9e1789e25f7cc08 | [
"MIT"
] | 3 | 2016-04-13T11:41:02.000Z | 2018-07-18T10:40:51.000Z | //
// Catalog.swift
// ReactiveCocoaCatalog
//
// Created by Yasuhiro Inami on 2015-09-16.
// Copyright © 2015 Yasuhiro Inami. All rights reserved.
//
import UIKit
struct Catalog
{
let title: String?
let description: String?
let scene: AnyScene
let selected: Bool
static func allCatalogs() -> ... | 32.568627 | 87 | 0.512342 |
996357a7e02bbfba90ce6e738a1c37f7b9876d22 | 1,651 | c | C | gcc-gcc-7_3_0-release/gcc/testsuite/gcc.target/i386/avx-vzeroall-1.c | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gcc.target/i386/avx-vzeroall-1.c | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gcc.target/i386/avx-vzeroall-1.c | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | /* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */
#include "avx-check.h"
static void
avx_test (void)
{
__m256i src;
#ifdef __x86_64__
char reg_save[16][32];
char d[16][32];
#else
char reg_save[8][32];
char d[8][32];
#endif
int s[8] = {1, 2, 3, 4, 5, 6, 7, 8}... | 31.150943 | 65 | 0.633555 |
263f32ccc7c7ef3aae99ee5f3221843848abd941 | 5,273 | java | Java | namesrv/src/main/java/remote/NameSrvRemotingHandler.java | zexho994/Jinx | 3c5e7018aaab4b147f27b82dc8c5c45d19a8a5b6 | [
"Apache-2.0"
] | 1 | 2022-03-12T01:36:33.000Z | 2022-03-12T01:36:33.000Z | namesrv/src/main/java/remote/NameSrvRemotingHandler.java | zexho994/Jinx | 3c5e7018aaab4b147f27b82dc8c5c45d19a8a5b6 | [
"Apache-2.0"
] | 1 | 2022-03-11T14:34:49.000Z | 2022-03-12T01:35:00.000Z | namesrv/src/main/java/remote/NameSrvRemotingHandler.java | zexho994/Jinx | 3c5e7018aaab4b147f27b82dc8c5c45d19a8a5b6 | [
"Apache-2.0"
] | 1 | 2022-03-08T04:56:11.000Z | 2022-03-08T04:56:11.000Z | package remote;
import enums.MessageType;
import io.netty.channel.ChannelHandlerContext;
import lombok.extern.log4j.Log4j2;
import manager.BrokerManager;
import manager.TopicManager;
import message.*;
import model.BrokerData;
import netty.protocal.RemotingCommand;
import netty.server.NettyServerHandler;
import utils.B... | 45.068376 | 103 | 0.636639 |
fed22f3bee802d251c5bf49e586e443db614f196 | 457 | asm | Assembly | Tejas-Simulator/PIN/pin-2.14/source/tools/ToolUnitTests/inline_opt_test_df_ia32.asm | markoshorro/tejas_knl | 5e772aef46362d8bec8ad6d5427b9bcff9be5cfe | [
"Apache-2.0"
] | 17 | 2021-07-10T13:22:26.000Z | 2022-02-09T20:11:39.000Z | pin_kit/source/tools/ToolUnitTests/inline_opt_test_df_ia32.asm | sawansib/SNIPER | 45ec1eeb09b81a7250bc1a1aaa452f16b2b7f497 | [
"MIT"
] | 4 | 2021-08-18T14:07:24.000Z | 2022-01-24T16:38:06.000Z | pin_kit/source/tools/ToolUnitTests/inline_opt_test_df_ia32.asm | sawansib/SNIPER | 45ec1eeb09b81a7250bc1a1aaa452f16b2b7f497 | [
"MIT"
] | 11 | 2016-07-01T02:21:06.000Z | 2020-11-23T08:29:22.000Z | PUBLIC SetDf
.686
.XMM
.model flat, c
.code
SetDf PROC
std
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax + edx]
lea eax, [eax ... | 10.880952 | 24 | 0.49453 |
229f5620d224525da732c7eb06a16d722db23812 | 64 | html | HTML | old-photos/skanepask-2003/dest/pic_1021.html | bagder/daniel.haxx.se | c031f3e8f2d6ee726b62f290c3c932ee28b6808a | [
"CC0-1.0"
] | 4 | 2021-09-03T15:25:17.000Z | 2022-01-03T07:50:22.000Z | old-photos/skanepask-2003/dest/pic_1021.html | bagder/daniel.haxx.se | c031f3e8f2d6ee726b62f290c3c932ee28b6808a | [
"CC0-1.0"
] | 1 | 2022-02-02T18:18:41.000Z | 2022-02-02T22:19:39.000Z | old-photos/skanepask-2003/dest/pic_1021.html | bagder/daniel.haxx.se | c031f3e8f2d6ee726b62f290c3c932ee28b6808a | [
"CC0-1.0"
] | 1 | 2022-02-02T18:04:51.000Z | 2022-02-02T18:04:51.000Z | <a href="../IMG_1021.JPG"><img border=0 src="1021-big.jpg"></a>
| 32 | 63 | 0.625 |
997800c188883065e0794539092c3a27c34d6aa9 | 515 | c | C | 006/005/first_drv/first_drv_test.c | rjm5678/arm-linux | 287abf4d0f9190cb8e916b4313dc504d23d0b56f | [
"MIT"
] | null | null | null | 006/005/first_drv/first_drv_test.c | rjm5678/arm-linux | 287abf4d0f9190cb8e916b4313dc504d23d0b56f | [
"MIT"
] | null | null | null | 006/005/first_drv/first_drv_test.c | rjm5678/arm-linux | 287abf4d0f9190cb8e916b4313dc504d23d0b56f | [
"MIT"
] | null | null | null |
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv)
{
int val = 1;
int fd = 0;
fd = open("/dev/first_drv", O_RDWR);
if (fd<0) printf("can't open file first_drv\n");
if (argc!=2)
{
prin... | 13.205128 | 50 | 0.504854 |
0baf24ee5d1b26effaaf32a63a0631c55fec4a7f | 16,201 | swift | Swift | Carthage/Checkouts/judokit/Source/Session.swift | Ryce/flickrpickr | aa5137f36e48931fd3259789404c57b2c4d09c7f | [
"MIT"
] | null | null | null | Carthage/Checkouts/judokit/Source/Session.swift | Ryce/flickrpickr | aa5137f36e48931fd3259789404c57b2c4d09c7f | [
"MIT"
] | null | null | null | Carthage/Checkouts/judokit/Source/Session.swift | Ryce/flickrpickr | aa5137f36e48931fd3259789404c57b2c4d09c7f | [
"MIT"
] | null | null | null | //
// Session.swift
// Judo
//
// Copyright (c) 2016 Alternative Payments Ltd
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the... | 37.073227 | 193 | 0.603666 |
53e984ba296fcf683faa9eaba5518ec27b9dc44a | 837 | java | Java | src/main/java/com/qs/core/parser/QSToken.java | qianshui423/qs | ba59805799f7381f05712c1f7e0828550e0a80b2 | [
"Apache-2.0"
] | 8 | 2019-09-23T11:29:25.000Z | 2022-02-18T10:41:02.000Z | src/main/java/com/qs/core/parser/QSToken.java | qianshui423/qs | ba59805799f7381f05712c1f7e0828550e0a80b2 | [
"Apache-2.0"
] | 1 | 2022-02-18T11:44:15.000Z | 2022-02-18T11:44:15.000Z | src/main/java/com/qs/core/parser/QSToken.java | qianshui423/qs | ba59805799f7381f05712c1f7e0828550e0a80b2 | [
"Apache-2.0"
] | 1 | 2021-02-05T21:50:54.000Z | 2021-02-05T21:50:54.000Z | package com.qs.core.parser;
public class QSToken {
public static final int TYPE_VALUE = 1; // QSExample primitive value: string
public static final int TYPE_AND = 2; // &
public static final int TYPE_EOF = -1; // end of file
public int type;
public String value;
public QSToken(int type, Strin... | 26.15625 | 80 | 0.528076 |
5f475403e1db3ef5f56ffbe50e7dbbf1619476ed | 5,060 | ts | TypeScript | packages/schema/test/properties.test.ts | wesselvdv/schema | b8a5860a1104e625180bd4d2731888a421b4423a | [
"MIT"
] | 16 | 2021-05-12T23:38:35.000Z | 2022-03-08T19:03:24.000Z | packages/schema/test/properties.test.ts | wesselvdv/schema | b8a5860a1104e625180bd4d2731888a421b4423a | [
"MIT"
] | 195 | 2021-05-07T08:25:03.000Z | 2022-03-29T01:33:54.000Z | packages/schema/test/properties.test.ts | wesselvdv/schema | b8a5860a1104e625180bd4d2731888a421b4423a | [
"MIT"
] | 3 | 2021-06-01T08:21:31.000Z | 2022-01-07T12:12:45.000Z | import * as T from "@effect-ts/core/Effect"
import * as Ex from "@effect-ts/core/Effect/Exit"
import * as O from "@effect-ts/core/Option"
import * as fc from "fast-check"
import * as S from "../src"
import { number, string } from "../src"
import * as Arbitrary from "../src/Arbitrary"
import * as Encoder from "../src/E... | 27.955801 | 87 | 0.604348 |
92e1b523f627b060c2a04f9167f8af03045c75e7 | 1,238 | h | C | include/tvision/internal/stdioctl.h | GerHobbelt/tvision | b5eb6be607707eaad1b4687926cbf99175fc26b9 | [
"MIT"
] | null | null | null | include/tvision/internal/stdioctl.h | GerHobbelt/tvision | b5eb6be607707eaad1b4687926cbf99175fc26b9 | [
"MIT"
] | null | null | null | include/tvision/internal/stdioctl.h | GerHobbelt/tvision | b5eb6be607707eaad1b4687926cbf99175fc26b9 | [
"MIT"
] | null | null | null | #ifndef TVISION_STDIOCTL_H
#define TVISION_STDIOCTL_H
#include <tvision/tv.h>
#include <cstdio>
#ifdef _TV_UNIX
class StdioCtl {
int fds[3];
FILE *files[3];
int ttyfd;
FILE *infile, *outfile;
StdioCtl() { setUp(); }
~StdioCtl() { tearDown(); }
void setUp();
void tearDown();
st... | 17.942029 | 68 | 0.631664 |
2a059939b6e8aabccdedb25d6fc1ae4da695f8c5 | 4,586 | swift | Swift | Sources/WallpapperExif/Program.swift | luciascarlet/wallpapper | bfc034cd1f12015efd2395e757fd1db4f94bf307 | [
"MIT"
] | 1 | 2021-03-30T07:44:49.000Z | 2021-03-30T07:44:49.000Z | Sources/WallpapperExif/Program.swift | luciascarlet/wallpapper | bfc034cd1f12015efd2395e757fd1db4f94bf307 | [
"MIT"
] | null | null | null | Sources/WallpapperExif/Program.swift | luciascarlet/wallpapper | bfc034cd1f12015efd2395e757fd1db4f94bf307 | [
"MIT"
] | null | null | null | //
// Program.swift
// wallpapper-exif
//
// Created by Marcin Czachurski on 21/10/2021.
// Copyright © 2021 Marcin Czachurski. All rights reserved.
//
import Foundation
import WallpapperLib
class Program {
let consoleIO = ConsoleIO()
var inputFileNames: [String] = []
var wallpapperItems: [WallpapperI... | 35.276923 | 132 | 0.606411 |
7a4b8dcfcfc3fe13c722371f8e074ace5a726457 | 1,437 | rb | Ruby | spec/unit/resource/api200/logical_switch_group_spec.rb | nabhajit-ray/oneview-sdk-ruby | ea698d9fe0bb61f4499792946b2788eca8272a8f | [
"Apache-2.0"
] | 15 | 2016-07-11T15:57:00.000Z | 2022-02-21T09:17:49.000Z | spec/unit/resource/api200/logical_switch_group_spec.rb | nabhajit-ray/oneview-sdk-ruby | ea698d9fe0bb61f4499792946b2788eca8272a8f | [
"Apache-2.0"
] | 218 | 2016-05-02T15:12:28.000Z | 2021-07-01T15:21:13.000Z | spec/unit/resource/api200/logical_switch_group_spec.rb | nabhajit-ray/oneview-sdk-ruby | ea698d9fe0bb61f4499792946b2788eca8272a8f | [
"Apache-2.0"
] | 29 | 2016-05-10T15:22:57.000Z | 2022-02-18T07:10:17.000Z | require 'spec_helper'
RSpec.describe OneviewSDK::LogicalSwitchGroup do
include_context 'shared context'
describe '#initialize' do
it 'sets the defaults correctly' do
item = OneviewSDK::LogicalSwitchGroup.new(@client_200)
expect(item['category']).to eq('logical-switch-groups')
expect(item['st... | 36.846154 | 106 | 0.622825 |
b295b548fdf4ca5ce983c90c7c2a5b0d7cf15ccd | 866 | swift | Swift | Example/UncommonCrypto/AppDelegate.swift | lionheart/UncommonCrypto | 5426b352b4278b5cb6bdc4d453c9c32ab7984c26 | [
"Apache-2.0"
] | 1 | 2020-09-17T16:09:12.000Z | 2020-09-17T16:09:12.000Z | Example/UncommonCrypto/AppDelegate.swift | lionheart/UncommonCrypto | 5426b352b4278b5cb6bdc4d453c9c32ab7984c26 | [
"Apache-2.0"
] | null | null | null | Example/UncommonCrypto/AppDelegate.swift | lionheart/UncommonCrypto | 5426b352b4278b5cb6bdc4d453c9c32ab7984c26 | [
"Apache-2.0"
] | null | null | null | //
// AppDelegate.swift
// UncommonCrypto
//
// Created by Dan Loewenherz on 06/25/2016.
// Copyright (c) 2016 Dan Loewenherz. All rights reserved.
//
import UIKit
import UncommonCrypto
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ app... | 27.0625 | 151 | 0.652425 |
6d12ad6b8f9818aea2e6136853e392a4e8453568 | 120 | sql | SQL | services/stats-api/src/main/resources/io/github/oasis/db/scripts/players/updateTeam.sql | erenerdemli/oasis | 2cfb0297756c6c1421c9b2732f5ef5c5712eb525 | [
"Apache-2.0"
] | 16 | 2019-11-25T18:56:21.000Z | 2022-03-18T12:38:36.000Z | services/stats-api/src/main/resources/io/github/oasis/db/scripts/players/updateTeam.sql | erenerdemli/oasis | 2cfb0297756c6c1421c9b2732f5ef5c5712eb525 | [
"Apache-2.0"
] | 99 | 2018-08-21T03:40:43.000Z | 2022-03-08T21:31:45.000Z | services/stats-api/src/main/resources/io/github/oasis/db/scripts/players/updateTeam.sql | erenerdemli/oasis | 2cfb0297756c6c1421c9b2732f5ef5c5712eb525 | [
"Apache-2.0"
] | 5 | 2020-10-27T21:16:28.000Z | 2021-04-15T11:36:04.000Z | UPDATE
OA_TEAM
SET
avatar_ref = :avatarRef,
color_code = :colorCode,
updated_at = :ts
WHERE
id = :id | 15 | 28 | 0.625 |
76d3a58a5e03e1e8d412656805739b58341aaaf9 | 156 | h | C | samples/TTCatalog/Classes/TabBarTestController.h | yiutsunchan/three20 | 4cd5ff62d155b8a3f66ce87dfef036bc30a673b9 | [
"Apache-2.0"
] | 18 | 2015-02-09T00:10:04.000Z | 2020-01-25T23:26:56.000Z | samples/TTCatalog/Classes/TabBarTestController.h | sco/three20 | d031df354d144ee0dea7688c3e402548a7622516 | [
"Apache-2.0"
] | 2 | 2015-01-21T03:37:48.000Z | 2020-02-29T06:48:20.000Z | samples/TTCatalog/Classes/TabBarTestController.h | sco/three20 | d031df354d144ee0dea7688c3e402548a7622516 | [
"Apache-2.0"
] | 3 | 2016-09-20T08:17:27.000Z | 2019-12-28T14:08:14.000Z | #import <Three20/Three20.h>
@interface TabBarTestController : TTViewController {
TTTabBar* _tabBar1;
TTTabBar* _tabBar2;
TTTabBar* _tabBar3;
}
@end
| 15.6 | 52 | 0.75 |
39fffde458bb59416bdf30dfde0388c9f5ce0667 | 9,193 | java | Java | src/main/java/net/starlark/java/eval/StarlarkSemantics.java | kjlubick/bazel | 6f0913e6e75477ec297430102a8213333a12967e | [
"Apache-2.0"
] | 1 | 2022-03-21T20:45:53.000Z | 2022-03-21T20:45:53.000Z | src/main/java/net/starlark/java/eval/StarlarkSemantics.java | kjlubick/bazel | 6f0913e6e75477ec297430102a8213333a12967e | [
"Apache-2.0"
] | 8 | 2017-07-11T15:39:02.000Z | 2017-07-21T16:09:02.000Z | src/main/java/net/starlark/java/eval/StarlarkSemantics.java | kjlubick/bazel | 6f0913e6e75477ec297430102a8213333a12967e | [
"Apache-2.0"
] | 1 | 2022-01-12T18:08:14.000Z | 2022-01-12T18:08:14.000Z | // Copyright 2019 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by appl... | 37.522449 | 100 | 0.675079 |
fddef8c025462248f6db115ee861330c6cc799fb | 1,699 | kt | Kotlin | src/main/kotlin/no/skatteetaten/aurora/boober/feature/CommonLabelFeature.kt | furode/boober | ccd89bc227d44f2fe3ad8a64224ac8dd19175289 | [
"Apache-2.0"
] | 21 | 2017-06-01T09:33:38.000Z | 2022-01-04T07:52:38.000Z | src/main/kotlin/no/skatteetaten/aurora/boober/feature/CommonLabelFeature.kt | furode/boober | ccd89bc227d44f2fe3ad8a64224ac8dd19175289 | [
"Apache-2.0"
] | 112 | 2017-06-01T20:02:04.000Z | 2022-03-29T21:26:08.000Z | src/main/kotlin/no/skatteetaten/aurora/boober/feature/CommonLabelFeature.kt | furode/boober | ccd89bc227d44f2fe3ad8a64224ac8dd19175289 | [
"Apache-2.0"
] | 8 | 2017-06-01T14:23:03.000Z | 2022-01-04T07:52:41.000Z | package no.skatteetaten.aurora.boober.feature
import no.skatteetaten.aurora.boober.model.AuroraConfigFieldHandler
import no.skatteetaten.aurora.boober.model.AuroraContextCommand
import no.skatteetaten.aurora.boober.model.AuroraDeploymentSpec
import no.skatteetaten.aurora.boober.model.AuroraResource
import no.skatteeta... | 37.755556 | 115 | 0.732195 |
052add7587fa8107fa4cd273e6cf063f77f32746 | 292,299 | asm | Assembly | usertests.asm | Nehoray-Marziano/XV6-Scheduling-Policies | 70b706d3c974853acfffa9adaefbaa8ab5da5890 | [
"MIT-0"
] | null | null | null | usertests.asm | Nehoray-Marziano/XV6-Scheduling-Policies | 70b706d3c974853acfffa9adaefbaa8ab5da5890 | [
"MIT-0"
] | null | null | null | usertests.asm | Nehoray-Marziano/XV6-Scheduling-Policies | 70b706d3c974853acfffa9adaefbaa8ab5da5890 | [
"MIT-0"
] | null | null | null |
_usertests: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
return randstate;
}
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55... | 42.227535 | 240 | 0.433621 |
9c7e2f0d82a09addaaa7419842bb7e8d23f7e7ed | 2,536 | js | JavaScript | wp-content/themes/bimber/js/mycred-notifications.js | aniskchaou/BLOG-COMET-CMS | c1fbaeaffb4cdb62082049d7e76f0a10fcefe9c1 | [
"MIT"
] | null | null | null | wp-content/themes/bimber/js/mycred-notifications.js | aniskchaou/BLOG-COMET-CMS | c1fbaeaffb4cdb62082049d7e76f0a10fcefe9c1 | [
"MIT"
] | null | null | null | wp-content/themes/bimber/js/mycred-notifications.js | aniskchaou/BLOG-COMET-CMS | c1fbaeaffb4cdb62082049d7e76f0a10fcefe9c1 | [
"MIT"
] | null | null | null | /**************************
*
* MyCred Notifications
* (images, video)
*
**************************/
(function ($) {
'use strict';
g1.myCredNotifications = function () {
var setTimeoutForFirstNotification = function() {
if ( $('.g1-mycred-notice-overlay-standard').attr('data-g1-mycre... | 36.753623 | 142 | 0.527208 |
8561285cd9f739f26b5399d928f0290177a627f2 | 1,328 | js | JavaScript | examples/naver-map-basic.js | jsdelivrbot/playground-4 | 5639675b31e29ca6c76698f3b778cc5d038484c2 | [
"BSD-2-Clause-FreeBSD"
] | 4 | 2019-01-24T06:05:34.000Z | 2021-10-20T06:09:57.000Z | examples/naver-map-basic.js | jsdelivrbot/playground-4 | 5639675b31e29ca6c76698f3b778cc5d038484c2 | [
"BSD-2-Clause-FreeBSD"
] | null | null | null | examples/naver-map-basic.js | jsdelivrbot/playground-4 | 5639675b31e29ca6c76698f3b778cc5d038484c2 | [
"BSD-2-Clause-FreeBSD"
] | 1 | 2018-12-09T04:07:28.000Z | 2018-12-09T04:07:28.000Z | const map = new naver.maps.Map('map', {
center: new naver.maps.LatLng(37.5666805, 126.9784147),
zoom: 4
});
const jeju = new naver.maps.LatLng(33.3590628, 126.534361),
busan = new naver.maps.LatLng(35.1797865, 129.0750194),
dokdo = new naver.maps.LatLngBounds(
new naver.maps.LatLng(37.2380651, 131.8562652)... | 26.56 | 76 | 0.703313 |
7407f9c5ee50604ced7ac61bf921dabc9fbd236f | 2,317 | h | C | speedplugin.h | XMuli/lfxSpeed | 1bc58d743df9f00e034a9f9e17528dd5a897274e | [
"MIT"
] | null | null | null | speedplugin.h | XMuli/lfxSpeed | 1bc58d743df9f00e034a9f9e17528dd5a897274e | [
"MIT"
] | null | null | null | speedplugin.h | XMuli/lfxSpeed | 1bc58d743df9f00e034a9f9e17528dd5a897274e | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2020 xmuli
*
* Author: xmuli(偕臧) xmulitech@gmail.com
* GitHub: https://github.com/xmuli
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, inc... | 29.705128 | 109 | 0.754855 |
59624c82ea6a9ad7dd4f7de12548234493c930c0 | 701 | h | C | aws-cpp-sdk-dataexchange/include/aws/dataexchange/model/ExceptionCause.h | perfectrecall/aws-sdk-cpp | fb8cbebf2fd62720b65aeff841ad2950e73d8ebd | [
"Apache-2.0"
] | 1 | 2022-02-12T08:09:30.000Z | 2022-02-12T08:09:30.000Z | aws-cpp-sdk-dataexchange/include/aws/dataexchange/model/ExceptionCause.h | perfectrecall/aws-sdk-cpp | fb8cbebf2fd62720b65aeff841ad2950e73d8ebd | [
"Apache-2.0"
] | 1 | 2021-10-14T16:57:00.000Z | 2021-10-18T10:47:24.000Z | aws-cpp-sdk-dataexchange/include/aws/dataexchange/model/ExceptionCause.h | ravindra-wagh/aws-sdk-cpp | 7d5ff01b3c3b872f31ca98fb4ce868cd01e97696 | [
"Apache-2.0"
] | 1 | 2021-11-09T11:58:03.000Z | 2021-11-09T11:58:03.000Z | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dataexchange/DataExchange_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace DataExchange
{
namespace Model
{
enum class ExceptionCause... | 21.90625 | 86 | 0.774608 |
2667b4188c781f9f553c97a40fc825a3f8c3750f | 51,106 | java | Java | corpus/norm-class/eclipse.jdt.core/5028.java | masud-technope/ACER-Replication-Package-ASE2017 | cb7318a729eb1403004d451a164c851af2d81f7a | [
"MIT"
] | null | null | null | corpus/norm-class/eclipse.jdt.core/5028.java | masud-technope/ACER-Replication-Package-ASE2017 | cb7318a729eb1403004d451a164c851af2d81f7a | [
"MIT"
] | null | null | null | corpus/norm-class/eclipse.jdt.core/5028.java | masud-technope/ACER-Replication-Package-ASE2017 | cb7318a729eb1403004d451a164c851af2d81f7a | [
"MIT"
] | null | null | null | copyright ibm corporation rights reserved program accompanying materials terms eclipse license accompanies distribution http eclipse org legal epl html contributors ibm corporation initial api implementation org eclipse jdt internal core dom rewrite java util list org eclipse jdt core dom org eclipse jdt internal compi... | 51,106 | 51,106 | 0.876042 |
9ba377a985ae17dab352f69f7b44267dc90e5480 | 3,055 | js | JavaScript | public/js/userAwaitingBlogs.js | ALI-KAMRAN/laravel | 8a7198f7131f19bdfcd520f62015e2ee2e8a2b9c | [
"MIT"
] | null | null | null | public/js/userAwaitingBlogs.js | ALI-KAMRAN/laravel | 8a7198f7131f19bdfcd520f62015e2ee2e8a2b9c | [
"MIT"
] | null | null | null | public/js/userAwaitingBlogs.js | ALI-KAMRAN/laravel | 8a7198f7131f19bdfcd520f62015e2ee2e8a2b9c | [
"MIT"
] | null | null | null |
$(document).ready(function(){
// datatable code
var table = $('#awaiting').DataTable({
processing: true,
serverSide: true,
responsive: true,
autoWidth: true,
order: [0,'desc'],
"ajax": {
'url' : baseUrl+'/getUserAwaitingBlogs',
'type': 'get',
},
... | 25.247934 | 177 | 0.452046 |
e78a61acaec62e74bd58df8e73a2d27214805ee9 | 1,714 | js | JavaScript | .cache/sync-requires.js | 0zzz/gatsby-starter-muses | 50bb4878f658b0b2486f6f028a714065dc9693b3 | [
"MIT"
] | null | null | null | .cache/sync-requires.js | 0zzz/gatsby-starter-muses | 50bb4878f658b0b2486f6f028a714065dc9693b3 | [
"MIT"
] | null | null | null | .cache/sync-requires.js | 0zzz/gatsby-starter-muses | 50bb4878f658b0b2486f6f028a714065dc9693b3 | [
"MIT"
] | null | null | null | // prefer default export if available
const preferDefault = m => m && m.default || m
exports.layouts = {
"layout---index": preferDefault(require("/Users/linzhou/Documents/project/gatsby-starter-muses/.cache/layouts/index.js"))
}
exports.components = {
"component---src-templates-blog-post-js": preferDefault(requi... | 68.56 | 150 | 0.754376 |
b9084044d012ca23c2e30927c864e0ff22a42e23 | 6,888 | c | C | WiFiSwitch/firmware/main/http_server/http_server.c | maygli/Datcha | 55fc3397334dfb41f4d8308847ee2ed981574399 | [
"MIT"
] | 1 | 2022-02-25T06:07:47.000Z | 2022-02-25T06:07:47.000Z | WiFiSwitch/firmware/main/http_server/http_server.c | maygli/Datcha | 55fc3397334dfb41f4d8308847ee2ed981574399 | [
"MIT"
] | null | null | null | WiFiSwitch/firmware/main/http_server/http_server.c | maygli/Datcha | 55fc3397334dfb41f4d8308847ee2ed981574399 | [
"MIT"
] | null | null | null | /*
* Copyright (c) 2022 Maygli (mmaygli@gmail.com)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify,... | 38.266667 | 97 | 0.674071 |
99605fce3ab3dc068e98d064042bbf3957084758 | 1,349 | kt | Kotlin | src/main/kotlin/com/github/kerubistan/kerub/data/ispn/AuditEntryDaoImpl.kt | fossabot/kerub | 50ac690f71b018f3db60c6b44f203902baecf50a | [
"Apache-2.0"
] | 16 | 2016-01-03T12:57:25.000Z | 2020-08-04T10:36:30.000Z | src/main/kotlin/com/github/kerubistan/kerub/data/ispn/AuditEntryDaoImpl.kt | fossabot/kerub | 50ac690f71b018f3db60c6b44f203902baecf50a | [
"Apache-2.0"
] | 205 | 2015-10-27T11:38:26.000Z | 2021-05-09T11:53:18.000Z | src/main/kotlin/com/github/kerubistan/kerub/data/ispn/AuditEntryDaoImpl.kt | fossabot/kerub | 50ac690f71b018f3db60c6b44f203902baecf50a | [
"Apache-2.0"
] | 4 | 2018-01-26T14:07:12.000Z | 2019-12-05T20:49:30.000Z | package com.github.kerubistan.kerub.data.ispn
import com.github.kerubistan.kerub.data.AuditEntryDao
import com.github.kerubistan.kerub.model.AddEntry
import com.github.kerubistan.kerub.model.AuditEntry
import com.github.kerubistan.kerub.model.DeleteEntry
import com.github.kerubistan.kerub.model.UpdateEntry
import com.... | 34.589744 | 93 | 0.772424 |
62ef12bc6ac651bc282c95bd6d55990e3eee659f | 850 | kt | Kotlin | android/src/main/kotlin/com/wshunli/flutter/flutter_qr_code/custom/ZXingLayout.kt | wshunli/flutter_qr_code | 06b55692578edc4559d79fa68168022772c520a6 | [
"Apache-2.0"
] | 3 | 2020-11-03T06:16:08.000Z | 2020-11-06T03:30:46.000Z | android/src/main/kotlin/com/wshunli/flutter/flutter_qr_code/custom/ZXingLayout.kt | wshunli/flutter_qr_code | 06b55692578edc4559d79fa68168022772c520a6 | [
"Apache-2.0"
] | 2 | 2020-11-03T05:52:44.000Z | 2021-04-06T07:22:40.000Z | android/src/main/kotlin/com/wshunli/flutter/flutter_qr_code/custom/ZXingLayout.kt | wshunli/flutter_qr_code | 06b55692578edc4559d79fa68168022772c520a6 | [
"Apache-2.0"
] | 1 | 2020-11-03T06:16:13.000Z | 2020-11-03T06:16:13.000Z | package com.wshunli.flutter.flutter_qr_code.custom
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.widget.FrameLayout
import com.wshunli.flutter.flutter_qr_code.R
/**
* author : wshunli
* email : wshunli@qq.com
* date : 2020/8/16 11:06
* descripti... | 25.757576 | 114 | 0.712941 |
96767c8b50e71d7f432fc9606c115747a1186313 | 124 | php | PHP | resources/views/increment.blade.php | sophiasudiacal/Reddit-Clone | 11379ea1d48aac9e70e8fb7c7874a518519a0f99 | [
"MIT"
] | null | null | null | resources/views/increment.blade.php | sophiasudiacal/Reddit-Clone | 11379ea1d48aac9e70e8fb7c7874a518519a0f99 | [
"MIT"
] | null | null | null | resources/views/increment.blade.php | sophiasudiacal/Reddit-Clone | 11379ea1d48aac9e70e8fb7c7874a518519a0f99 | [
"MIT"
] | null | null | null | @extends('layouts.master')
@section('content')
<h3>Your number:</h3>
{{ $int }}
<h3>Plus one:</h3>
{{ $inc }}
@stop | 12.4 | 26 | 0.556452 |