text stringlengths 30 1.67M |
|---|
<s> package com . mapr . stats ; import org . uncommons . maths . random . MersenneTwisterRNG ; import java . util . Random ; public class BetaBayesModel extends BayesianBandit { public BetaBayesModel ( ) { this ( <NUM_LIT:2> , new MersenneTwisterRNG ( ) ) ; } public BetaBayesModel ( int bandits , Random gen ) { for ( ... |
<s> package com . mapr . stats ; import org . uncommons . maths . random . MersenneTwisterRNG ; import java . util . Random ; public class BetaWalk { private final Random rand = new MersenneTwisterRNG ( ) ; private final double stepSize ; private final BetaDistribution bd ; private double x ; private double pdf = <NUM_... |
<s> package com . mapr . stats ; import java . util . Random ; public class EpsilonGreedyFactory extends BanditFactory { private double epsilon ; public EpsilonGreedyFactory ( double epsilon ) { this . epsilon = epsilon ; } @ Override public BayesianBandit createBandit ( int bandits , Random gen ) { return new EpsilonG... |
<s> package com . mapr . stats ; import org . apache . mahout . math . jet . random . AbstractContinousDistribution ; import org . apache . mahout . math . jet . random . Gamma ; import org . apache . mahout . math . jet . random . Normal ; import org . uncommons . maths . random . MersenneTwisterRNG ; import java . ut... |
<s> package com . mapr . stats ; import java . util . Random ; class GammaNormalBayesFactory extends BanditFactory { @ Override public BayesianBandit createBandit ( int bandits , Random gen ) { return new GammaNormalBayesModel ( bandits , gen ) ; } } </s> |
<s> package com . mapr . stats ; import com . google . common . collect . Lists ; import org . apache . mahout . math . stats . OnlineSummarizer ; import java . util . List ; import java . util . Random ; public class EpsilonGreedy extends BayesianBandit { private Random gen ; private double epsilon ; private final Lis... |
<s> package com . mapr . stats ; import org . apache . mahout . math . jet . random . AbstractContinousDistribution ; import java . util . Random ; public class BinomialDistributionSampler extends DistributionGenerator { private final BetaDistribution bd ; private final Random gen ; public BinomialDistributionSampler (... |
<s> package com . mapr . stats ; import org . apache . mahout . math . jet . random . AbstractContinousDistribution ; import org . apache . mahout . math . jet . random . Gamma ; import org . uncommons . maths . random . MersenneTwisterRNG ; import java . util . Random ; public class BetaDistribution extends AbstractCo... |
<s> package com . mapr . stats ; import java . util . Random ; class BetaBayesFactory extends BanditFactory { @ Override public BayesianBandit createBandit ( int bandits , Random gen ) { return new BetaBayesModel ( bandits , gen ) ; } } </s> |
<s> package com . mapr . storm ; import backtype . storm . task . OutputCollector ; import backtype . storm . task . TopologyContext ; import backtype . storm . topology . IRichBolt ; import backtype . storm . topology . OutputFieldsDeclarer ; import backtype . storm . tuple . Fields ; import backtype . storm . tuple .... |
<s> package com . mapr . storm ; import backtype . storm . task . TopologyContext ; import backtype . storm . topology . BasicOutputCollector ; import backtype . storm . topology . IBasicBolt ; import backtype . storm . topology . OutputFieldsDeclarer ; import backtype . storm . tuple . Fields ; import backtype . storm... |
<s> package com . mapr . storm ; import backtype . storm . task . OutputCollector ; import backtype . storm . task . TopologyContext ; import backtype . storm . topology . IRichBolt ; import backtype . storm . topology . OutputFieldsDeclarer ; import backtype . storm . tuple . Fields ; import backtype . storm . tuple .... |
<s> package com . mapr . storm ; import backtype . storm . spout . SpoutOutputCollector ; import backtype . storm . task . TopologyContext ; import backtype . storm . topology . IRichSpout ; import backtype . storm . topology . OutputFieldsDeclarer ; import backtype . storm . tuple . Fields ; import backtype . storm . ... |
<s> package com . mapr . stats ; import org . apache . mahout . common . RandomUtils ; import org . apache . mahout . math . DenseMatrix ; import org . apache . mahout . math . DenseVector ; import org . apache . mahout . math . Matrix ; import org . apache . mahout . math . Vector ; import org . apache . mahout . math... |
<s> package com . mapr . stats ; import org . apache . mahout . math . DenseVector ; import org . apache . mahout . math . Vector ; import org . apache . mahout . math . function . Functions ; import org . apache . mahout . math . jet . random . AbstractContinousDistribution ; import org . junit . Test ; import java . ... |
<s> package com . mapr . stats ; import org . junit . Test ; import static org . junit . Assert . assertEquals ; public class BetaDistributionTest extends DistributionTest { @ Test public void testPdf1 ( ) { pdfCheck ( new double [ ] { <NUM_LIT:0> , <NUM_LIT> , <NUM_LIT> , <NUM_LIT> , <NUM_LIT:1> } , new double [ ] { <... |
<s> package com . mapr . stats ; import com . google . common . collect . Lists ; import java . util . List ; public class Walk { public static void main ( String [ ] args ) { List < BetaWalk > x = Lists . newArrayList ( ) ; for ( int i = <NUM_LIT:0> ; i < <NUM_LIT:30> ; i ++ ) { x . add ( new BetaWalk ( <NUM_LIT:1> , ... |
<s> package com . mapr . stats ; import org . apache . mahout . math . jet . random . AbstractContinousDistribution ; import java . util . Arrays ; import static org . junit . Assert . assertEquals ; public class DistributionTest { protected void checkDistribution ( AbstractContinousDistribution d , String test , doubl... |
<s> package com . mapr . stats ; import org . junit . Test ; import java . io . FileNotFoundException ; import static org . junit . Assert . assertEquals ; public class BayesBanditTest { @ Test public void testConvergence ( ) throws FileNotFoundException { double r = BanditTrainer . averageRegret ( "<STR_LIT>" , new in... |
<s> package com . mapr . storm ; import backtype . storm . task . OutputCollector ; import backtype . storm . task . TopologyContext ; import backtype . storm . tuple . Fields ; import backtype . storm . tuple . Tuple ; import com . google . common . collect . Lists ; import mockit . Mock ; import mockit . MockUp ; imp... |
<s> package com . mapr . storm ; import backtype . storm . tuple . Fields ; import backtype . storm . tuple . Tuple ; import com . google . common . collect . ImmutableList ; import com . google . common . collect . Sets ; import org . junit . Test ; import java . util . ArrayList ; import java . util . List ; import j... |
<s> package com . mapr . storm ; import backtype . storm . tuple . Tuple ; import com . google . common . collect . Sets ; import org . junit . Test ; import java . io . FileNotFoundException ; import java . util . ArrayList ; import java . util . List ; import java . util . Set ; import static org . junit . Assert . a... |
<s> package com . greboid . lock ; import com . sun . jna . Native ; import com . sun . jna . platform . win32 . WinDef . HWND ; import com . sun . jna . win32 . StdCallLibrary ; import com . sun . jna . win32 . W32APIOptions ; interface Wtsapi32 extends StdCallLibrary { public static final int NOTIFY_FOR_ALL_SESSIONS ... |
<s> package com . greboid . lock ; import com . sun . jna . Native ; import com . sun . jna . Pointer ; import com . sun . jna . win32 . W32APIOptions ; interface User32 extends com . sun . jna . platform . win32 . User32 { public static final int WS_EX_NOACTIVATE = <NUM_LIT> ; public static final int WS_DISABLED = <NU... |
<s> package com . greboid . lock ; public interface LockListener { void locked ( ) ; void unlocked ( ) ; } </s> |
<s> package com . greboid . lock ; import com . sun . jna . platform . win32 . WinDef . HWND ; import com . sun . jna . platform . win32 . WinUser . MSG ; import java . util . List ; import java . util . concurrent . CopyOnWriteArrayList ; public class LockAdapter { private final List < LockListener > listeners = new C... |
<s> package org . ardverk . coding ; public class BencodingUtils { public static final String UTF_8 = "<STR_LIT:UTF-8>" ; public static final int LENGTH_DELIMITER = '<CHAR_LIT::>' ; public static final int DICTIONARY = '<CHAR_LIT>' ; public static final int LIST = '<CHAR_LIT>' ; public static final int NUMBER = '<CHAR_... |
<s> package org . ardverk . coding ; import java . io . DataOutput ; import java . io . FilterOutputStream ; import java . io . IOException ; import java . io . OutputStream ; import java . lang . reflect . Array ; import java . util . Collection ; import java . util . Map ; import java . util . SortedMap ; import java... |
<s> package org . ardverk . coding ; import java . io . DataInput ; import java . io . EOFException ; import java . io . IOException ; import java . io . InputStream ; import java . io . PushbackInputStream ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . util . ArrayList ; import jav... |
<s> package org . ardverk . coding ; public class BencodingTest { } </s> |
<s> package org . gatein . wsrp . cxf ; import java . io . File ; public class Utils { public static final String GATEIN_WSRP_CONF_DIR = "<STR_LIT>" ; public static final String GATEIN_CONF_DIR = "<STR_LIT>" ; public static final String DEFAULT_WSRP_CONF_DIR_NAME = "<STR_LIT>" ; public static final String DEFAULT_WSRP_... |
<s> package org . gatein . wsrp . cxf ; import java . io . BufferedReader ; import java . io . File ; import java . io . FileInputStream ; import java . io . InputStreamReader ; import java . util . ArrayList ; import java . util . List ; import org . apache . cxf . feature . AbstractFeature ; import org . slf4j . Logg... |
<s> package org . gatein . wsrp . cxf ; import org . apache . cxf . Bus ; import org . apache . cxf . endpoint . Client ; import org . apache . cxf . endpoint . Server ; import org . apache . cxf . feature . AbstractFeature ; import org . apache . cxf . interceptor . InterceptorProvider ; import org . slf4j . Logger ; ... |
<s> package org . gatein . wsrp . consumer . registry ; import org . chromattic . api . ChromatticBuilder ; import org . gatein . pc . federation . impl . FederatingPortletInvokerService ; import org . gatein . wsrp . jcr . BaseChromatticPersister ; import org . gatein . wsrp . jcr . ChromatticPersister ; import javax ... |
<s> package org . gatein . wsrp . registration ; import org . chromattic . api . ChromatticBuilder ; import org . gatein . registration . AbstractRegistrationPersistenceManagerTestCase ; import org . gatein . registration . RegistrationPersistenceManager ; import org . gatein . wsrp . jcr . BaseChromatticPersister ; im... |
<s> package org . gatein . wsrp . jcr . mapping ; import junit . framework . TestCase ; import java . util . HashMap ; import java . util . Map ; public class MappedMapTestCase extends TestCase { private MappedMap < String , String > mapped ; public void testInitFrom ( ) { Map < String , String > external = new HashMap... |
<s> package org . gatein . wsrp . producer . config ; import org . chromattic . api . ChromatticBuilder ; import org . gatein . wsrp . jcr . BaseChromatticPersister ; import java . net . URL ; public class JCRProducerConfigurationServiceTestCase extends ProducerConfigurationTestCase { private JCRProducerConfigurationSe... |
<s> package org . gatein . wsrp . consumer . registry ; import org . chromattic . api . ChromatticSession ; import org . gatein . wsrp . WSRPConsumer ; import org . gatein . wsrp . consumer . ConsumerException ; import org . gatein . wsrp . consumer . ProducerInfo ; import org . gatein . wsrp . consumer . registry . ma... |
<s> package org . gatein . wsrp . consumer . registry . mapping ; import org . chromattic . api . RelationshipType ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToOne ; import org . chromattic . api . annotations . Owner ; import org . chromattic . api . annot... |
<s> package org . gatein . wsrp . consumer . registry . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . MappedBy ; import org . chromattic . api . annotations . OneToOne ; import org . chromattic . api . annotations . Owner ; import org . chromattic . api .... |
<s> package org . gatein . wsrp . consumer . registry . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . FormattedBy ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import org . chromatt... |
<s> package org . gatein . wsrp . consumer . registry . mapping ; import org . chromattic . api . RelationshipType ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . DefaultValue ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . anno... |
<s> package org . gatein . wsrp . consumer . registry . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import org . gatein . wsrp . jcr . mapping . mixins . LastModifiedMixinHolder ; i... |
<s> package org . gatein . wsrp . consumer . migration . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import java . util . List ; @ PrimaryType ( name = ExportInfosMapping . NODE_NAM... |
<s> package org . gatein . wsrp . consumer . migration . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import org . gatein . common . util . ParameterValidation ; import javax . xml . namespace . QName ; import java . util . Arrays ; impor... |
<s> package org . gatein . wsrp . consumer . migration . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import org . gatein . c... |
<s> package org . gatein . wsrp . consumer . migration . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import java . io . ByteArrayInputStream ; import java . io . InputStream ; @ PrimaryType ( name = ExportedStateMapping . NODE_NAME ) pub... |
<s> package org . gatein . wsrp . consumer . migration ; import org . chromattic . api . ChromatticSession ; import org . gatein . common . util . ParameterValidation ; import org . gatein . wsrp . api . context . ConsumerStructureProvider ; import org . gatein . wsrp . consumer . migration . mapping . ExportErrorMappi... |
<s> package org . gatein . wsrp . registration ; import org . chromattic . api . ChromatticSession ; import org . gatein . common . util . ParameterValidation ; import org . gatein . registration . Consumer ; import org . gatein . registration . ConsumerGroup ; import org . gatein . registration . Registration ; import... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Properties ; import javax . xml . namespace . QName ; import java . util . Collections ; import java . util . HashMap ; import java . util . Map ; @ Primar... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import java . io . ByteArrayInputStream ; import java . io . InputStream ; @ PrimaryType ( name = PortletContextMapping . NODE_NAME ) public abs... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . annotations . ManyToOne ; import org . chromattic . api . annotations . MappedBy ; import org . chromattic . api . annotati... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import java . util . List ; @ PrimaryType ( name = ConsumersAndGroupsMapping . NODE_NAME... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import org . gatein . common . util . ParameterValidation ; import org . gatein . pc . api . Mode ; import org . gatein . pc . api . WindowState... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Property ; import org . gatein . common . util . ParameterValidation ; import org . gatein . wsrp . regi... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . RelationshipType ; import org . chromattic . api . annotations . FindById ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . annotations . MappedBy ; import org . chromattic . api . annotations .... |
<s> package org . gatein . wsrp . registration . mapping ; import org . chromattic . api . RelationshipType ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . FindById ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . annotations . M... |
<s> package org . gatein . wsrp . jcr ; import org . chromattic . api . ChromatticSession ; import org . gatein . wsrp . jcr . mapping . mixins . LastModified ; public interface StoresByPathManager < C > { String getChildPath ( C needsComputedPath ) ; LastModified lastModifiedToUpdateOnDelete ( ChromatticSession sessio... |
<s> package org . gatein . wsrp . jcr ; import org . chromattic . api . ChromatticSession ; import org . chromattic . api . format . FormatterContext ; import org . chromattic . api . format . ObjectFormatter ; public interface ChromatticPersister { ChromatticSession getSession ( ) ; void closeSession ( boolean save ) ... |
<s> package org . gatein . wsrp . jcr . mapping ; import org . gatein . common . util . ParameterValidation ; import org . gatein . common . util . Tools ; import java . util . Arrays ; import java . util . Collections ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Map ; import jav... |
<s> package org . gatein . wsrp . jcr . mapping ; public interface BaseMapping < T , R > { public static final String JCR_TYPE_NAME_CONSTANT_NAME = "<STR_LIT>" ; void initFrom ( T model ) ; T toModel ( T initial , R registry ) ; Class < T > getModelClass ( ) ; } </s> |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; import org . chromattic . api . RelationshipType ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . OneToOne ; import org . chromattic . api . annotations . Owner ; public abstract class LastModifiedMixinHolde... |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; import org . chromattic . api . annotations . DefaultValue ; import org . chromattic . api . annotations . MixinType ; import org . chromattic . api . annotations . Property ; @ MixinType ( name = "<STR_LIT>" ) public abstract class WSSEndpointEnabled implement... |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; import org . chromattic . api . annotations . MixinType ; import org . chromattic . api . annotations . Property ; @ MixinType ( name = "<STR_LIT>" ) public abstract class LastModified implements BaseMixin { @ Property ( name = "<STR_LIT>" ) public abstract lon... |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; public interface BaseMixin { void initializeValue ( ) ; } </s> |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; import org . chromattic . api . annotations . MixinType ; import org . chromattic . api . annotations . Property ; @ MixinType ( name = "<STR_LIT>" ) public abstract class ModifyRegistrationRequired implements BaseMixin { @ Property ( name = "<STR_LIT>" ) publi... |
<s> package org . gatein . wsrp . jcr . mapping . mixins ; public abstract class MixinHolder < M extends BaseMixin > { protected M getCreatedMixin ( ) { M mixin = getMixin ( ) ; if ( mixin == null ) { mixin = createMixin ( ) ; setMixin ( mixin ) ; mixin . initializeValue ( ) ; } return mixin ; } public abstract M getMi... |
<s> package org . gatein . wsrp . jcr ; import org . chromattic . api . Chromattic ; import org . chromattic . api . ChromatticBuilder ; import org . chromattic . api . ChromatticSession ; import org . gatein . common . util . ParameterValidation ; import org . gatein . wsrp . jcr . mapping . BaseMapping ; import org .... |
<s> package org . gatein . wsrp . producer . state ; import org . chromattic . api . ChromatticSession ; import org . gatein . common . util . ParameterValidation ; import org . gatein . pc . api . state . PropertyMap ; import org . gatein . pc . portlet . state . InvalidStateIdException ; import org . gatein . pc . po... |
<s> package org . gatein . wsrp . producer . state . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . FindById ; import org . chromattic . api . annotations . FormattedBy ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . a... |
<s> package org . gatein . wsrp . producer . state . mapping ; import org . chromattic . api . annotations . Id ; import org . chromattic . api . annotations . MappedBy ; import org . chromattic . api . annotations . Name ; import org . chromattic . api . annotations . OneToOne ; import org . chromattic . api . annotat... |
<s> package org . gatein . wsrp . producer . state . mapping ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . api . annotations . Properties ; import org . chromattic . api . annotations . Property ; import org . gatein . pc . api . state . PropertyMap ; import org . gatein . pc .... |
<s> package org . gatein . wsrp . producer . config ; import org . chromattic . api . ChromatticSession ; import org . gatein . common . util . ParameterValidation ; import org . gatein . wsrp . jcr . ChromatticPersister ; import org . gatein . wsrp . producer . config . impl . AbstractProducerConfigurationService ; im... |
<s> package org . gatein . wsrp . producer . config . mapping ; import org . chromattic . api . annotations . Create ; import org . chromattic . api . annotations . FindById ; import org . chromattic . api . annotations . OneToMany ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . ... |
<s> package org . gatein . wsrp . producer . config . mapping ; import org . chromattic . api . annotations . MappedBy ; import org . chromattic . api . annotations . OneToOne ; import org . chromattic . api . annotations . Owner ; import org . chromattic . api . annotations . PrimaryType ; import org . chromattic . ap... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; import org . gatein . pc . api . ContainerURL ; import org . gatein . pc . api . Mode ; import org . gatein . pc . api . ParametersStateString ; import org . gatein . pc . api . ResourceURL ; import org . gatein . pc . api . StateString ; import or... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; import org . gatein . wsrp . spec . v1 . WSRP1ExceptionFactory ; import org . gatein . wsrp . spec . v2 . WSRP2ExceptionFactory ; import org . oasis . wsrp . v1 . V1OperationFailed ; import org . oasis . wsrp . v1 . V1OperationFailedFault ; import ... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; public class WSRPConstantsTestCase extends TestCase { public void testServiceVersion ( ) { System . out . println ( "<STR_LIT>" + WSRPConstants . WSRP_SERVICE_VERSION ) ; assertFalse ( WSRPConstants . WSRP_SERVICE_VERSION . equals ( "<STR_LIT>" ) )... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; import org . gatein . wsrp . spec . v2 . WSRP2RewritingConstants ; import org . gatein . wsrp . test . ExtendedAssert ; import java . util . Collections ; import java . util . Map ; import java . util . TreeMap ; public class WSRPRenderURLTestCase ... |
<s> package org . gatein . wsrp . handler ; import junit . framework . TestCase ; import org . gatein . wsrp . test . handler . MockSOAPMessage ; import org . gatein . wsrp . test . handler . MockSOAPMessageContext ; import javax . xml . soap . SOAPBody ; import javax . xml . soap . SOAPException ; import javax . xml .... |
<s> package org . gatein . wsrp . spec . v1 ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import org . gatein . wsrp . WSRPTypeFactory ; import org . gatein . wsrp . spec . v2 . ErrorCodes ; import org . gatein . wsrp . spec . v2 . ErrorCodes . Codes ; import org .... |
<s> package org . gatein . wsrp . spec . v1 ; import junit . framework . TestCase ; import org . gatein . wsrp . test . ExtendedAssert ; import org . oasis . wsrp . v1 . V1MarkupContext ; import org . oasis . wsrp . v1 . V1OperationFailed ; import org . oasis . wsrp . v1 . V1OperationFailedFault ; import org . oasis . ... |
<s> package org . gatein . wsrp . other ; import junit . framework . TestCase ; import org . jboss . xb . binding . SimpleTypeBindings ; import java . util . Calendar ; public class UserContextConverterTestCase extends TestCase { public void testDateFormat ( ) { String dateAsString = "<STR_LIT>" ; Calendar bdate = Simp... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; public class WSRPUtilsTestCase extends TestCase { public void testURLRewritingIsActiveByDefault ( ) { assertTrue ( WSRPUtils . getPropertyAccessor ( ) . isURLRewritingActive ( ) ) ; } public void testURLRewritingCanBeDeactivatedUsingASystemProperty... |
<s> package org . gatein . wsrp ; import junit . framework . TestCase ; import org . gatein . wsrp . test . support . MockHttpServletRequest ; import static org . gatein . common . net . URLTools . PORT_END ; import static org . gatein . common . net . URLTools . SCH_END ; import static org . gatein . wsrp . test . sup... |
<s> package org . gatein . wsrp ; public final class WSRPRewritingConstants { public static final String WSRP_REWRITE = "<STR_LIT>" ; public static final String BEGIN_WSRP_REWRITE_END = "<STR_LIT:?>" ; public static final String BEGIN_WSRP_REWRITE = WSRP_REWRITE + BEGIN_WSRP_REWRITE_END ; public static final int WSRP_R... |
<s> package org . gatein . wsrp . registration ; import org . gatein . common . util . ParameterValidation ; import java . io . Serializable ; import java . util . Locale ; public class LocalizedString implements Serializable { private String value ; private Locale locale ; private String resourceName ; public Localize... |
<s> package org . gatein . wsrp . registration ; public interface ValueChangeListener { void valueHasChanged ( RegistrationPropertyDescription originating , Object oldValue , Object newValue , boolean isName ) ; } </s> |
<s> package org . gatein . wsrp . registration ; import org . gatein . common . util . ParameterValidation ; import javax . xml . namespace . QName ; import java . io . Serializable ; import java . net . URI ; import java . net . URISyntaxException ; import java . util . Arrays ; import java . util . Locale ; public cl... |
<s> package org . gatein . wsrp . registration ; import javax . xml . namespace . QName ; public interface PropertyDescription extends Comparable < PropertyDescription > { QName getName ( ) ; QName getType ( ) ; } </s> |
<s> package org . gatein . wsrp ; import org . gatein . common . text . FastURLDecoder ; import org . gatein . common . text . TextTools ; import org . gatein . pc . api . ActionURL ; import org . gatein . pc . api . ContainerURL ; import org . gatein . pc . api . Mode ; import org . gatein . pc . api . OpaqueStateStri... |
<s> package org . gatein . wsrp ; import org . gatein . pc . api . ActionURL ; import org . gatein . pc . api . Mode ; import org . gatein . pc . api . OpaqueStateString ; import org . gatein . pc . api . StateString ; import org . gatein . pc . api . WindowState ; import java . util . Map ; public class WSRPActionURL ... |
<s> package org . gatein . wsrp ; import java . io . BufferedInputStream ; import java . io . ByteArrayOutputStream ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . net . HttpURLConnection ; import java . net . JarURLConnection ; import java . net . MalformedUR... |
<s> package org . gatein . wsrp ; import org . gatein . common . util . ParameterValidation ; import org . gatein . wsrp . spec . v1 . WSRP1ExceptionFactory ; import org . gatein . wsrp . spec . v2 . WSRP2ExceptionFactory ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import java . lang . reflect ... |
<s> package org . gatein . wsrp . handler ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import org . w3c . dom . NodeList ; import javax . xml . namespace . QName ; import javax . xml . soap . SOAPBody ; import javax . xml . soap . SOAPMessage ; import javax . xml . ws . handler . MessageContext ... |
<s> package org . gatein . wsrp ; import org . gatein . pc . api . Mode ; import org . gatein . pc . api . RenderURL ; import org . gatein . pc . api . StateString ; import org . gatein . pc . api . WindowState ; import org . gatein . wsrp . spec . v2 . WSRP2RewritingConstants ; import java . util . Map ; public class ... |
<s> package org . gatein . wsrp . payload ; import org . w3c . dom . Element ; import java . io . Serializable ; public class SerializablePayload implements Serializable { protected final Element element ; public SerializablePayload ( Element element ) { this . element = element ; } public Element getElement ( ) { retu... |
<s> package org . gatein . wsrp . payload ; import org . gatein . wsrp . WSRPConstants ; import javax . xml . namespace . QName ; import java . io . Serializable ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . util . Calendar ; import static javax . xml . bind . DatatypeConverter . *... |
<s> package org . gatein . wsrp . payload ; import org . gatein . wsrp . WSRPTypeFactory ; import org . oasis . wsrp . v2 . NamedString ; import org . oasis . wsrp . v2 . NamedStringArray ; import java . io . Serializable ; import java . util . ArrayList ; import java . util . List ; public class SerializableNamedStrin... |
<s> package org . gatein . wsrp . payload ; import org . gatein . common . logging . Logger ; import org . gatein . common . logging . LoggerFactory ; import org . gatein . pc . api . PortletInvokerException ; import org . gatein . pc . api . info . EventInfo ; import org . gatein . pc . api . info . EventingInfo ; imp... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.