text
stringlengths
7
1.01M
package com.rachio.iro.ui.fragment; import android.support.v4.app.Fragment; public interface OnFragmentSelectedListener { void onFragmentSelected(Fragment fragment); }
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.model.container; import com.yahoo.cloud.config.ZookeeperServerConfig; import com.yahoo.config.model.api.ModelContext; import com.yahoo.config.model.api.container.ContainerServiceType...
/* * 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")...
/* * Copyright 2014 Red Hat, Inc. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Apache License v2.0 which accompanies this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/le...
package perobobbot.server.sse; import lombok.NonNull; import org.springframework.web.servlet.mvc.method.annotation.SseEmitter; import perobobbot.security.com.User; public interface Hub { /** * @param user the user that request to SSE connection * @return an sse emitter to transmit the event to the user...
package org.uma.jmetal.problem.multiobjective.mop; import org.uma.jmetal.problem.doubleproblem.impl.AbstractDoubleProblem; import org.uma.jmetal.solution.doublesolution.DoubleSolution; import java.util.ArrayList; import java.util.List; /** * Problem MOP2. Defined in * H. L. Liu, F. Gu and Q. Zhang, "Decomposition ...
import java.sql.*; public class UsuariosDAO { public static Statement stUsuarios; public static ResultSet rsUsuarios; public static UsuariosVO validaUsuario(String tmpNome, String tmpSenha) throws Exception{ UsuariosVO tmpUsuarios = new UsuariosVO(); t...
/* * 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...
package android.support.v7.widget; import android.content.Context; import android.content.res.TypedArray; import android.database.DataSetObserver; import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.os.Handler; import android.support.annotation.AttrRes; import android.support.annota...
package tech.tablesaw.columns.numbers; import static java.lang.Double.NaN; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; import tech.tablesaw.api.DoubleColumn; import tech.tablesaw.api.Table; import tech.tablesaw.io.csv.CsvReadOptions; import tech.tablesaw.selection.S...
/* * 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
/* * Licensed to Jasig under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Jasig licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file * except in com...
package cyan.simple.pgsql.jsonb; import cyan.simple.pgsql.builder.SqlBuilder; import cyan.simple.pgsql.builder.SqlBuilders; import cyan.simple.pgsql.util.GeneralUtils; import java.util.Optional; /** * <p>ContrastRule</p> * @author Cyan (snow22314@outlook.com) * @version V.0.0.1 * @group cyan.tool.kit * @date 11...
/** * Copyright 2021 Shulie Technology, Co.Ltd * Email: shulie@shulie.io * 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...
package jp.co.yahoo.adssearchapi.v4.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import javax.validation.Valid; import javax.validation....
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE package org.bytedeco.caffe; import java.nio.*; import org.bytedeco.javacpp.*; import org.bytedeco.javacpp.annotation.*; import static org.bytedeco.javacpp.presets.javacpp.*; import static org.bytedeco.openblas.global.openblas_nolapack.*; import static org.b...
package com.littleji.leetcode; import java.util.Stack; /** * Created by Jimmy on 2016/10/19. */ public class No20_ValidParentheses { public boolean isValid(String s) { if (s.length() == 0 || s.length()%2 != 0) return false; char [] ref = new char[256]; Stack<Character> stack ...
package org.bian.dto; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import org.bian.dto.CRCorporateTreasuryManagementPlanInitiateInputModelCorporateTreasuryManagementPlan...
/* * The MIT License * * Copyright (c) 2017 aoju.org 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 restriction, including without limitation the rights...
/* * Copyright 2000-2020 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 io.github.shishito_megane.dest_bbs_client_android_app; import android.Manifest; import android.accounts.AccountManager; import android.app.Activity; import android.app.Dialog; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.content.SharedPreferen...
package org.fenixedu.notifications.core.json; import org.fenixedu.bennu.core.json.JsonBuilder; import org.fenixedu.bennu.core.json.JsonCreator; import org.fenixedu.notifications.core.domain.Message; import org.fenixedu.notifications.core.service.MessageService; import com.google.gson.JsonElement; import com.google.gs...
package 工厂模式; public class VeggiePizza extends Pizza { public void prepare(){ System.out.println("prepare VeggiePizza"); } public void bake(){ System.out.println("bake VeggiePizza"); } public void cut(){ System.out.println("cut VeggiePizza"); } public void box(){ System.out.println("box VeggiePi...
package seedu.zerotoone; import java.io.IOException; import java.nio.file.Path; import java.util.Optional; import java.util.logging.Logger; import javafx.application.Application; import javafx.application.Preloader.ProgressNotification; import javafx.application.Preloader.StateChangeNotification; import javafx.stage....
package org.firstinspires.ftc.teamcode.thirdWheel.auto; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; import com.qualcomm.robotcore.util.ElapsedTime; import org.firstinspires.ftc.teamcode.hardware.Gyro; import org.firstinspires.ftc.teamcode.th...
/* Copyright 2015, 2016 Tremolo Security, 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 writ...
package org.basex.query.expr; import org.basex.query.value.node.*; import org.basex.util.*; /** * Expression information, used for debugging and logging. * * @author BaseX Team 2005-16, BSD License * @author Christian Gruen */ public abstract class ExprInfo { /** * Returns a string description of the expres...
/* * 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 ...
/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.annotations.index.jpa; /** * @author <a href="mailto:...
package org.contikios.cooja.serialsocket; /* * Copyright (c) 2014, TU Braunschweig. * Copyright (c) 2010, Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * ar...
package com.catehuston.imagefilter.model; public class HSBColor { public final float h; public final float s; public final float b; public HSBColor(float h, float s, float b) { this.h = h; this.s = s; this.b = b; } }
package com.simplechat.perf.client.message.api; /** * Created by lampt on 6/24/2017. */ public interface MessageComposer { String composeSendTypeMessage(); String composeListTypeMessage(); String composeSendFileTypeMessage(); }
/* * ApplicationInsights-Java * Copyright (c) Microsoft Corporation * All rights reserved. * * 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 restrictio...
package com.orion.generator.addres; import com.orion.lang.collect.WeightRandomMap; import java.util.Collections; import java.util.Map; import java.util.TreeMap; /** * 中国3级地址 * * @author Jiahang Li * @version 1.0.0 * @since 2021/8/11 14:59 */ public class AddressArea { /** * 省人口权重 */ protecte...
package com.alipay.api.response; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.AlipayResponse; /** * ALIPAY API: mybank.credit.supplychain.trade.create response. * * @author auto create * @since 1.0, 2022-03-10 16:26:56 */ public class MybankCreditSupplychainTradeCreateResp...
/* * 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 ...
class sdVxI { public static void gYJhhq40Mq2 (String[] NYs7ZybzX_C) { boolean _pj27wR6ijZ5nW; void[] LZI4dyWhu = -!false.i9oXXEN44lGRI = null.uOuhD0(); void P = !true.rxWNLSWW; { if ( HFUksgL2ec7WF2().WBh) !CVEg1().tQZJ1UiZOb(); return; int[][...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ package org.elasticsearch.xpack.sql.expression.function.scalar.datetime; imp...
package org.odk.collect.android.utilities; import org.junit.Assert; import org.junit.Test; public class CSVUtilsTest { @Test public void testEscapeDoubleQuote() { Assert.assertNull(CSVUtils.escapeDoubleQuote(null)); Assert.assertEquals("", CSVUtils.escapeDoubleQuote("")); Assert.assert...
/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
// Copyright (c) 2014 Readium Foundation and/or its licensees. All rights reserved. // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // 1. Redistributions of source code must retain the above copyright notice, this ...
package com.javarush.task.task09.task0911; import java.util.HashMap; /* Исключение при работе с коллекциями Map */ public class Solution { public static void main(String[] args) { try{ HashMap<String, String> map = new HashMap<String, String>(null); map.put(null, null); map.remo...
/* * Copyright (c) 2020 GeekXYZ. * All rights reserved. */ package io.geekshop.custom.graphql; import io.geekshop.common.Constant; import io.geekshop.mapper.*; import io.geekshop.resolver.dataloader.*; import io.geekshop.types.address.Address; import io.geekshop.types.administrator.Administrator; import io.geeksho...
package com.adamk33n3r.runelite.watchdog.notifications; import com.adamk33n3r.runelite.watchdog.WatchdogPlugin; import lombok.extern.slf4j.Slf4j; import net.runelite.client.config.FlashNotification; import net.runelite.client.util.ColorUtil; import java.awt.Color; @Slf4j public class ScreenFlash extends Notification...
/** * * Copyright 2003-2007 Jive Software. * * 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 o...
package backend.foritech.backend.beans; public class SignInRequest { private String personEmail; private String password; public String getPersonEmail() { return personEmail; } public void setPersonEmail(String personEmail) { this.personEmail = personEmail; } public Stri...
package github.banana.letcode; import github.banana.common.TreeNode; /** * 114. 二叉树展开为链表 * <p> * 给定一个二叉树, 原地将它展开为链表 * * <pre> * 1 * / \ * 2 5 * / \ \ * 3 4 6 * * 1 * \ * 2 * \ * 3 * \ * 4 * \ * 5 * \ * 6 * </pre> */ publi...
package com.kotor4j.resourcemanager.gff.fields; import com.kotor4j.resourcemanager.gff.GffLoadContext; import com.kotor4j.resourcemanager.gff.GffStructure; /** * @author sad */ public class GffStruct extends GffFieldValue { private GffStructure value; public GffStructure getValue() { ...
/* * Copyright 2018 olivier. * * 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 agr...
// VeriBlock NodeCore // Copyright 2017-2019 Xenios SEZC // All rights reserved. // https://www.veriblock.org // Distributed under the MIT software license, see the accompanying // file LICENSE or http://www.opensource.org/licenses/mit-license.php. package nodecore.api.ucp.arguments; public class UCPArgumentBlockHash...
package uk.ac.liv.mzidlib.mzidobjects; import java.io.Serializable; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.*; /** * Class using reflection to access all field */ public class ObjectReflection implements Serializable { ...
/* * Copyright 2011 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...
package aima.core.environment.eightpuzzle; import aima.core.agent.Action; import aima.core.search.framework.problem.BidirectionalProblem; import aima.core.search.framework.problem.GeneralProblem; import aima.core.search.framework.problem.Problem; import java.util.function.Predicate; /** * @author Ruediger Lunde * ...
package org.zabica.webcontest.common.store; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.hypergraphdb.HGHandle; import org.hypergraphdb.HGQuery.hg; import org.hypergraphdb.HyperGraph; import org.hypergraphdb.indexing.ByPartIndexer; import org.zabica.webcontest.common.user.User;...
package lia.util.timestamp; public class TimestampableStateValue<T extends Enum<T>, V> extends TimeStampedValue<V>{ private final T state; public TimestampableStateValue(T state, V value) { this(state, value, new Timestamp()); } public TimestampableStateValue(T state, V value, Times...
package uk.org.glendale.yags.core.stats; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Skill { @Id private String uri; private String name; private String description; public Skill() { } /** * Gets the URI of this skill. ...
/* * Copyright 2015-2025 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 applicable...
/* * (C) Copyright 2018 Boni Garcia (http://bonigarcia.github.io/) * * 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 require...
package com.simibubi.create.content.logistics.block.funnel; import com.simibubi.create.foundation.data.SpecialBlockStateGen; import com.tterrag.registrate.providers.DataGenContext; import com.tterrag.registrate.providers.RegistrateBlockstateProvider; import net.minecraft.block.Block; import net.minecraft.block.BlockS...
package com.team2910.lib.autos; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import com.team1678.frc2021.DriveMotionPlanner; import com.team1678.frc2021.subsystems.Swerve; import co...
package saiba.bml.feedback; import hmi.xml.XMLFormatting; import hmi.xml.XMLNameSpace; import hmi.xml.XMLStructureAdapter; import hmi.xml.XMLTokenizer; import java.util.HashMap; import java.util.List; import java.util.Set; import saiba.bml.core.CustomAttributeHandler; import com.google.common.collect.ImmutableList;...
package application; public class Cat { private String name; //고양이 이름 public static final String FOOD = "고양이 사료"; //final은 상수(변하지 않는 값) //static 변수는 객체에서 공유 가능함. private static int count = 0; //생성한 고양이의 숫자 public Cat(String name) { //생성자는 return 타입이 없음(일반 메소드랑 다름) this.name = name; count++; //고양이 객체 ...
package com.kh.onefit.train.model.vo; import java.sql.Date; import java.text.SimpleDateFormat; public class TrainerLesson { private int userNum; //pt회원번호 private String userName; //pt회원 이름 private String phone; //pt회원 전화번호 private int trNum; //트레이너 번호 private int count; //pt 남은 횟수 private int total...
/* * MIT License * * Copyright (c) 2022 MASES s.r.l. * * 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, cop...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/bigquery/connection/v1/connection.proto package com.google.cloud.bigquery.connection.v1; /** * <pre> * Authentication method for Amazon Web Services (AWS) that uses Google owned * AWS IAM user's access key to assume into customer's...
// Targeted by JavaCPP version 1.5-SNAPSHOT: DO NOT EDIT THIS FILE package org.bytedeco.caffe; import java.nio.*; import org.bytedeco.javacpp.*; import org.bytedeco.javacpp.annotation.*; import org.bytedeco.opencv.opencv_core.*; import static org.bytedeco.opencv.global.opencv_core.*; import org.bytedeco.opencv.openc...
/** * Copyright 2016-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 "license" ...
package org.tain.domain.chun; import java.sql.Timestamp; import java.time.LocalDateTime; import java.util.Date; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.J...
package io.imunity.furms.rest.openapi; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; import io.swagger.v3.oas.annotations.OpenAPIDefinition; import io.swagger.v3.oas.models.Components; import io.swagger.v...
package com.sdl.selenium.extjs3.form; import com.sdl.selenium.InputData; import com.sdl.selenium.extjs3.window.Window; import com.sdl.selenium.TestBase; import com.sdl.selenium.web.SearchType; import org.testng.annotations.*; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertTrue; p...
package com.itemanalysis.psychometrics.irt.estimation; import static junit.framework.Assert.assertEquals; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import org.apache.commons.io.FileUtils; import org.junit.Test; import util.FileUploadUtil; ...
package model; import java.util.ArrayList; public class ReadyQueue { private ArrayList<Task> queue; public ReadyQueue() { queue = new ArrayList<>(); } public Task dequeue() { Task p = null; if (!isEmpty()) { p = queue.get(0); queue.remo...
package top.itmp.rtbox.example; import android.graphics.Color; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; import android.support.v4.util.Pair; import android.support.v4.view.PagerTabStrip; import a...
/** * Copyright (C) 2015 The Gravitee team (http://gravitee.io) * * 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 requ...
package ms.messageapp.analytics; import ms.messageapp.analytics.e2e.DecryptionFailureReason; /** * * A category to be linked to an {@link im.vector.analytics.TrackingEvent} * * @param value to log into your analytics console */ @kotlin.Metadata(mv = {1, 1, 13}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0...
/* * Copyright 2014 NAVER Corp. * * 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 (c) 2008, WSO2 Inc. (http://www.wso2.org) 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) 1998 - 2014. University Corporation for Atmospheric Research/Unidata * Portions of this software were developed by the Unidata Program at the * University Corporation for Atmospheric Research. * * Access and use of this software shall impose the following obligations * and understandings on the...
/* * << * Davinci * == * Copyright (C) 2016 - 2019 EDP * == * 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...
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
/* * Copyright 2015-2020 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; import com.algorithm.SearchAlgorithm; import com.algorithm.SortAlgorithm; import com.codility.Solution; import com.data_structure.BinaryTree; import com.data_structure.CustomHashMap; import com.data_structure.LRUCache; import com.data_structure.SinglyLinkedList; import com.dynamic_programming.*; import co...
/* Calldrive Android Library is available under MIT license * * @author Mario Danic * Copyright (C) 2017 Mario Danic * Copyright (C) 2017 Calldrive GmbH * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Softwar...
/* * 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 ...
/* * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * ...
// This file is part of CPAchecker, // a tool for configurable software verification: // https://cpachecker.sosy-lab.org // // SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org> // // SPDX-License-Identifier: Apache-2.0 package pack; public class SimpleExample_false_assert { public static void...
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; y...
/** * 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 im.zhaojun.zfile.service.impl; import cn.hutool.core.convert.Convert; import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.client.builder.AwsClientBuilder; import com.amazonaws.services.s3.AmazonS3ClientBuilder; import im.zhaojun.zfile.mode...
/* * 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 ...
package com.github.tusharepro.core.entity; import lombok.Data; import com.github.tusharepro.core.bean.IndexMonthly; import javax.persistence.*; import java.io.Serializable; import java.time.LocalDate; /** * 指数月线行情 * https://tushare.pro/document/2?doc_id=172 */ @Data @Entity @Table(name = "index_monthly") @IdClass...
/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distribute...
/* * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * ...
// 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...
// *************************************************************************************************************************** // * 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 regar...
package com.packagename.myapp.models; import javax.persistence.*; import javax.validation.constraints.NotNull; import java.util.ArrayList; import java.util.List; import java.util.Set; @Entity @Table(name = "faculty") public class Faculty extends BaseModel { @Id @GeneratedValue(strategy = GenerationType.IDENT...
/* * Copyright 2012-2019 Aerospike, Inc. * * Portions may be licensed to Aerospike, Inc. under one or more contributor * license agreements WHICH ARE COMPATIBLE WITH THE APACHE LICENSE, VERSION 2.0. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in complian...
// Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. package frc.robot.subsystems; //WPI imports import edu.wpi.first.wpilibj2.command.SubsystemBase; import edu.wpi.first.w...
/** * Copyright 2009-2019 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 * * Unle...
package com.mossle.meeting.persistence.domain; // Generated by Hibernate Tools import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; /**...