text stringlengths 7 1.01M |
|---|
/*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.junit;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java... |
package com.guidovezzoni.mvplibrary.api;
public class Api {
// query params
public static final String QUERY_PARAM_CITY_ID = "id";
public static final String QUERY_PARAM_APP_ID = "APPID";
public static final String QUERY_PARAM_UNITS = "units";
public static final String QUERY_PARAM_UNITS_METRIC =... |
package it.mulders.shop.cart.repository;
import java.util.Optional;
import javax.inject.Named;
import javax.inject.Singleton;
import it.mulders.shop.cart.domain.Cart;
@Named("dapr")
@Singleton
public class DaprShoppingCartRepository implements ShoppingCartRepository {
private final DaprStateStore<Cart> carts = ... |
package com.xiaoxiao.baiduTest;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test;
import java.util.concurrent.TimeUnit;
public class Search {
public static WebDriver driver;
public static String baseURL="ht... |
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.8
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ------------------------------... |
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: ... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package co.edu.uniandes.csw.especialistas.ejb;
import co.edu.uniandes.csw.especialistas.entities.FarmaciaEntity;
import co.edu... |
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* y... |
package com.easybusiness.usermanagement.services.serviceimpl;
import static com.easybusiness.usermanagement.constant.UserManagementConstant.USER_HOST_SERVER;
import java.sql.Date;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
i... |
/**
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.engine.view;
import javax.time.Instant;
/**
*
*/
public class InMemoryViewDeltaResultModel extends InMemoryViewResultModel implements ViewDeltaResultModel ... |
/*
BEEM is a videoconference application on the Android Platform.
Copyright (C) 2009 by Frederic-Charles Barthelery,
Jean-Manuel Da Silva,
Nikita Kozlov,
Philippe Lago,
Jean Baptiste Vergely,
... |
/*
* Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE 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
*
* https://mindorks.com/license/apache-v2
*
* Unless required by a... |
package com.zeligsoft.domain.omg.dds.api.QOS.impl;
import com.zeligsoft.base.zdl.staticapi.util.ZDLFactoryRegistry;
import com.zeligsoft.domain.omg.dds.api.QOS.lbQosPolicy;
import com.zeligsoft.domain.omg.dds.api.QOS.impl.qosPolicyZImpl;
import com.zeligsoft.domain.omg.dds.api.QOS.Duration;
import com.zeligsoft.bas... |
import javafx.scene.Scene;
import javafx.scene.Group;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.control.Label;
import javafx.scene.text.Font;
import javafx.scene.layout.AnchorPane;
import javafx.application.Application;
import javafx.event.ActionEvent... |
package seedu.address.logic.parser;
import static java.util.Objects.requireNonNull;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import seedu.address.commons.core.Messages;
import seedu.address.commons.core.index.Index;
import seedu.address.commons.util.StringUtil;
import seedu.addres... |
/*
* Copyright 2015-2018 Real Logic Ltd, Adaptive Financial Consulting 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless... |
package fun.mortnon.flyrafter.resolver.template;
/**
* @author Moon Wu
* @date 2021/4/25
*/
public interface AlertSQLTemplate {
String ALTER_PREFIX = "ALTER TABLE `%s` ";
String MODIFY_COLUMN = "MODIFY COLUMN `%s` %s";
String ADD_COLUMN = "ADD `%s` %s";
String ADD_PRIMARY_KEY = "ADD PRIMARY KEY(`%s`... |
/**
* Copyright 2014 Internet2
*
* 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 agre... |
package org.wildfly.swarm.examples.camel.cxf.jaxrs;
import org.fest.assertions.Assertions;
import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.junit.Arquillian;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.openqa.selenium.WebDriver;
import org.wildfly.swarm.it.Abst... |
public class ComponenteElectrico {
public String miTIPO = "NADA_POR_DEFAULT";
public int metros;
public int precioKw;
public int calorias;
public int ambientes;
public ComponenteElectrico(String type){
if (type == "LOSA_RADIANTE"){
this.miTIPO = "LOSA_RADIANTE";
... |
package edata.exception.api.request;
public class CountryBadRequestException extends RuntimeException {
public CountryBadRequestException() {
}
public CountryBadRequestException(String message) {
super(message);
}
public CountryBadRequestException(String message, Throwable cause) {
... |
/*
* Copyright 2015-2018 Real Logic Ltd, Adaptive Financial Consulting 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 ... |
package com.codex.et.accounts;
import java.util.ArrayList;
import java.util.List;
import com.codex.et.common.AccountActivity;
import com.codex.et.user.User;
import com.codex.et.util.AccountType;
import com.codex.et.util.TimeLine;
public class BankAccount implements Account {
private AccountType accountType;
privat... |
/*
* 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... |
/*
* 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
* distributed u... |
package com.forestry.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import java.util.ArrayList;
import java.ut... |
/*******************************************************************************
* 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... |
package com.MBCAF.common.pinyin;
import com.MBCAF.common.pinyin.HanziToPinyin3.Token;
import java.util.ArrayList;
import java.util.List;
public class PinYin {
public static class PinYinElement {
// 开源TT ==> kaiyuantt
public String pinyin;
//every token's pinyin, so "你xx好" -> ["NI", "X", "Y", "HAO"]
... |
package com.sunbc.configure;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
/**
* Created on 2020-09-03
*
* @author sunbc
* @Describe
* @since
*/
@Configuration
public class DepartCodeConfigure ... |
package dev.alexferreira.projetobasico.data.repository;
import dev.alexferreira.projetobasico.data.model.UserModel;
public interface IUserRepository {
UserModel getUser(String id) throws RepositoryException;
void saveUser(UserModel userModel) throws RepositoryException;
}
|
package org.ado.biblio.config;
import org.springframework.context.MessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.support.ResourceBundleMessage... |
package com.acg12.lib.utils.skin;
import android.content.Context;
import com.acg12.lib.utils.PreferencesUtils;
/**
* Created by DELL on 2016/12/29.
*/
public class SkinConfig {
public static final String NAMESPACE = "http://schemas.android.com/android/skin";
public static final String SKIN_SUFFIX = ".them... |
package de.dc.spring.fx.ui.jregis.metro.ui.gen.contacts.dates.model;
import java.util.*;
import java.time.*;
import org.apache.commons.lang.builder.ToStringBuilder;
import javax.persistence.*;
@Entity
public class ContactDates{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "... |
/*================================================================================
Copyright (c) 2012 Steve Jin. 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 re... |
package cn.leo.leoblog.pojo;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.List;
@Entity
@Table(name = "c_tag")
public class Tag {
@Id
@GeneratedValue
private Long id;
private String name;
@ManyToMany(mappedBy = "tags")
private List<Blog> blogs=new ArrayList<>();
... |
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
* ... |
/*
* Created on Aug 20, 2010
*/
package org.uslhcnet.rrd;
import java.io.File;
import java.io.IOException;
import java.util.Collection;
import java.util.Iterator;
import java.util.logging.Level;
import java.util.logging.Logger;
import lia.util.MLProcess;
import org.uslhcnet.rrd.config.RRDConfig;
import org.uslhcne... |
package org.monkey.mmq.config.modules;
import org.monkey.mmq.core.utils.StringUtils;
/**
* @ClassNameBaseModule
* @Description
* @Author Solley
* @Date2022/1/18 23:00
* @Version V1.0
**/
public abstract class BaseModule<Param> implements IModule<Param> {
protected ModelMateData modelMateData;
@Overrid... |
package cn.parzulpan.service;
import cn.parzulpan.dao.BankAccountDAO;
import cn.parzulpan.domain.BankAccount;
import java.util.List;
/**
* @Author : parzulpan
* @Time : 2020-12
* @Desc : 银行账户的业务层接口的实现类
*/
public class BankAccountServiceImpl implements BankAccountService {
private BankAccountDAO bankAccountD... |
package pkg_servicio;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Clase Java para eliminarTipoTransac complex type.
*
* <p>El siguiente fragmento de esquema espec... |
package com.vmware.avi.sdk.model;
import java.util.*;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* The RateLimiterAction is a POJO class extends AviRestResource that used for creating
* ... |
package leviathan.proxy;
public class ServerProxy extends CommonProxy {
}
|
package net.minecraft.world.gen.structure;
import com.google.common.collect.Lists;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.... |
// 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.uiDesigner.projectView;
import com.intellij.ide.favoritesTreeView.FavoriteNodeProvider;
import com.intellij.ide.projectView.ViewSettings;
import com.intelli... |
/*
* 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 ... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package br.com.cbi.enumerators;
/**
*
* @author Tiago
*/
public enum TIPO_ENDERECO {
RS("Residêncial"), CL("C... |
/*
* 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 ... |
/*
* Copyright 2020 bithon.org
*
* 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 ... |
/*******************************************************************************
* Copyright 2012 EMBL-EBI, Hinxton outstation
*
* 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
*
* h... |
/**
* Created by goroyal on 10/27/2015.
*/
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x){
val = x;
}
}
|
/* Copyright 2002-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... |
package com.young.share.model;
import cn.bmob.v3.BmobObject;
/**
* 评论、回复与分享信息的关系
* Created by Nearby Yang on 2015-10-16.
*/
public class Comment_HZ extends BmobObject {
private ShareMessage_HZ shMsgId;
private Message_HZ messageId;
private MyUser senderId;
private MyUser reveicerId;
public Sh... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package schedulemanagement;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java... |
package com.packtpub.mastering.selenium.steps;
import com.packtpub.mastering.selenium.pageobjects.Google;
import com.packtpub.mastering.selenium.pageobjects.TemperatureConverterPage;
import cucumber.annotation.After;
import cucumber.annotation.Before;
import cucumber.annotation.en.Given;
import cucumber.annotat... |
/**
* 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 rs.ac.uns.pmf.mis.restaurantguest.domain.model.employee;
public class EmployeeEntity {
private Employees employees;
public Employees getEmployees() {
return employees;
}
@Override
public String toString() {
return
"EmployeeEntity{" +
"employees = '" + employees + '\'' +
"}";
}
} |
/*
* Copyright (c) 2010, grossmann
* 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
* notice, this list of condit... |
/*
* Copyright (c) 2020-2021. Clément Grennerat
* All rights reserved. You must refer to the licence Apache 2.
*/
package fr.clementgre.pdf4teachers.panel.sidebar.texts.TreeViewSections;
import fr.clementgre.pdf4teachers.document.editions.elements.TextElement;
import fr.clementgre.pdf4teachers.interfaces.windows.M... |
// instantiated with jti.pl from ReferenceToMember
/****************************************************************************
Copyright 2001-2018 Sphenon GmbH
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... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: compiler/ir/serialization.common/src/KotlinIr.proto
package org.jetbrains.kotlin.backend.common.serialization.proto;
/**
* Protobuf type {@code org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration}
*/
public final class IrDeclar... |
package com.shivaot.forms.security;
import com.shivaot.forms.model.User;
import com.shivaot.forms.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsS... |
/**
* 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
*
* Unless required by a... |
package com.vikashkothary.life;
import com.vikashkothary.life.data.DataManager;
import com.vikashkothary.life.data.local.DatabaseHelper;
import com.vikashkothary.life.data.local.PreferencesHelper;
import com.vikashkothary.life.data.model.Ribot;
import com.vikashkothary.life.data.remote.RemindersService;
import com.vik... |
package com.ruoyi.common.bean.po;
public class SysJob extends SysJobKey {
/**
* 调用目标字符串 invoke_target
*/
private String invokeTarget;
/**
* cron执行表达式 cron_expression
*/
private String cronExpression;
/**
* 计划执行错误策略(1立即执行 2执行一次 3放弃执行) misfire_policy
*/
private Str... |
package com.kk.taurus.avplayer.ui.fragment;
import android.content.res.Configuration;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.... |
package mage.cards.r;
import java.util.UUID;
import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.CounterUnlessPaysEffect;
import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect;
import mage.abilities.keyword.Afterma... |
/*
* Copyright (c) 2016 Torsten Krause, Markenwerk GmbH
*
* 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, m... |
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.aws2.eks;
import java.net.URISyntaxException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.apache.camel.spi.EndpointUriFactory;
... |
package wildlifetracker;
import org.junit.Rule;
import org.junit.Test;
import static org.junit.Assert.*;
public class RangerTest {
@Rule
public DatabaseRule database = new DatabaseRule();
@Test
public void ranger_instantiatesCorrectly_true() {
Ranger testranger = new Ranger("Cat", "2","2");
... |
package com.example.consumer2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(ConsumerApplication.class, args);
}
}
|
/*
* Copyright 2016 Mehmet Dilaveroğlu
*
* 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... |
package ai.labs.expressions.value;
import ai.labs.expressions.Expression;
/**
* @author ginccc
*/
public class AnyValue extends Expression {
public AnyValue() {
this.expressionName = "*";
}
}
|
package info.fetter.rrdclient.util;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.concurrent.Exec... |
/*
* 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
* distributed u... |
/*
* 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 org.knowm.xchange.kuna.service;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.List;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.currency.Currency;
import org.knowm.xchange.dto.account.AccountInfo;
import org.knowm.xchange.dto.account.FundingRecord;
import org.knowm.x... |
/*
* Copyright 2019 The Closure Compiler 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... |
package com.m3.ouath.service.data;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
... |
/*
* Copyright 2021 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
package io.flutter.editor;
import com.intellij.codeInsight.daemon.GutterName;
import com.intellij.codeInsight.daemon.LineMarkerInfo;
import com.int... |
/*
* Copyright (c) 2012, United States Government, as represented by the Secretary of Health and Human Services.
* 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 o... |
package com.example.xinwin;
import java.util.List;
/**
* Created by 张翔宇 on 2018/4/8.
*/
public class news {
/**
* status : 0
* msg : ok
* result : {"channel":"头条","num":"1","list":[{"title":"日本\u201c第四自卫队\u201d呼之欲出 安倍野心又升级","time":"2018-04-08 09:35:12","src":"","category":"news","pic":"http://ap... |
package org.ajwcc.pduUtils.gsm3040;
import java.util.*;
import org.ajwcc.pduUtils.gsm3040.ie.*;
//PduUtils Library - A Java library for generating GSM 3040 Protocol Data Units (PDUs)
//
//Copyright (C) 2008, Ateneo Java Wireless Competency Center/Blueblade Technologies, Philippines.
//PduUtils is distributed under t... |
package com.stacksync.syncservice.test.benchmark;
import java.util.UUID;
public class Constants {
public static UUID USER = new UUID(1, 1);
public static UUID WORKSPACE_ID = new UUID(1, 1);
public static String REQUEST_ID = "Benchmark";
public static UUID DEVICE_ID = new UUID(1, 1);
public static Integer XMLRPC_... |
/*
* Copyright 2012 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... |
package net.task.coordinator.request.message;
public class TaskInProgressMessage {
public TaskInProgressMessage() {
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getTaskId() {
return taskId;
}
public TaskInProgressMessage(String taskId) {
... |
/*
* Copyright (c) 2010, Bart Kiers
*
* 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, publ... |
/*
* Copyright 2017 Alexandros Schillings
*
* 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 agre... |
/*
* Copyright 2017 StreamSets 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... |
package seedu.smartlib.logic.commands;
import static java.util.Objects.requireNonNull;
import static seedu.smartlib.logic.parser.CliSyntax.PREFIX_AUTHOR;
import static seedu.smartlib.logic.parser.CliSyntax.PREFIX_BOOK;
import static seedu.smartlib.logic.parser.CliSyntax.PREFIX_GENRE;
import static seedu.smartlib.logic... |
package com.codepath.apps.restclienttemplate.models;
import org.json.JSONException;
import org.json.JSONObject;
import org.parceler.Parcel;
@Parcel
public class User {
// list the attributes
public String name;
public long uid;
public String screenName;
public String profileImageUrl;
public ... |
/*
* Licensed to ElasticSearch and Shay Banon 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... |
/*
* Copyright 2017 TWO SIGMA OPEN SOURCE, 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 appl... |
/*
* Process Services Enterprise API
* Provides access to the complete features provided by Alfresco Process Services powered by Activiti. You can use this API to integrate Alfresco Process Services with external applications.
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagge... |
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of... |
package com.soonsoft.uranus.security.simple;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.soonsoft.uranus.securi... |
// Copyright 2000-2020 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 org.jetbrains.plugins.gradle.importing;
import com.intellij.openapi.externalSystem.service.project.manage.SourceFolderManager;
import com.intellij.openapi.externalSystem.... |
/*
* 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.goldze.mvvmhabit.ui.vp_frg;
import android.support.v4.app.Fragment;
import com.goldze.mvvmhabit.R;
import com.goldze.mvvmhabit.ui.base.fragment.BasePagerFragment;
import com.goldze.mvvmhabit.ui.network.NetWorkFragment;
import com.goldze.mvvmhabit.ui.tab_bar.fragment.ChatListFragment;
import com.goldze.mvv... |
/*
* This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
* including this file, may be copied, modified, propagated, or distributed except according to th... |
//package unit.tests;
//
//import org.apache.log4j.Logger;
//
//import static org.junit.Assert.fail;
//
//import org.junit.Before;
//import org.junit.Test;
//
//import nz.ac.auckland.model.VidevoxException;
//import nz.ac.auckland.model.VidevoxModel;
//
//public class TestModel {
//
// private static fina... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.