text
stringlengths
7
1.01M
/* * Maintained by brightSPARK Labs. * www.brightsparklabs.com * * Refer to LICENSE at repository root for license details. */ package com.brightsparklabs.asanti.validator.rule; import static com.google.common.base.Preconditions.checkNotNull; import com.brightsparklabs.asanti.data.AsnData; import com.brightspar...
package com.synopsys.integration.alert.channel; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Ma...
/** * Copyright 2018 Smartrplace UG * * 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 agree...
package org.andengine.engine.options.resolutionpolicy; import org.andengine.engine.options.resolutionpolicy.BaseResolutionPolicy; import android.view.View.MeasureSpec; /** * Based on CroppedResolutionPolicy by jgibbs, added methods to get corners coordinates * http://www.andengine.org/forums/gles2/targeting-multip...
package cgeo.geocaching.sorting; import java.util.Comparator; import cgeo.geocaching.Geocache; public interface CacheComparator extends Comparator<Geocache> { }
package com.kunal.cyclicSort; class FirstMissingPositive { // Given an unsorted array containing numbers, find the smallest missing positive number in it. public static int findNumber(int[] nums) { int i = 0; while (i < nums.length) { if (nums[i] > 0 && nums[i] <= nums.length && num...
// Copyrights (c) 2018-2019 FIRST, 2020 Highlanders FRC. All Rights Reserved. package frc.robot.commands.defaults; import edu.wpi.first.wpilibj2.command.CommandBase; import frc.robot.subsystems.MagIntake; public class MagIntakeDefault extends CommandBase { private MagIntake magIntake; public MagIntakeDefa...
/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * 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 appli...
package com.chihurumnanya.itransmit.activities; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.view.MenuItem; import android.widget.Toast; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.database.DatabaseReference; import com.google.fir...
/* * MIT License * * Copyright (c) 2017 dkzwm * Copyright (c) 2015 liaohuqiu.net * * 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 th...
package be.renaudraas.playground.util; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import java.util.ArrayList; import java.util.Collection; import java.util.List; import be.renaudraas.playground.business.mapper.Mapper; public class ListUtils { private ListUtils() { ...
package hr.unidu.oop.p03; public class GreskaStatic { private int x, y; public static void main(String[] args) { // gre�ka kod prevo�enja jer se iz static metode // poku�avaju koristiti varijable i metode koje nisu static //x=3; //y=5; // System.out.println(x + " + " +...
/* * Copyright 2014 Netflix, 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...
package org.company.asm; import org.company.App; import org.company.junit.JUnitTest; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.tree.AnnotationNode; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.MethodNode; import java.io.IOException; ...
package com.example.grpwork; import androidx.appcompat.app.AppCompatActivity; import android.app.ActivityOptions; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.util.Pair; import android.view.View; import android.view.animation.Animation; import android.view.animati...
package com.example.moviestvshowsinfo.Utils.JSONUtils; import android.text.TextUtils; import com.example.moviestvshowsinfo.MovieTvShowsDetails; import com.example.moviestvshowsinfo.R; import com.example.moviestvshowsinfo.Utils.Utils; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObjec...
package br.com.zupacademy.rayllanderson.ecommerce.products.questions.requests; import br.com.zupacademy.rayllanderson.ecommerce.products.model.Product; import br.com.zupacademy.rayllanderson.ecommerce.products.questions.model.Question; import br.com.zupacademy.rayllanderson.ecommerce.users.model.User; import com.faste...
package com.bsu.sed.controller; import com.bsu.sed.dto.ContactDto; import com.bsu.sed.model.SystemAttributeKey; import com.bsu.sed.model.TextKey; import com.bsu.sed.model.Tiles; import com.bsu.sed.service.MailService; import com.bsu.sed.service.SystemAttributeService; import com.bsu.sed.service.TextService; i...
package search.ex1.screen.event; import io.jmix.ui.screen.*; import search.ex1.entity.Event; @UiController("sample_Event.browse") @UiDescriptor("event-browse.xml") @LookupComponent("eventsTable") public class EventBrowse extends StandardLookup<Event> { }
package p03_CardsWithPower; public enum Rank { ACE (14), TWO (2), THREE (3), FOUR (4), FIVE (5), SIX (6), SEVEN (7), EIGHT (8), NINE (9), TEN (10), JACK (11), QUEEN (12), KING (13); private int rankPower; Rank(int rankPower) { this.rankPower = rank...
package com.nanosai.streamops.storage.file; public class StreamStorageBlockFS { private String fileName = null; private long firstOffset = 0; protected long fileLength = 0; public StreamStorageBlockFS(String fileName, long fileLength, long firstOffset) { this.fileName ...
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.codeInsight.completion; import com.intellij.openapi.editor.Caret; import com.intellij.openapi.editor.Editor; import com.intellij.psi.PsiFile; import com.inte...
/* TallerTower: An RPG Copyright (C) 2011-2012 Eric Ahnell Any questions should be directed to the author via email at: products@puttysoftware.com */ package com.puttysoftware.tallertower.creatures.castes.predefined; import com.puttysoftware.tallertower.creatures.castes.Caste; import com.puttysoftware.tallertower.c...
/* * Copyright 2015 Akyruu (akyruu@hotmail.com) * * 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 ...
package abi39_0_0.expo.modules.camera; import android.Manifest; import android.content.Context; import android.content.pm.PackageManager; import android.graphics.Color; import android.media.CamcorderProfile; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.view.View; import co...
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package com.flechow.pinboard.security; import com.flechow.pinboard.domain.User; import com.flechow.pinboard.repository.UserRepository; import org.hibernate.validator.internal.constraintvalidators.hv.EmailValidator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.security.core.Grante...
/* * Copyright (C) 2017 The Android Open Source Project * * 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 app...
/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF license...
package com.example.macaron.mobile_project.Activity; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.design.widget.NavigationView; import android.support.v4.app.FragmentAc...
package com.github.jitwxs.sample.netty.example6; import com.github.jitwxs.nettystudy.example6.BaseMessageProto; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelInitializer; import io.netty.channel.ChannelPipeline; import io.netty.channel.EventLoopGroup; ...
package com.example.tests; import java.io.File; import java.io.IOException; import java.util.Iterator; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import static com.example.tests.ContactDataGenerator.loadContactsFromXmlFile; import static org.junit.Assert.assertThat; import stati...
/* * * This file is part of the iText (R) project. Copyright (c) 1998-2019 iText Group NV * Authors: Bruno Lowagie, Paulo Soares, et al. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3 * as published by the Free ...
class Solution { private int size; private List<List<String>> solutions = new ArrayList<List<String>>(); public List<List<String>> solveNQueens(int n) { size = n; char emptyBoard[][] = new char[size][size]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { ...
// Copyright 2018 Google LLC // // 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 ...
public class TestaWhile { public static void main(String args[]) { int contador = 0; while (contador <= 10) { System.out.println(contador); contador = contador + 1; } } }
package com.flanks255.simplybackpacks.items; import com.flanks255.simplybackpacks.SimplyBackpacks; import net.minecraft.item.Rarity; import net.minecraft.util.ResourceLocation; /** * Represents a singleton instance of a backpack. Sets up each backpack in it's own way */ public enum Backpack { COMMON(Rarity.COMM...
package org.hl7.fhir.dstu3.model.codesystems; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above...
/* * Copyright (C) 2015 andrewj * * 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, merge, publish,...
/* * Copyright 2017 Red Hat, Inc. and/or its affiliates. * * 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 a...
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to Y...
/** * Autogenerated by Thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package test.fixtures.inheritance; import java.util.*; public class MyLeafAsyncReactiveWrapper extends test.fixtures.inheritance.MyNodeAsyncReactiveWrapper implements MyLeaf.Reactive { pr...
/* * Copyright 2002-2018 the original author or 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 requi...
/* ======================================================================== * PlantUML : a free UML diagram generator * ======================================================================== * * (C) Copyright 2009-2020, Arnaud Roques * * Project Info: https://plantuml.com * * If you like this project or if ...
/*- * ============LICENSE_START======================================================= * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ===================================================================...
package ng.com.stemcoders.campusspace.utils; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Build; import androidx.core.app.NotificationCompat; im...
package com.js.amoeba.config; import java.util.HashSet; import java.util.Set; import org.springframework.context.annotation.Bean; import org.thymeleaf.spring4.SpringTemplateEngine; import org.thymeleaf.templateresolver.ClassLoaderTemplateResolver; import org.thymeleaf.templateresolver.ITemplateResolver; public class...
// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.find.actions; import com.intellij.CommonBundle; import com.intellij.codeInsight.hint.HintManager; import com.intellij.find.FindBundle; import com.intellij.fi...
/* * Copyright 2018 the original author or 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 applica...
/* * Copyright 2000-2021 Vaadin 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 applicable law or agreed to...
package com.wang.guava.reference; import java.lang.ref.*; import java.util.ArrayList; import java.util.List; import java.util.concurrent.TimeUnit; /** * @description: Reference示例 * @author: wei·man cui * @date: 2020/8/21 9:29 */ public class ReferenceExample { /** * 设置 VM Options:-Xmx128M -Xms64M -XX:+P...
package org.egov.fsm.calculator.web.models.demand; import java.util.ArrayList; import java.util.List; import org.egov.common.contract.response.ResponseInfo; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstruc...
/* * Copyright 2012-2017 the original author or 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 ap...
// ============================================================================ // Copyright (C) 2006-2018 Talend Inc. - www.talend.com // // This source code is available under agreement available at // https://github.com/Talend/data-prep/blob/master/LICENSE // // You should have received a copy of the agreement // al...
// Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. package com.android.tools.r8.retrace.internal; import com.android.tools.r8.references.Reference; import c...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
package com.wildbeeslabs.sensiblemetrics.diffy.validator.service; import com.wildbeeslabs.sensiblemetrics.diffy.validator.utils.DecimalNumberComparatorHelper; import com.wildbeeslabs.sensiblemetrics.diffy.validator.utils.InfinityNumberComparatorHelper; /** * Check that the number being validated is greater than or e...
/* * Copyright (c) 2008-2022, Hazelcast, 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 ...
package calc5.calc; import java.util.Collections; import java.util.Comparator; import java.util.List; public class Calculator11111111111111111111111111111111111111111 { public static Object debug() {return util.Util.get();} private static void sort(List<Object> list) { Collections.sort(list, new Comp...
package com.unascribed.yttr.crafting; import java.util.Collection; import java.util.Collections; import org.jetbrains.annotations.Nullable; import com.google.gson.JsonObject; import com.unascribed.yttr.init.YItems; import com.google.common.base.Ascii; import net.minecraft.entity.EntityType; import net.minecraft.it...
package com.opyung.controller; import java.io.IOException; import java.io.PrintWriter; import java.sql.Date; import java.util.List; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.htt...
package com.atguigu.gulimall.ums.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * 会员收藏...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package com.reactcalculator; import android.app.Application; import com.facebook.react.ReactApplication; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; import java.util.Arrays; import java.uti...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License")...
package com.fmi.design.patterns; public abstract class Observer { public abstract void update(); }
package com.joseduarte.dwssurviveallyoucan; import android.os.Bundle; import android.view.View; import android.view.WindowManager; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.RecyclerView; import com.joseduarte.dwssurviveallyoucan.adapters...
/* * 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, software * distribut...
/* * Copyright 2013-2018 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package io.kubernetes.client.openapi.models; import io.kubernetes.client.fluent.VisitableBuilder; import com.google.gson.annotations.SerializedName; import io.kubernetes.client.fluent.Fluent; import io.kubernetes.client.fluent.Nested; import java.util.ArrayList; import java.lang.String; import java.util.function.Predi...
package io.muun.apollo.presentation.ui.signup; import io.muun.apollo.domain.model.SignupStep; import io.muun.apollo.presentation.ui.base.SingleFragmentView; public interface SignupView extends SingleFragmentView { void changeStep(SignupStep step, SignupStep previousStep); }
package com.brentcroft.util.templates; import static java.lang.String.format; import java.text.CharacterIterator; import java.text.StringCharacterIterator; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.regex.Pattern; import javax.el.ELContext; imp...
package org.meizhuo.concurrency.example.aqs; import lombok.extern.slf4j.Slf4j; import java.util.concurrent.Callable; import java.util.concurrent.FutureTask; @Slf4j public class FutureTaskExample { public static void main(String[] args) throws Exception { FutureTask<String> futureTask = new FutureTask<St...
/* * Copyright 2002-2013 the original author or 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 ap...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
/* Copyright 2015 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 applicable law or agreed to in ...
/* Copyright 2010 WebDriver committers Copyright 2010 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 appli...
package codeInsight.completion.variables.locals; public class TestSource4 { int aaa = 0; public static void foo(){ int abc = 0; class Inner1{ int sbe=a<caret> } } }
/* * Copyright 2021 Google LLC * * 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
package org.wso2.developerstudio.eclipse.gmf.esb.diagram.edit.policies; import java.util.Iterator; import org.eclipse.emf.ecore.EAnnotation; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; import org.eclipse.gmf.runtime.emf.commands.core.command.CompositeTr...
/* * Copyright © 2016-2018 European Support Limited * * 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...
package com.actionbarsherlock.plus; import android.os.Build; import android.view.KeyEvent; import com.actionbarsherlock.app.SherlockActivity; public abstract class SherlockActivityPlus extends SherlockActivity { @Override public boolean onKeyUp(int keyCode, KeyEvent event) { if (Build.VERSION.SDK_INT < Build.V...
package com.example.myapplication1.Activities; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import com.example.myapplication1.R; import android.content.Intent; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import ...
// javac BankAccount.java // java BankAccount class BankAccountClass { int balance; public BankAccount(int balance) { this.balance = balance; } public void withdraw(int amount) { this.balance = this.balance - amount; } public static void main(String[] args) { Bank...
/* * Copyright 2014 Axiomine * * 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 ...
/* * Copyright 2015 Red Hat, 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 ...
package net.n2oapp.framework.api.metadata.meta.control; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Getter; import lombok.Setter; /** * Клиентская модель компонента текста */ @Getter @Setter public class Text extends Field { @JsonProperty private String text; @JsonProperty pr...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with this * work for additional information regarding copyright ownership. The ASF * licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may n...
/* * Copyright 2017 Netflix, 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...
/** * Copyright ${license.git.copyrightYears} the original author or authors. * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package arsenic.support.lottie.model.animatable; import arsenic.support.lottie.value.Keyframe; import arsenic.support.lottie.animation.keyframe.BaseKeyframeAnimation; import arsenic.support.lottie.animation.keyframe.ColorKeyframeAnimation; import java.util.List; public class AnimatableColorValue extends BaseAnimatab...
package de.busse_apps.hmintpmd.widget; /* * Copyright 2015 Bernd Busse * * 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 ...
package net.stegantsov.torrent.client; import com.gargoylesoftware.htmlunit.BrowserVersion; import com.gargoylesoftware.htmlunit.TextPage; import com.gargoylesoftware.htmlunit.WebClient; import com.gargoylesoftware.htmlunit.html.HTMLParserListener; import com.gargoylesoftware.htmlunit.html.HtmlPage; import net.sf.jso...
/** * FRC Team 3555 */ package org.aluminati3555.mp.file.reader; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.zip.GZIPInputStream; /** * This class reads an encoded motion profile from the filesystem * * @author Caleb Heydon ...
/* * Copyright 2000-2013 JetBrains s.r.o. * Copyright 2014-2014 AS3Boyan * Copyright 2014-2014 Elias Ku * * 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/lice...
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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 ...
/* Copyright (C) 2018 Chris Deter 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, merge, publish, distribute...
package org.shapleyvalue.application.impl.fraud; import static org.junit.Assert.*; import java.util.Map; import org.junit.Test; import org.shapleyvalue.application.facade.CoalitionStrategy; import org.shapleyvalue.application.facade.ShapleyApplicationException; import org.slf4j.Logger; import org.slf4j.LoggerFactory...
/** * This software is released as part of the Pumpernickel project. * All com.pump resources in the Pumpernickel project are distributed under the * MIT License: * https://raw.githubusercontent.com/mickleness/pumpernickel/master/License.txt * More information about the Pumpernickel project is available here: * h...