idx int64 0 41.2k | question stringlengths 83 4.15k | target stringlengths 5 715 |
|---|---|---|
16,900 | protected long getLastModified ( IAggregator aggregator , ModuleList modules ) { long result = 0L ; for ( ModuleList . ModuleListEntry entry : modules ) { IResource resource = entry . getModule ( ) . getResource ( aggregator ) ; long lastMod = resource . lastModified ( ) ; result = Math . max ( result , lastMod ) ; } r... | Returns the newest last modified time of the files in the list |
16,901 | public static void verify ( short value , Path path ) { Approval . of ( short . class ) . withReporter ( reporter ) . build ( ) . verify ( value , path ) ; } | An overload for verifying a single short value . This will call the approval object with proper reporter and use the path for verification . |
16,902 | public static String prettyType ( BtrpOperand o ) { if ( o == IgnorableOperand . getInstance ( ) ) { return "??" ; } return prettyType ( o . degree ( ) , o . type ( ) ) ; } | Generate a pretty type for an operand . |
16,903 | public static String prettyType ( int degree , Type t ) { StringBuilder b = new StringBuilder ( ) ; for ( int i = degree ; i > 0 ; i -- ) { b . append ( "set<" ) ; } b . append ( t . toString ( ) . toLowerCase ( ) ) ; for ( int i = 0 ; i < degree ; i ++ ) { b . append ( ">" ) ; } return b . toString ( ) ; } | Pretty textual representation of a given element type . |
16,904 | public void addDim ( List < IntVar > c , int [ ] cUse , IntVar [ ] dUse ) { capacities . add ( c ) ; cUsages . add ( cUse ) ; dUsages . add ( dUse ) ; } | Add a dimension . |
16,905 | @ SuppressWarnings ( "squid:S3346" ) public boolean beforeSolve ( ReconfigurationProblem rp ) { super . beforeSolve ( rp ) ; if ( rp . getSourceModel ( ) . getMapping ( ) . getNbNodes ( ) == 0 || capacities . isEmpty ( ) ) { return true ; } int nbDims = capacities . size ( ) ; int nbRes = capacities . get ( 0 ) . size ... | Build the constraint . |
16,906 | private boolean symmetryBreakingForStayingVMs ( ReconfigurationProblem rp ) { for ( VM vm : rp . getFutureRunningVMs ( ) ) { VMTransition a = rp . getVMAction ( vm ) ; Slice dSlice = a . getDSlice ( ) ; Slice cSlice = a . getCSlice ( ) ; if ( dSlice != null && cSlice != null ) { BoolVar stay = ( ( KeepRunningVM ) a ) .... | Symmetry breaking for VMs that stay running on the same node . |
16,907 | protected StringBuilder getPath ( StringBuilder path , int startIndex , boolean addPoint ) { boolean simple = true ; if ( key != null ) { if ( addPoint && path . length ( ) > 0 ) { path . insert ( 0 , '.' ) ; } if ( key instanceof Integer ) { path . insert ( 0 , ']' ) ; if ( startIndex == 0 ) { path . insert ( 0 , key ... | Recursive path - builder method . |
16,908 | public Tree setType ( Class < ? > type ) { if ( value == null || value . getClass ( ) == type ) { return this ; } value = DataConverterRegistry . convert ( type , value ) ; if ( parent != null && key != null ) { if ( key instanceof String ) { parent . putObjectInternal ( ( String ) key , value , false ) ; } else { pare... | Sets this node s type and converts the value into the specified type . |
16,909 | public Tree insert ( int index , byte [ ] value , boolean asBase64String ) { if ( asBase64String ) { return insertObjectInternal ( index , BASE64 . encode ( value ) ) ; } return insertObjectInternal ( index , value ) ; } | Inserts the specified byte array at the specified position in this List . |
16,910 | public Tree putObject ( String path , Object value ) { return putObjectInternal ( path , getNodeValue ( value ) , false ) ; } | Puts a node with the specified value into the specified path . |
16,911 | public static Instance readInstance ( File f ) { try ( Reader in = makeIn ( f ) ) { return readInstance ( in ) ; } catch ( IOException e ) { throw new IllegalArgumentException ( e ) ; } } | Read an instance from a file . A file ending with . gz is uncompressed first |
16,912 | public static Instance readInstance ( Reader r ) { try { InstanceConverter c = new InstanceConverter ( ) ; return c . fromJSON ( r ) ; } catch ( JSONConverterException e ) { throw new IllegalArgumentException ( e ) ; } } | Read an instance . |
16,913 | public static void write ( Instance instance , File f ) { try ( OutputStreamWriter out = makeOut ( f ) ) { write ( instance , out ) ; } catch ( IOException e ) { throw new IllegalArgumentException ( e ) ; } } | Write an instance . |
16,914 | public static void write ( Instance instance , Appendable a ) { try { InstanceConverter c = new InstanceConverter ( ) ; c . toJSON ( instance ) . writeJSONString ( a ) ; } catch ( IOException | JSONConverterException e ) { throw new IllegalArgumentException ( e ) ; } } | Write an instance |
16,915 | public static ReconfigurationPlan readReconfigurationPlan ( File f ) { try ( Reader in = makeIn ( f ) ) { return readReconfigurationPlan ( in ) ; } catch ( IOException e ) { throw new IllegalArgumentException ( e ) ; } } | Read a reconfiguration plan from a file . A file ending with . gz is uncompressed first |
16,916 | public static ReconfigurationPlan readReconfigurationPlan ( Reader r ) { try { ReconfigurationPlanConverter c = new ReconfigurationPlanConverter ( ) ; return c . fromJSON ( r ) ; } catch ( JSONConverterException e ) { throw new IllegalArgumentException ( e ) ; } } | Read a plan . |
16,917 | public Collection < Node > getAssociatedPGroup ( Node u ) { for ( Collection < Node > pGrp : pGroups ) { if ( pGrp . contains ( u ) ) { return pGrp ; } } return Collections . emptySet ( ) ; } | Get the group of nodes associated to a given node . |
16,918 | static public Collection < URI > removeRedundantPaths ( Collection < URI > uris ) { List < URI > result = new ArrayList < URI > ( ) ; for ( URI uri : uris ) { String path = uri . getPath ( ) ; if ( ! path . endsWith ( "/" ) ) { path += "/" ; } boolean addIt = true ; for ( int i = 0 ; i < result . size ( ) ; i ++ ) { UR... | Removes URIs containing duplicate and non - orthogonal paths so that the collection contains only unique and non - overlapping paths . |
16,919 | static Object convert ( Object object , Class < ? > otherType ) { if ( otherType == BigDecimal . class ) { if ( object instanceof BigInteger ) { return new BigDecimal ( ( BigInteger ) object ) ; } else if ( object instanceof Number ) { return BigDecimal . valueOf ( ( ( Number ) object ) . doubleValue ( ) ) ; } } else i... | This method converts the given value to a more common type . |
16,920 | public InputStream getInputStream ( HttpServletRequest request , MutableObject < byte [ ] > sourceMapResult ) throws IOException { byte [ ] bytes = this . bytes ; byte [ ] sourceMap = this . sourceMap ; String filename = this . filename ; InputStream result = null ; if ( bytes != null ) { result = new ByteArrayInputStr... | Return an input stream to the layer . Has side effect of setting the appropriate Content - Type Content - Length and Content - Encoding headers in the response . |
16,921 | public InputStream tryGetInputStream ( HttpServletRequest request , MutableObject < byte [ ] > sourceMapResult ) throws IOException { InputStream result = null ; if ( bytes != null || filename != null ) { try { result = getInputStream ( request , sourceMapResult ) ; } catch ( Exception e ) { if ( LayerImpl . log . isLo... | Can fail by returning null but won t throw an exception . |
16,922 | public void setData ( byte [ ] bytes , byte [ ] sourceMap ) { this . sourceMap = sourceMap ; sourceMapSize = sourceMap != null ? sourceMap . length : 0 ; setBytes ( bytes ) ; } | Sets the contents of the cache entry with source map info . |
16,923 | public synchronized void delete ( final ICacheManager mgr ) { delete = true ; if ( filename != null ) { mgr . deleteFileDelayed ( filename ) ; } } | Delete the cached build after the specified delay in minues |
16,924 | public void persist ( final ICacheManager mgr ) throws IOException { if ( delete ) return ; if ( sourceMapSize == 0 ) { mgr . createCacheFileAsync ( "layer." , new ByteArrayInputStream ( bytes ) , new CreateCompletionCallback ( mgr ) ) ; } else { Object data = new CacheData ( bytes , sourceMap ) ; mgr . externalizeCach... | Asynchronously write the layer build content to disk and set filename to the name of the cache files when done . |
16,925 | public void register ( ConstraintConverter < ? extends Constraint > c ) { java2json . put ( c . getSupportedConstraint ( ) , c ) ; json2java . put ( c . getJSONId ( ) , c ) ; } | Register a converter for a specific constraint . |
16,926 | public Constraint fromJSON ( Model mo , JSONObject in ) throws JSONConverterException { checkKeys ( in , "id" ) ; Object id = in . get ( "id" ) ; ConstraintConverter < ? extends Constraint > c = json2java . get ( id . toString ( ) ) ; if ( c == null ) { throw new JSONConverterException ( "No converter available for a c... | Convert a json - encoded constraint . |
16,927 | public JSONObject toJSON ( Constraint o ) throws JSONConverterException { ConstraintConverter c = java2json . get ( o . getClass ( ) ) ; if ( c == null ) { throw new JSONConverterException ( "No converter available for a constraint with the '" + o . getClass ( ) + "' className" ) ; } return c . toJSON ( o ) ; } | Serialise a constraint . |
16,928 | public List < SatConstraint > listFromJSON ( Model mo , JSONArray in ) throws JSONConverterException { List < SatConstraint > l = new ArrayList < > ( in . size ( ) ) ; for ( Object o : in ) { if ( ! ( o instanceof JSONObject ) ) { throw new JSONConverterException ( "Expected an array of JSONObject but got an array of "... | Convert a list of json - encoded sat - constraints . |
16,929 | public JSONArray toJSON ( Collection < SatConstraint > e ) throws JSONConverterException { JSONArray arr = new JSONArray ( ) ; for ( SatConstraint cstr : e ) { arr . add ( toJSON ( cstr ) ) ; } return arr ; } | Serialise a list of sat - constraints . |
16,930 | public synchronized void clear ( ) { _layerCache . clear ( ) ; _moduleCache . clear ( ) ; _gzipCache . clear ( ) ; for ( IGenericCache cache : _namedCaches . values ( ) ) { cache . clear ( ) ; } } | Help out the GC by clearing out the cache maps . |
16,931 | public String toGrammarRules ( ) { StringBuffer sb = new StringBuffer ( ) ; System . out . println ( "R0 -> " + this . r0String ) ; for ( int i = 1 ; i <= this . theRules . size ( ) ; i ++ ) { RePairRule r = this . theRules . get ( i ) ; sb . append ( THE_R ) . append ( r . ruleNumber ) . append ( " -> " ) . append ( r... | Prints out the grammar as text . |
16,932 | public GrammarRules toGrammarRulesData ( ) { GrammarRules res = new GrammarRules ( ) ; GrammarRuleRecord r0 = new GrammarRuleRecord ( ) ; r0 . setRuleNumber ( 0 ) ; r0 . setRuleString ( this . r0String ) ; r0 . setExpandedRuleString ( this . r0ExpandedString ) ; r0 . setOccurrences ( new int [ ] { 0 } ) ; r0 . setMeanL... | Build a grammarviz - portable grammar object . |
16,933 | public void buildIntervals ( SAXRecords records , double [ ] originalTimeSeries , int slidingWindowSize ) { records . buildIndex ( ) ; for ( int ruleIdx = 1 ; ruleIdx <= this . theRules . size ( ) ; ruleIdx ++ ) { RePairRule rr = this . theRules . get ( ruleIdx ) ; String [ ] split = rr . expandedRuleString . split ( "... | Builds a table of intervals corresponding to the grammar rules . |
16,934 | private static Class < ? > fromPrimitive ( Class < ? > clazz ) { Class < ? > clazz2 = PRIMITIVE_TO_CLASS . get ( clazz ) ; return clazz2 == null ? clazz : clazz2 ; } | Converts and returns the specified class if it represents a primitive to the associated non - primitive class or else returns the specified class if it is not a primitive . |
16,935 | private static DiagnosticGroup findNamedDiagnosticGroup ( String name ) { final String sourceMethod = "findNamedDiagnosticGroup" ; final boolean isTraceLogging = log . isLoggable ( Level . FINER ) ; if ( isTraceLogging ) { log . entering ( sourceClass , sourceMethod , new Object [ ] { name } ) ; } DiagnosticGroup resul... | Tries to match the provided name with a named Diagnostic group defined in the DiagnosticGroups class . |
16,936 | protected String postcss ( HttpServletRequest request , String css , IResource res ) throws IOException { if ( threadScopes == null ) { return css ; } Context cx = Context . enter ( ) ; Scriptable threadScope = null ; String result = null ; try { threadScope = threadScopes . poll ( SCOPE_POOL_TIMEOUT_SECONDS , TimeUnit... | Runs given CSS through PostCSS processor for minification and any other processing by configured plugins . |
16,937 | protected Scriptable createThreadScope ( Context cx , Scriptable protoScope ) { Scriptable scope = cx . newObject ( protoScope ) ; scope . setPrototype ( protoScope ) ; scope . setParentScope ( null ) ; scope . put ( "global" , scope , scope ) ; postcssJsScript . exec ( cx , scope ) ; NativeArray plugins = ( NativeArra... | Creates a thread scope for the PostCSS processor and it s plugins . Thread scopes allow PostCSS to process multiple CSS modules concurrently each executing in a separate thread without interfering with each other . |
16,938 | public String dequote ( String in ) { String result = in . trim ( ) ; if ( result . charAt ( 0 ) == '"' && result . charAt ( result . length ( ) - 1 ) == '"' ) { return result . substring ( 1 , result . length ( ) - 1 ) ; } if ( result . charAt ( 0 ) == '\'' && result . charAt ( result . length ( ) - 1 ) == '\'' ) { re... | Removes single or double quotes from a quoted string . The entire string is expected to be quoted with possible leading or trailing whitespace . If the string is not quoted then it is returned unmodified . |
16,939 | public tr tr ( int index ) { while ( trList . size ( ) <= index ) { trList . add ( new tr ( ) ) ; } return trList . get ( index ) ; } | Get tr of specified index . If there no tr at the specified index new tr will be created . |
16,940 | public tr addTr ( Map < String , Object > attrMap ) { tr tr = new tr ( ) ; tr . setAttr ( attrMap ) ; trList . add ( tr ) ; return tr ; } | add new tr having specified attributes . |
16,941 | public < T extends AbstractJaxb > TableBuilder addTr ( List < Object > tdList ) throws TagTypeUnmatchException { return addTr ( tdList , null ) ; } | add new tr having td tags that has content of each value of list . |
16,942 | @ SuppressWarnings ( "unchecked" ) public < T extends AbstractJaxb > TableBuilder addTr ( List < Object > tdList , Map < String , Object > attrMap ) throws TagTypeUnmatchException { tr tr = new tr ( ) ; tr . setAttr ( attrMap ) ; for ( Object obj : tdList ) { if ( obj instanceof String ) { tr . addTd ( ( String ) obj )... | add new tr having td tags that has content of each value of list . The new tr tag have specifed attributes . |
16,943 | public tbody tbody ( int index ) { while ( tbodyList . size ( ) <= index ) { tbodyList . add ( new tbody ( ) ) ; } return tbodyList . get ( index ) ; } | Get tbody at specified index |
16,944 | public TableBuilder addTbody ( List < List < Object > > trList ) throws TagTypeUnmatchException { addTbody ( trList , null ) ; return this ; } | add new tbody into table having tr td tags |
16,945 | public Table build ( ) { Table table = new Table ( ) ; Thead _thead = thead . buildThead ( ) ; if ( _thead != null ) { table . setThead ( _thead ) ; } Tfoot _tfoot = tfoot . buildTfoot ( ) ; if ( _tfoot != null ) { table . setTfoot ( _tfoot ) ; } for ( tbody _tbody : tbodyList ) { table . getTbody ( ) . add ( _tbody . ... | build table tag object finally . |
16,946 | protected String getVersion ( ) { Manifest manifest = ManifestLoader . loadManifest ( getClass ( ) ) ; String versionNumber = null ; if ( manifest != null ) { versionNumber = ManifestLoader . getValue ( manifest , Attributes . Name . IMPLEMENTATION_VERSION ) ; if ( versionNumber == null ) { versionNumber = ManifestLoad... | This method gets the Version of this program . |
16,947 | protected void setValueInternal ( String argument , char separator , GenericType < ? > propertyType ) { if ( this . valueAlreadySet ) { CliOptionDuplicateException exception = new CliOptionDuplicateException ( getParameterContainer ( ) . getName ( ) ) ; CliStyleHandling . EXCEPTION . handle ( getLogger ( ) , exception ... | This method parses container value as from a single argument and sets it as new object . |
16,948 | public static TIntIntHashMap makeVMIndex ( Collection < Instance > instances ) { TIntIntHashMap index = new TIntIntHashMap ( ) ; int p = 0 ; for ( Instance i : instances ) { Mapping m = i . getModel ( ) . getMapping ( ) ; for ( Node n : m . getOnlineNodes ( ) ) { for ( VM v : m . getRunningVMs ( n ) ) { index . put ( v... | Make an index revealing the position of each VM in a collection of disjoint instances |
16,949 | public static TIntIntHashMap makeNodeIndex ( Collection < Instance > instances ) { TIntIntHashMap index = new TIntIntHashMap ( ) ; int p = 0 ; for ( Instance i : instances ) { Mapping m = i . getModel ( ) . getMapping ( ) ; for ( Node n : m . getOfflineNodes ( ) ) { index . put ( n . id ( ) , p ) ; } for ( Node n : m .... | Make an index revealing the position of each node in a collection of disjoint instances |
16,950 | public void initialize ( AbstractDetectorStreamProvider provider , DetectorStreamProcessor lastProcessor ) { List < DetectorStreamProcessorFactory > factoryList = provider . getProcessorFactoryList ( ) ; int factoryCount = factoryList . size ( ) ; DetectorStreamBufferImpl buffer = new DetectorStreamBufferImpl ( lastPro... | This method initializes this class . It has to be called to complete the construction . |
16,951 | protected String doInBackground ( String ... params ) { String user = params [ 0 ] ; String password = params [ 1 ] ; String bugTitle = params [ 2 ] ; String bugDescription = params [ 3 ] ; String deviceInfo = params [ 4 ] ; String targetUser = params [ 5 ] ; String targetRepository = params [ 6 ] ; String extraInfo = ... | This is run in a background thread |
16,952 | protected void onPostExecute ( String result ) { super . onPostExecute ( result ) ; if ( result . equals ( "ok" ) ) { progress . dismiss ( ) ; if ( Build . VERSION . SDK_INT >= Build . VERSION_CODES . LOLLIPOP ) { mActivity . showDoneAnimation ( ) ; } else { ( ( Activity ) mContext ) . finish ( ) ; } } else if ( result... | This runs in UI when background thread finishes |
16,953 | public static void main ( String [ ] args ) throws Exception { getparseArticle ( ) ; geoparseUppercaseArticle ( ) ; resolveStanfordEntities ( ) ; System . out . println ( "\n\"That's all folks!\"" ) ; } | Run this after installing and configuring CLAVIN to get a sense of how to use it in a few different ways . |
16,954 | private static void getparseArticle ( ) throws Exception { GeoParser parser = GeoParserFactory . getDefault ( "./IndexDirectory" , new StanfordExtractor ( ) , 1 , 1 , false ) ; File inputFile = new File ( "src/test/resources/sample-docs/Somalia-doc.txt" ) ; String inputString = TextUtils . fileToString ( inputFile ) ; ... | Standard usage of CLAVIN . Instantiate a default GeoParser give it some text check out the locations it extracts and resolves . |
16,955 | private static void resolveStanfordEntities ( ) throws IOException , ClavinException { InputStream mpis = WorkflowDemoNERD . class . getClassLoader ( ) . getResourceAsStream ( "models/english.all.3class.distsim.prop" ) ; Properties mp = new Properties ( ) ; mp . load ( mpis ) ; AbstractSequenceClassifier < CoreMap > na... | Sometimes you might already be using Stanford NER elsewhere in your application and you d like to just pass the output from Stanford NER directly into CLAVIN without having to re - run the input through Stanford NER just to use CLAVIN . This example shows you how to very easily do exactly that . |
16,956 | public Set < String > getDependentFeatures ( ) throws IOException { final boolean entryExitLogging = log . isLoggable ( Level . FINER ) ; final String methodName = "getDependentFeatures" ; if ( entryExitLogging ) { log . entering ( DependencyList . class . getName ( ) , methodName ) ; } if ( ! initialized ) { initializ... | Returns the set of features that were discovered when evaluating has! plugin expressions or aliases when expanding the dependencies . This information may be required by the cache manager in order to properly idenify cached responses . |
16,957 | public void setLabel ( String label ) { final boolean entryExitLogging = log . isLoggable ( Level . FINER ) ; final String methodName = "setLabel" ; if ( entryExitLogging ) { log . entering ( DependencyList . class . getName ( ) , methodName , new Object [ ] { label } ) ; } this . label = label ; if ( entryExitLogging ... | Associates an arbitrary text string with this object . |
16,958 | synchronized void initialize ( ) throws IOException { if ( initialized ) { return ; } final boolean traceLogging = log . isLoggable ( Level . FINEST ) ; final boolean entryExitLogging = log . isLoggable ( Level . FINER ) ; final String methodName = "initialize" ; if ( entryExitLogging ) { log . entering ( DependencyLis... | Internal method called to resolve dependencies the first time one of the accessor methods is called . This is done in order to make object creation light - weight and to avoid the possibility of throwing an exception in the object constructor . |
16,959 | void expandDependencies ( String name , ModuleDepInfo depInfo , ModuleDeps expandedDependencies ) throws IOException { final String methodName = "expandDependencies" ; final boolean traceLogging = log . isLoggable ( Level . FINEST ) ; final boolean entryExitLogging = log . isLoggable ( Level . FINER ) ; if ( entryExitL... | Expands the nested dependencies for the specified module |
16,960 | private Model makeModel ( ) { Model mo = new DefaultModel ( ) ; Mapping mapping = mo . getMapping ( ) ; int nbNodes = 300 ; int nbVMs = 6 * nbNodes ; ShareableResource rcMem = new ShareableResource ( "mem" ) ; ShareableResource rcBW = new ShareableResource ( "bandwidth" ) ; nodes = new ArrayList < > ( nbNodes ) ; for (... | A default model with 500 nodes hosting 3000 VMs . 6 VMs per node Each node has a 10GB network interface and 32 GB RAM Each VM consumes 1GB Bandwidth and between 1 to 5 GB RAM |
16,961 | public boolean applyAction ( Model c ) { if ( c . getMapping ( ) . isOffline ( node ) ) { c . getMapping ( ) . addOnlineNode ( node ) ; return true ; } return false ; } | Put the node online on the model . |
16,962 | public boolean applyAction ( Model m ) { Mapping map = m . getMapping ( ) ; if ( map . isOnline ( node ) && map . isRunning ( vm ) && map . getVMLocation ( vm ) . equals ( node ) ) { map . addReadyVM ( vm ) ; return true ; } return false ; } | Apply the action by removing the virtual machine from the model . |
16,963 | static String formatMessage ( String fmt , Object [ ] args ) { MessageFormat formatter = new MessageFormat ( fmt ) ; Format [ ] formats = formatter . getFormatsByArgumentIndex ( ) ; StringBuffer msg = new StringBuffer ( ) ; formatter . format ( args , msg , null ) ; if ( args . length > formats . length ) { for ( int i... | Formats the specified string using the specified arguments . If the argument array contains more elements than the format string can accommodate then the additional arguments are appended to the end of the formatted string . |
16,964 | static void logResuming ( String callerClass , String callerMethod , Object waitObj , long start ) { long elapsed = ( System . currentTimeMillis ( ) - start ) / 1000 ; log . logp ( Level . WARNING , callerClass , callerMethod , Messages . SignalUtil_2 , new Object [ ] { Thread . currentThread ( ) . getId ( ) , elapsed ... | Logs a warning level message indicating that a thread which has previously been reported as stuck is now resuming . |
16,965 | protected boolean writeResponse ( InputStream in , HttpServletRequest request , HttpServletResponse response ) throws IOException { final String sourceMethod = "writeResponse" ; final boolean isTraceLogging = log . isLoggable ( Level . FINER ) ; if ( isTraceLogging ) { log . entering ( AbstractAggregatorImpl . class . ... | Writes the response to the response object . IOExceptions that occur when writing to the response output stream are not propagated but are handled internally . Such exceptions are assumed to be caused by the client closing the connection and are not real errors . |
16,966 | void logException ( HttpServletRequest req , Level level , String sourceMethod , Throwable t ) { if ( log . isLoggable ( level ) ) { StringBuffer sb = new StringBuffer ( ) ; String uri = req . getRequestURI ( ) ; if ( uri != null ) { sb . append ( uri ) ; String queryArgs = req . getQueryString ( ) ; if ( queryArgs != ... | Formats and logs an exception log message including the request url query args the exception class name and exception message . |
16,967 | public String getPropValue ( String propName ) { String propValue = null ; propValue = System . getProperty ( propName ) ; IServiceReference [ ] refs = null ; if ( propValue == null ) { try { refs = getPlatformServices ( ) . getServiceReferences ( IVariableResolver . class . getName ( ) , "(name=" + getName ( ) + ")" )... | Returns the value for the property name used by the aggregator . By default it returns the system property indicated by the specified key . This method may be overriden by the platform dependent implementation of the aggregator . |
16,968 | protected void notifyRequestListeners ( RequestNotifierAction action , HttpServletRequest req , HttpServletResponse resp ) throws IOException { IServiceReference [ ] refs = null ; try { refs = getPlatformServices ( ) . getServiceReferences ( IRequestListener . class . getName ( ) , "(name=" + getName ( ) + ")" ) ; } ca... | Calls the registered request notifier listeners . |
16,969 | protected void notifyConfigListeners ( long seq ) throws IOException { IServiceReference [ ] refs = null ; try { refs = getPlatformServices ( ) . getServiceReferences ( IConfigListener . class . getName ( ) , "(name=" + getName ( ) + ")" ) ; } catch ( PlatformServicesException e ) { if ( log . isLoggable ( Level . SEVE... | Call the registered config change listeners |
16,970 | protected void registerExtension ( IAggregatorExtension ext , IAggregatorExtension before ) { final String sourceMethod = "registerExtension" ; boolean isTraceLogging = log . isLoggable ( Level . FINER ) ; if ( isTraceLogging ) { log . entering ( AbstractAggregatorImpl . class . getName ( ) , sourceMethod , new Object ... | Adds the specified extension to the list of registered extensions . |
16,971 | public void initialize ( IConfig config ) throws Exception { OverrideFoldersTreeWalker walker = new OverrideFoldersTreeWalker ( this , config ) ; walker . walkTree ( ) ; cacheMgr = newCacheManager ( walker . getLastModified ( ) ) ; deps = newDependencies ( walker . getLastModifiedJS ( ) ) ; resourcePaths = getPathsAndA... | This method does some initialization for the aggregator servlet . This method is called from platform dependent Aggregator implementation during its initialization . |
16,972 | protected Map < String , URI > getPathsAndAliases ( InitParams initParams ) { final String sourceMethod = "getPahtsAndAliases" ; boolean isTraceLogging = log . isLoggable ( Level . FINER ) ; if ( isTraceLogging ) { log . entering ( AbstractAggregatorImpl . class . getName ( ) , sourceMethod , new Object [ ] { initParam... | Returns a mapping of resource aliases to IResources defined in the init - params . If the IResource is null then the alias is for the aggregator itself rather than a resource location . |
16,973 | @ SuppressWarnings ( { "unchecked" , "rawtypes" } ) protected void registerLayerListener ( ) { Dictionary dict = new Properties ( ) ; dict . put ( "name" , getName ( ) ) ; registrations . add ( getPlatformServices ( ) . registerService ( ILayerListener . class . getName ( ) , new AggregatorLayerListener ( this ) , dict... | Registers the layer listener |
16,974 | public BooleanTerm andWith ( BooleanTerm other ) { if ( isFalse ( ) || other . isFalse ( ) ) { return BooleanTerm . FALSE ; } if ( other . isTrue ( ) ) { return this ; } if ( isTrue ( ) ) { return other ; } Set < BooleanVar > result = new HashSet < BooleanVar > ( this ) ; for ( BooleanVar var : other ) { if ( result . ... | Returns the logical AND of this term with the specified term . |
16,975 | static public byte [ ] zip ( InputStream in ) throws IOException { ByteArrayOutputStream bos = new ByteArrayOutputStream ( ) ; VariableGZIPOutputStream compress = new VariableGZIPOutputStream ( bos , 10240 ) ; compress . setLevel ( Deflater . BEST_COMPRESSION ) ; Writer writer = new OutputStreamWriter ( compress , "UTF... | Returns a byte array containing the gzipped contents of the input stream |
16,976 | static public byte [ ] unzip ( InputStream in ) throws IOException { ByteArrayOutputStream bos = new ByteArrayOutputStream ( ) ; CopyUtil . copy ( new GZIPInputStream ( in ) , bos ) ; return bos . toByteArray ( ) ; } | Returns the unzipped contents of the zipped input stream in a byte array |
16,977 | public static String bind ( String message , Object binding ) { return internalBind ( message , null , String . valueOf ( binding ) , null ) ; } | Bind the given message s substitution locations with the given string value . |
16,978 | public static void initializeMessages ( final String bundleName , final Class clazz ) { if ( System . getSecurityManager ( ) == null ) { load ( bundleName , clazz ) ; return ; } AccessController . doPrivileged ( new PrivilegedAction ( ) { public Object run ( ) { load ( bundleName , clazz ) ; return null ; } } ) ; } | Initialize the given class with the values from the specified message bundle . |
16,979 | private Number parseNumber ( String numberValue , Object valueSource ) throws WrongValueTypeException { try { Double d = Double . valueOf ( numberValue ) ; return this . mathUtil . toSimplestNumber ( d ) ; } catch ( NumberFormatException e ) { throw new WrongValueTypeException ( e , numberValue , valueSource , Number .... | This method parses a numeric value . |
16,980 | public List < LocationOccurrence > extractLocationNames ( String text ) { if ( text == null ) throw new IllegalArgumentException ( "text input to extractLocationNames should not be null" ) ; return convertNERtoCLAVIN ( namedEntityRecognizer . classifyToCharacterOffsets ( text ) , text ) ; } | Get extracted locations from a plain - text body . |
16,981 | public static List < LocationOccurrence > convertNERtoCLAVIN ( List < Triple < String , Integer , Integer > > entities , String text ) { List < LocationOccurrence > locations = new ArrayList < LocationOccurrence > ( ) ; if ( entities != null ) { for ( Triple < String , Integer , Integer > entity : entities ) { if ( ent... | Converts output from Stanford NER to input required by CLAVIN resolver . |
16,982 | protected String getFunctionDescription ( String functionName ) { String className = getClass ( ) . getSimpleName ( ) ; StringBuilder buffer = new StringBuilder ( functionName . length ( ) + className . length ( ) + 4 ) ; buffer . append ( FUNCTION_NAME_PREFIX ) ; buffer . append ( functionName ) ; buffer . append ( " ... | This method gets a description of this function . |
16,983 | public BooleanFormula andWith ( BooleanFormula other ) { if ( other . isTrue ( ) ) { return this ; } if ( other . isFalse ( ) || isFalse ( ) ) { if ( booleanTerms == null ) { booleanTerms = new HashSet < BooleanTerm > ( ) ; } else { booleanTerms . clear ( ) ; } isSimplified = true ; return this ; } if ( isTrue ( ) ) { ... | Logically ands the provided terms with the terms in the formula replacing this formula with the result |
16,984 | public boolean removeTerms ( Set < BooleanTerm > toRemove ) { boolean modified = false ; if ( toRemove == null || toRemove . iterator ( ) == null ) { modified = booleanTerms == null || size ( ) != 0 ; booleanTerms = new HashSet < BooleanTerm > ( ) ; } else if ( booleanTerms != null ) { modified = removeAll ( toRemove )... | Removes the specified terms from the formula |
16,985 | public boolean addAll ( Collection < ? extends BooleanTerm > terms ) { boolean modified = false ; if ( terms == null ) { modified = booleanTerms != null ; booleanTerms = null ; } else if ( booleanTerms != null ) { for ( BooleanTerm term : terms ) { modified |= add ( term ) ; } } return modified ; } | Adds the terms to the formula . Note that if the formula has previously been simplified and determined to evaluate to true then adding any terms will have no effect . |
16,986 | public static TaskMonitor build ( IntVar start , IntVar duration , IntVar end ) { return new TaskMonitor ( start , duration , end ) ; } | Make a new Monitor |
16,987 | public boolean containsNode ( long id ) { return nodeIdMapping . containsKey ( id ) && ! isRemoved ( nodes . get ( nodeIdMapping . get ( id ) ) ) ; } | Verify whether the node which has the given id is in the graph or not . |
16,988 | public boolean applyAction ( Model m ) { Mapping map = m . getMapping ( ) ; if ( ! map . contains ( id ) ) { map . addReadyVM ( id ) ; return true ; } return false ; } | Put the VM in the ready state iff it does not already belong to the mapping . |
16,989 | public void visitResourceNames ( String packageName , boolean includeSubPackages , ClassLoader classLoader , ResourceVisitor visitor ) { try { String path = packageName . replace ( '.' , '/' ) ; if ( path . isEmpty ( ) ) { LOG . debug ( "Scanning entire classpath..." ) ; } else { LOG . trace ( "Scanning for resources o... | This method does the actual magic to locate resources on the classpath . |
16,990 | public boolean setPartitions ( Collection < Collection < Node > > parts ) { if ( ! isDisjoint ( parts ) ) { return false ; } partitions = parts ; return true ; } | Set the node partitions |
16,991 | public int run ( String ... args ) { CliParser parser = getParserBuilder ( ) . build ( this ) ; try { CliModeObject mode = parser . parseParameters ( args ) ; if ( this . help ) { assert ( mode . getId ( ) . equals ( CliMode . ID_HELP ) ) ; printHelp ( parser ) ; return 0 ; } validate ( mode ) ; return run ( mode ) ; }... | This method should be invoked from the static main - method . |
16,992 | public static < T > List < T > sortedCollection ( Collection < T > coll ) { List < T > list = new LinkedList < T > ( coll ) ; Collections . sort ( list , new UComp < T > ( ) ) ; return list ; } | Returns a list containing all the objects from a collection in increasing lexicographic order of their string representations . |
16,993 | public static < T > String stringImg ( Collection < T > coll ) { StringBuffer buffer = new StringBuffer ( ) ; buffer . append ( "[ " ) ; for ( T t : sortedCollection ( coll ) ) { buffer . append ( t ) ; buffer . append ( " " ) ; } buffer . append ( "]" ) ; return buffer . toString ( ) ; } | Returns a string representation of all elements from a collection in increasing lexicographic order of their string representations . |
16,994 | public static < T > String stringImg ( T [ ] v ) { if ( v == null ) return "null" ; StringBuffer buffer = new StringBuffer ( ) ; Arrays . sort ( v , new UComp < T > ( ) ) ; for ( int i = 0 ; i < v . length ; i ++ ) { buffer . append ( v [ i ] ) ; buffer . append ( "\n" ) ; } return buffer . toString ( ) ; } | Returns a string representation of all elements from an array in increasing lexicographic order of their string representations . |
16,995 | public List < Sync > buildConstraint ( BtrPlaceTree t , List < BtrpOperand > args ) { if ( ! checkConformance ( t , args ) ) { return Collections . emptyList ( ) ; } @ SuppressWarnings ( "unchecked" ) List < VM > s = ( List < VM > ) params [ 0 ] . transform ( this , t , args . get ( 0 ) ) ; if ( s == null ) { return Co... | Build a sync constraint . |
16,996 | public static int getPrecisionFormat ( final String mapcode ) throws UnknownPrecisionFormatException { final String decodedMapcode = convertStringToPlainAscii ( mapcode ) . toUpperCase ( ) ; if ( ! PATTERN_MAPCODE . matcher ( decodedMapcode ) . matches ( ) ) { throw new UnknownPrecisionFormatException ( decodedMapcode ... | This method return the mapcode type given a mapcode string . If the mapcode string has an invalid format an exception is thrown . |
16,997 | public static boolean isValidMapcodeFormat ( final String mapcode ) throws IllegalArgumentException { checkNonnull ( "mapcode" , mapcode ) ; try { getPrecisionFormat ( mapcode . toUpperCase ( ) ) ; return true ; } catch ( final UnknownPrecisionFormatException ignored ) { return false ; } } | This method provides a shortcut to checking if a mapcode string is formatted properly or not at all . |
16,998 | public static boolean containsTerritory ( final String mapcode ) throws IllegalArgumentException { checkMapcodeCode ( "mapcode" , mapcode ) ; return PATTERN_TERRITORY . matcher ( mapcode . toUpperCase ( ) . trim ( ) ) . find ( ) ; } | Returns whether the mapcode contains territory information or not . |
16,999 | static String convertStringToPlainAscii ( final String string ) { return Decoder . decodeUTF16 ( string . toUpperCase ( ) ) ; } | Convert a string which potentially contains Unicode characters to an ASCII variant . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.