signature stringlengths 43 39.1k | implementation stringlengths 0 450k |
|---|---|
public class ExecutionChain { /** * Set a callback to handle any exceptions in the chain of execution .
* @ param callback
* Instance of { @ link ErrorCallback } .
* @ return Reference to the { @ code ExecutionChain }
* @ throws IllegalStateException
* if the chain of execution has already been { @ link # exe... | if ( state . get ( ) == State . RUNNING ) { throw new IllegalStateException ( "Invalid while ExecutionChain is running" ) ; } errorCallback = callback ; return this ; |
public class ImageInlineUtils { /** * Checks if inlining mode is allowed on the provided element .
* @ param img
* the image element to check if the actual inlining mode is
* allowed
* @ param mode
* the actual mode
* @ return true if this mode is allowed , false otherwise */
public static boolean isInlineM... | // if already inlined = > reject ( do not inline twice )
if ( ! img . attr ( INLINED_ATTR ) . isEmpty ( ) ) { return false ; } // if inline mode defined but not the wanted mode = > reject
if ( ! img . attr ( INLINE_MODE_ATTR ) . isEmpty ( ) && ! img . attr ( INLINE_MODE_ATTR ) . equals ( mode . mode ( ) ) ) { return fa... |
public class transformaction { /** * Use this API to add transformaction resources . */
public static base_responses add ( nitro_service client , transformaction resources [ ] ) throws Exception { } } | base_responses result = null ; if ( resources != null && resources . length > 0 ) { transformaction addresources [ ] = new transformaction [ resources . length ] ; for ( int i = 0 ; i < resources . length ; i ++ ) { addresources [ i ] = new transformaction ( ) ; addresources [ i ] . name = resources [ i ] . name ; addr... |
public class cmppolicylabel { /** * Use this API to fetch cmppolicylabel resource of given name . */
public static cmppolicylabel get ( nitro_service service , String labelname ) throws Exception { } } | cmppolicylabel obj = new cmppolicylabel ( ) ; obj . set_labelname ( labelname ) ; cmppolicylabel response = ( cmppolicylabel ) obj . get_resource ( service ) ; return response ; |
public class ArrayRankDouble { /** * Get the index position of maximum value the given array
* @ param array an array
* @ returnindex of the max value in array */
public int getMaxValueIndex ( double [ ] array ) { } } | int index = 0 ; double max = Integer . MIN_VALUE ; for ( int i = 0 ; i < array . length ; i ++ ) { if ( array [ i ] > max ) { max = array [ i ] ; index = i ; } } return index ; |
public class FieldType { /** * If we have a class Foo with a collection of Bar ' s then we go through Bar ' s DAO looking for a Foo field . We need
* this field to build the query that is able to find all Bar ' s that have foo _ id that matches our id . */
private FieldType findForeignFieldType ( Class < ? > clazz , ... | String foreignColumnName = fieldConfig . getForeignCollectionForeignFieldName ( ) ; for ( FieldType fieldType : foreignDao . getTableInfo ( ) . getFieldTypes ( ) ) { if ( fieldType . getType ( ) == foreignClass && ( foreignColumnName == null || fieldType . getField ( ) . getName ( ) . equals ( foreignColumnName ) ) ) {... |
public class BlockInlineChecksumReader { /** * Return the generation stamp from the name of the block file . */
static long getGenerationStampFromInlineChecksumFile ( String blockName ) throws IOException { } } | String [ ] vals = StringUtils . split ( blockName , '_' ) ; if ( vals . length != 6 ) { // blk , blkid , genstamp , version , checksumtype , byte per checksum
throw new IOException ( "unidentified block name format: " + blockName ) ; } return Long . parseLong ( vals [ 2 ] ) ; |
public class FilterMatcher { /** * Check that two expressions are " equivalent " in the sense of commutative operators and CVE / PVE .
* TODO : most of the code here can be / will be substituted with equivalence relation on AbstractExpression when
* ENG - 14181 is merged .
* @ return whether two expressions match... | if ( m_expr1 == null || m_expr2 == null ) { return m_expr1 == m_expr2 ; } else if ( m_expr1 . getExpressionType ( ) != m_expr2 . getExpressionType ( ) ) { // Exception to the rule :
// 1 . CVE and PVE need to be translated before compared .
// 2 . Comparisons could be reversed , e . g . " a > = b " and " b < = a " are ... |
public class StreamingWorkbook { /** * Not supported */
@ Override public int addOlePackage ( byte [ ] bytes , String s , String s1 , String s2 ) throws IOException { } } | throw new UnsupportedOperationException ( ) ; |
public class Filter { /** * - - select helper methods */
private Object [ ] compile ( String path ) { } } | List < String > lst ; lst = Filesystem . SEPARATOR . split ( path ) ; if ( lst . size ( ) == 0 ) { throw new IllegalArgumentException ( "empty path: " + path ) ; } if ( lst . get ( 0 ) . equals ( "" ) ) { throw new IllegalArgumentException ( "absolute path not allowed: " + path ) ; } if ( lst . get ( lst . size ( ) - 1... |
public class WhiteboxImpl { /** * Convenience method to get a field from a class type .
* The method will first try to look for a declared field in the same class .
* If the method is not declared in this class it will look for the field in
* the super class . This will continue throughout the whole class hierarc... | "unchecked" , "rawtypes" } ) public static Field getField ( Class < ? > type , String fieldName ) { LinkedList < Class < ? > > examine = new LinkedList < Class < ? > > ( ) ; examine . add ( type ) ; Set < Class < ? > > done = new HashSet < Class < ? > > ( ) ; while ( ! examine . isEmpty ( ) ) { Class < ? > thisType = e... |
public class Cache { /** * Implementation of the eviction strategy . */
protected synchronized void evictStaleEntries ( ) { } } | if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { int size = primaryTable . size ( ) + secondaryTable . size ( ) + tertiaryTable . size ( ) ; Tr . debug ( tc , "The current cache size is " + size + "( " + primaryTable . size ( ) + ", " + secondaryTable . size ( ) + ", " + tertiaryTable . size... |
public class SimpleXMLParser { /** * Parses the XML document firing the events to the handler .
* @ param doc the document handler
* @ param r the document . The encoding is already resolved . The reader is not closed
* @ throws IOException on error */
public static void parse ( SimpleXMLDocHandler doc , SimpleXM... | SimpleXMLParser parser = new SimpleXMLParser ( doc , comment , html ) ; parser . go ( r ) ; |
public class Instantiators { /** * Creates a converter for { @ code typeLiteral } . */
public static < T > Converter < T > createConverter ( TypeLiteral < T > typeLiteral , InstantiatorModule ... modules ) { } } | return createConverterForType ( typeLiteral . getType ( ) , modules ) ; |
public class RegularPactTask { /** * Utility function that composes a string for logging purposes . The string includes the given message ,
* the given name of the task and the index in its subtask group as well as the number of instances
* that exist in its subtask group .
* @ param message The main message for ... | return message + ": " + taskName + " (" + ( parent . getEnvironment ( ) . getIndexInSubtaskGroup ( ) + 1 ) + '/' + parent . getEnvironment ( ) . getCurrentNumberOfSubtasks ( ) + ')' ; |
public class FormMetaData { /** * Find a PropertyBinding with the given bean ( Java Bean Name ) property .
* @ param beanPropName The name of the bean property .
* @ return The PropertyBinding
* @ throws IllegalArgumentException if the PropertyBinding is not found . */
public PropertyBinding findAttribute ( Strin... | for ( PropertyBinding attrib : baseAttributes ) { if ( attrib . getJavaName ( ) . equals ( beanPropName ) ) return attrib ; } for ( Map . Entry < String , List < PropertyBinding > > entry : groupedAttributes . entrySet ( ) ) { for ( PropertyBinding attrib : entry . getValue ( ) ) { if ( attrib . getJavaName ( ) . equal... |
public class StorageAccountsInner { /** * Failover request can be triggered for a storage account in case of availability issues . The failover occurs from the storage account ' s primary cluster to secondary cluster for RA - GRS accounts . The secondary cluster will become primary after failover .
* @ param resource... | if ( resourceGroupName == null ) { throw new IllegalArgumentException ( "Parameter resourceGroupName is required and cannot be null." ) ; } if ( accountName == null ) { throw new IllegalArgumentException ( "Parameter accountName is required and cannot be null." ) ; } if ( this . client . subscriptionId ( ) == null ) { ... |
public class SessionManagementBeanImpl { /** * The following is intended to run ON the IO thread */
@ Override public void setUserPrincipals ( Map < String , String > userPrincipals ) { } } | this . userPrincipals = userPrincipals ; this . serviceManagementBean . addUserPrincipals ( session , userPrincipals ) ; |
public class RefreshRate { /** * Maximum is 24 hrs */
public static int fromHours ( int hours ) { } } | int refreshRate = hours * RefreshRate . SECONDS_PER_HOUR ; RefreshRate . validateRefreshRate ( refreshRate ) ; return refreshRate ; |
public class CoronaJobHistory { /** * Log finish time of map task attempt .
* @ param taskAttemptId task attempt id
* @ param finishTime finish time
* @ param hostName host name
* @ param taskType Whether the attempt is cleanup or setup or map
* @ param stateString state string of the task attempt
* @ param... | if ( disableHistory ) { return ; } JobID id = taskAttemptId . getJobID ( ) ; if ( ! this . jobId . equals ( id ) ) { throw new RuntimeException ( "JobId from task: " + id + " does not match expected: " + jobId ) ; } if ( null != writers ) { log ( writers , RecordTypes . MapAttempt , new Keys [ ] { Keys . TASK_TYPE , Ke... |
public class HttpMediaType { /** * Sets the media parameter to the specified value .
* @ param name case - insensitive name of the parameter
* @ param value value of the parameter or { @ code null } to remove */
public HttpMediaType setParameter ( String name , String value ) { } } | if ( value == null ) { removeParameter ( name ) ; return this ; } Preconditions . checkArgument ( TOKEN_REGEX . matcher ( name ) . matches ( ) , "Name contains reserved characters" ) ; cachedBuildResult = null ; parameters . put ( name . toLowerCase ( Locale . US ) , value ) ; return this ; |
public class RtfListTable { /** * Writes the list and list override tables . */
public void writeDefinition ( final OutputStream result ) throws IOException { } } | result . write ( OPEN_GROUP ) ; result . write ( LIST_TABLE ) ; this . document . outputDebugLinebreak ( result ) ; for ( int i = 0 ; i < picturelists . size ( ) ; i ++ ) { RtfPictureList l = ( RtfPictureList ) picturelists . get ( i ) ; // l . setID ( document . getRandomInt ( ) ) ;
l . writeDefinition ( result ) ; th... |
public class CmsScheduledJobInfo { /** * Sets the context information for the user executing the job . < p >
* This will also " freeze " the context information that is set . < p >
* @ param contextInfo the context information for the user executing the job
* @ see CmsContextInfo # freeze ( ) */
public void setCo... | checkFrozen ( ) ; if ( contextInfo == null ) { throw new CmsIllegalArgumentException ( Messages . get ( ) . container ( Messages . ERR_BAD_CONTEXT_INFO_0 ) ) ; } m_context = contextInfo ; |
public class FibonacciHeap { /** * Consolidate : Make sure each root tree has a distinct degree . */
@ SuppressWarnings ( "unchecked" ) private void consolidate ( ) { } } | int maxDegree = - 1 ; // for each node in root list
int numRoots = roots ; Node < K , V > x = minRoot ; while ( numRoots > 0 ) { Node < K , V > nextX = x . next ; int d = x . degree ; while ( true ) { Node < K , V > y = aux [ d ] ; if ( y == null ) { break ; } // make sure x ' s key is smaller
int c ; if ( comparator =... |
public class WavefrontNamingConvention { /** * Valid characters are : a - z , A - Z , 0-9 , hyphen ( " - " ) , underscore ( " _ " ) , dot ( " . " ) . Forward slash ( " / " ) and comma
* ( " , " ) are allowed if metricName is enclosed in double quotes . */
@ Override public String name ( String name , Meter . Type typ... | String sanitizedName = NAME_CLEANUP_PATTERN . matcher ( delegate . name ( name , type , baseUnit ) ) . replaceAll ( "_" ) ; // add name prefix if prefix exists
if ( namePrefix != null ) { return namePrefix + "." + sanitizedName ; } return sanitizedName ; |
public class Strings { /** * Checks if each target element is empty and uses either target element ,
* or if the target element is empty uses { @ code defaultValue } .
* @ param target the set of values that to be checked if is null or empty
* If non - String objects , toString ( ) will be called .
* @ param de... | if ( target == null ) { return null ; } final Set < String > result = new LinkedHashSet < String > ( target . size ( ) + 2 ) ; for ( final Object element : target ) { result . add ( defaultString ( element , defaultValue ) ) ; } return result ; |
public class JsonUtils { /** * Parses a JSON - LD document from the given { @ link Reader } to an object that
* can be used as input for the { @ link JsonLdApi } and
* { @ link JsonLdProcessor } methods .
* @ param reader
* The JSON - LD document in a Reader .
* @ return A JSON Object .
* @ throws JsonParse... | final JsonParser jp = JSON_FACTORY . createParser ( reader ) ; return fromJsonParser ( jp ) ; |
public class ProjectiveInitializeAllCommon { /** * Must call if you change configurations . */
public void fixate ( ) { } } | ransac = FactoryMultiViewRobust . trifocalRansac ( configTriRansac , configError , configRansac ) ; sba = FactoryMultiView . bundleSparseProjective ( configSBA ) ; |
public class AbstractMongoDAO { /** * runs a map - reduce - job on the collection . The functions are read from the classpath in the folder mongodb . The systems reads them from
* files called & lt ; name & gt ; . map . js , & lt ; name & gt ; . reduce . js and optionally & lt ; name & gt ; . finalize . js . After th... | return this . dataAccess . mapReduce ( name , query , sort , scope , conv ) ; |
public class OptimizerNode { /** * Causes this node to compute its output estimates ( such as number of rows , size in bytes )
* based on the inputs and the compiler hints . The compiler hints are instantiated with conservative
* default values which are used if no other values are provided . Nodes may access the s... | // sanity checking
for ( PactConnection c : getIncomingConnections ( ) ) { if ( c . getSource ( ) == null ) { throw new CompilerException ( "Bug: Estimate computation called before inputs have been set." ) ; } } // let every operator do its computation
computeOperatorSpecificDefaultEstimates ( statistics ) ; // overwri... |
public class JSoupSeleneseParser { /** * processing table row */
private List < String > getCommand ( Element trNode ) { } } | List < String > result = new ArrayList < String > ( ) ; Elements trChildNodes = trNode . getElementsByTag ( "TD" ) ; for ( Element trChild : trChildNodes ) { result . add ( getTableDataValue ( trChild ) ) ; } if ( result . size ( ) != 1 && result . size ( ) != 3 ) { throw new RuntimeException ( "Something strange" ) ; ... |
public class AmazonWorkLinkClient { /** * Signs the user out from all of their devices . The user can sign in again if they have valid credentials .
* @ param signOutUserRequest
* @ return Result of the SignOutUser operation returned by the service .
* @ throws UnauthorizedException
* You are not authorized to ... | request = beforeClientExecution ( request ) ; return executeSignOutUser ( request ) ; |
public class StunAttributeFactory { /** * Create a ChannelNumberAttribute .
* @ param channelNumber
* channel number
* @ return newly created ChannelNumberAttribute */
public static ChannelNumberAttribute createChannelNumberAttribute ( char channelNumber ) { } } | ChannelNumberAttribute attribute = new ChannelNumberAttribute ( ) ; attribute . setChannelNumber ( channelNumber ) ; return attribute ; |
public class MediaHttpUploader { /** * Executes a direct media upload or resumable media upload conforming to the specifications
* listed < a href = ' https : / / developers . google . com / api - client - library / java / google - api - java - client / media - upload ' > here . < / a >
* This method is not reentra... | Preconditions . checkArgument ( uploadState == UploadState . NOT_STARTED ) ; if ( directUploadEnabled ) { return directUpload ( initiationRequestUrl ) ; } return resumableUpload ( initiationRequestUrl ) ; |
public class SimonDataGenerator { /** * Recursively Add many Simons for performances testing . */
private void addManySimons ( String prefix , int depth , int groupWidth , int leafWidth , int splitWidth ) { } } | if ( depth == 0 ) { // Generate Simons of type Stopwatch
final int sibblings = randomInt ( Math . min ( 1 , groupWidth / 2 ) , leafWidth ) ; for ( int i = 0 ; i < sibblings ; i ++ ) { String name = prefix + "." + ALPHABET . charAt ( i ) ; addStopwatchSplits ( SimonManager . getStopwatch ( name ) , splitWidth ) ; } } el... |
public class File { /** * Renames this file to { @ code newPath } . This operation is supported for both
* files and directories .
* < p > Many failures are possible . Some of the more likely failures include :
* < ul >
* < li > Write permission is required on the directories containing both the source and
* ... | try { Libcore . os . rename ( path , newPath . path ) ; return true ; } catch ( ErrnoException errnoException ) { return false ; } |
public class DefaultStreamingClient { /** * { @ inheritDoc } */
@ Override public InputStream getStreamAsync ( Face face , Interest interest , SegmentationType partitionMarker ) throws IOException { } } | return getStreamAsync ( face , interest , partitionMarker , new DefaultOnException ( ) ) ; |
public class AnycastOutputHandler { /** * Callback from a stream , that it has been flushed
* @ param stream */
public final void streamIsFlushed ( AOStream stream ) { } } | if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "streamIsFlushed" , stream ) ; // we schedule an asynchronous removal of the persistent data
synchronized ( streamTable ) { String key = SIMPUtils . getRemoteGetKey ( stream . getRemoteMEUuid ( ) , stream . getGatheringTarge... |
public class FacebookRestClient { /** * Publishes a Mini - Feed story describing an action taken by the logged - in user , and
* publishes aggregating News Feed stories to their friends .
* Stories are identified as being combinable if they have matching templates and substituted values .
* @ param actorId deprec... | return feed_publishTemplatizedAction ( titleTemplate , titleData , bodyTemplate , bodyData , bodyGeneral , targetIds , images , /* pageActorId */
null ) ; |
public class DeploymentImpl { /** * { @ inheritDoc } */
public boolean activate ( ) throws Exception { } } | if ( ! activated ) { if ( connectionFactories != null ) { for ( ConnectionFactory cf : connectionFactories ) { cf . activate ( ) ; } } if ( adminObjects != null ) { for ( AdminObject ao : adminObjects ) { ao . activate ( ) ; } } if ( resourceAdapter != null ) { resourceAdapter . activate ( ) ; } activated = true ; retu... |
public class Parser { /** * Return the word " connected " to cursor , the word ends at cursor position . Note that cursor position starts at 0
* @ param text to parse
* @ param cursor position
* @ return word connected to cursor */
public static String findCurrentWordFromCursor ( String text , int cursor ) { } } | if ( text . length ( ) <= cursor + 1 ) { // return last word
if ( text . contains ( SPACE ) ) { if ( doWordContainEscapedSpace ( text ) ) { if ( doWordContainOnlyEscapedSpace ( text ) ) return switchEscapedSpacesToSpacesInWord ( text ) ; else { return switchEscapedSpacesToSpacesInWord ( findEscapedSpaceWordCloseToEnd (... |
public class PingManager { /** * Pings the server . This method will return true if the server is reachable . It
* is the equivalent of calling < code > ping < / code > with the XMPP domain .
* Unlike the { @ link # ping ( Jid ) } case , this method will return true even if
* { @ link # isPingSupported ( Jid ) } ... | boolean res ; try { res = ping ( connection ( ) . getXMPPServiceDomain ( ) , pingTimeout ) ; } catch ( NoResponseException e ) { res = false ; } if ( ! res && notifyListeners ) { for ( PingFailedListener l : pingFailedListeners ) l . pingFailed ( ) ; } return res ; |
public class PageSpec { /** * Returns an alphanumericly sorted list of names of all declared objects */
public List < String > getSortedObjectNames ( ) { } } | List < String > list = new ArrayList < > ( getObjects ( ) . keySet ( ) ) ; Collections . sort ( list , new AlphanumericComparator ( ) ) ; return list ; |
public class REST { /** * Set a proxy for REST - requests .
* @ param proxyHost
* @ param proxyPort */
public void setProxy ( String proxyHost , int proxyPort ) { } } | System . setProperty ( "http.proxySet" , "true" ) ; System . setProperty ( "http.proxyHost" , proxyHost ) ; System . setProperty ( "http.proxyPort" , "" + proxyPort ) ; System . setProperty ( "https.proxyHost" , proxyHost ) ; System . setProperty ( "https.proxyPort" , "" + proxyPort ) ; |
public class FctBnAccEntitiesProcessors { /** * < p > Get PrcAccEntrySave ( create and put into map ) . < / p >
* @ param pAddParam additional param
* @ return requested PrcAccEntrySave
* @ throws Exception - an exception */
protected final PrcAccEntrySave lazyGetPrcAccEntrySave ( final Map < String , Object > pA... | @ SuppressWarnings ( "unchecked" ) PrcAccEntrySave < RS > proc = ( PrcAccEntrySave < RS > ) this . processorsMap . get ( PrcAccEntrySave . class . getSimpleName ( ) ) ; if ( proc == null ) { proc = new PrcAccEntrySave < RS > ( ) ; proc . setSrvAccSettings ( getSrvAccSettings ( ) ) ; proc . setSrvOrm ( getSrvOrm ( ) ) ;... |
public class ViewCollections { /** * Apply { @ code value } to { @ code view } using { @ code property } . */
@ UiThread public static < T extends View , V > void set ( @ NonNull T view , @ NonNull Property < ? super T , V > setter , @ Nullable V value ) { } } | setter . set ( view , value ) ; |
public class DatatypeIdImpl { /** * Returns the WDTK datatype IRI for the property datatype as represented by
* the given JSON datatype string .
* @ param jsonDatatype
* the JSON datatype string ; case - sensitive
* @ throws IllegalArgumentException
* if the given datatype string is not known */
public static... | switch ( jsonDatatype ) { case JSON_DT_ITEM : return DT_ITEM ; case JSON_DT_PROPERTY : return DT_PROPERTY ; case JSON_DT_GLOBE_COORDINATES : return DT_GLOBE_COORDINATES ; case JSON_DT_URL : return DT_URL ; case JSON_DT_COMMONS_MEDIA : return DT_COMMONS_MEDIA ; case JSON_DT_TIME : return DT_TIME ; case JSON_DT_QUANTITY ... |
public class LocalDateTime { /** * Returns a copy of this datetime minus the specified number of months .
* This LocalDateTime instance is immutable and unaffected by this method call .
* The following three lines are identical in effect :
* < pre >
* LocalDateTime subtracted = dt . minusMonths ( 6 ) ;
* Loca... | if ( months == 0 ) { return this ; } long instant = getChronology ( ) . months ( ) . subtract ( getLocalMillis ( ) , months ) ; return withLocalMillis ( instant ) ; |
public class JToggle { /** * Set the up indicator to display when the drawer indicator is not
* enabled .
* If you pass < code > null < / code > to this method , the default drawable from
* the theme will be used .
* @ param indicator A drawable to use for the up indicator , or null to use
* the theme ' s def... | if ( indicator == null ) { mHomeAsUpIndicator = getThemeUpIndicator ( ) ; mHasCustomUpIndicator = false ; } else { mHomeAsUpIndicator = indicator ; mHasCustomUpIndicator = true ; } if ( ! mDrawerIndicatorEnabled ) { setActionBarUpIndicator ( mHomeAsUpIndicator , 0 ) ; } |
public class CassandraSearcher { /** * Returns the set of resource ids that match the given
* boolean query .
* Separate clauses are performed with separate database queries and their
* results are joined in memory . */
private Set < String > searchForIds ( Context context , BooleanQuery query , ConsistencyLevel ... | Set < String > ids = Sets . newTreeSet ( ) ; for ( BooleanClause clause : query . getClauses ( ) ) { Set < String > subQueryIds ; Query subQuery = clause . getQuery ( ) ; if ( subQuery instanceof BooleanQuery ) { subQueryIds = searchForIds ( context , ( BooleanQuery ) subQuery , readConsistency ) ; } else if ( subQuery... |
public class JaspiServiceImpl { /** * ( non - Javadoc )
* @ see com . ibm . ws . webcontainer . security . JaspiService # postInvoke ( com . ibm . ws . webcontainer . security . WebSecurityContext ) */
@ Override public void postInvoke ( WebSecurityContext webSecurityContext ) throws AuthenticationException { } } | AuthStatus status = null ; if ( webSecurityContext != null ) { JaspiAuthContext jaspiContext = ( JaspiAuthContext ) webSecurityContext . getJaspiAuthContext ( ) ; if ( ! jaspiContext . runSecureResponse ( ) ) { if ( tc . isDebugEnabled ( ) ) Tr . debug ( tc , "postInvoke" , "skip secureResponse." ) ; return ; } Message... |
public class Style { /** * setter for styleName - sets the name of the style used .
* @ generated
* @ param v value to set into the feature */
public void setStyleName ( String v ) { } } | if ( Style_Type . featOkTst && ( ( Style_Type ) jcasType ) . casFeat_styleName == null ) jcasType . jcas . throwFeatMissing ( "styleName" , "de.julielab.jules.types.Style" ) ; jcasType . ll_cas . ll_setStringValue ( addr , ( ( Style_Type ) jcasType ) . casFeatCode_styleName , v ) ; |
public class JobsInner { /** * Cancel Job .
* Cancel a Job .
* @ param resourceGroupName The name of the resource group within the Azure subscription .
* @ param accountName The Media Services account name .
* @ param transformName The Transform name .
* @ param jobName The Job name .
* @ throws IllegalArgu... | return cancelJobWithServiceResponseAsync ( resourceGroupName , accountName , transformName , jobName ) . map ( new Func1 < ServiceResponse < Void > , Void > ( ) { @ Override public Void call ( ServiceResponse < Void > response ) { return response . body ( ) ; } } ) ; |
public class Jdk8WorkingWeek { /** * Return a new JodaWorkingWeek if the status for the given day has changed .
* @ param working
* true if working day
* @ param givenDayOfWeek
* e . g . DateTimeConstants . MONDAY , DateTimeConstants . TUESDAY , etc */
public Jdk8WorkingWeek withWorkingDayFromDateTimeConstant (... | final int dayOfWeek = jdk8ToCalendarDayConstant ( givenDayOfWeek ) ; return new Jdk8WorkingWeek ( super . withWorkingDayFromCalendar ( working , dayOfWeek ) ) ; |
public class EnableSarlMavenNatureAction { /** * Create the configuration job for a Maven project .
* @ param project the project to configure .
* @ return the job . */
@ SuppressWarnings ( "static-method" ) protected Job createJobForMavenProject ( IProject project ) { } } | return new Job ( Messages . EnableSarlMavenNatureAction_0 ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { final SubMonitor mon = SubMonitor . convert ( monitor , 3 ) ; try { // The project should be a Maven project .
final IPath descriptionFilename = project . getFile ( new Path ( IProjectDescriptio... |
public class FacebookRestClient { /** * Used to retrieve photo objects using the search parameters ( one or more of the
* parameters must be provided ) .
* @ param subjId retrieve from photos associated with this user ( optional ) .
* @ param photoIds retrieve from this list of photos ( optional )
* @ return an... | return photos_get ( subjId , /* albumId */
null , photoIds ) ; |
public class ApiOvhTelephony { /** * Search a service with its domain , to get its billing account and type
* REST : GET / telephony / searchServices
* @ param axiom [ required ] Filter the value of property ( like ) */
public ArrayList < OvhTelephonySearchService > searchServices_GET ( String axiom ) throws IOExce... | String qPath = "/telephony/searchServices" ; StringBuilder sb = path ( qPath ) ; query ( sb , "axiom" , axiom ) ; String resp = exec ( qPath , "GET" , sb . toString ( ) , null ) ; return convertTo ( resp , t20 ) ; |
public class BitcoinUtil { /** * Calculates the double SHA256 - Hash of a transaction in little endian format . It serve as a unique identifier of a transaction , but cannot be used to link the outputs of other transactions as input
* It corresponds to the Bitcoin specification of wtxid ( https : / / bitcoincore . or... | // convert transaction to byte array
ByteArrayOutputStream transactionBAOS = new ByteArrayOutputStream ( ) ; byte [ ] version = reverseByteArray ( convertIntToByteArray ( transaction . getVersion ( ) ) ) ; transactionBAOS . write ( version ) ; // check if segwit
boolean segwit = false ; if ( ( transaction . getMarker (... |
public class StringUtil { /** * Escapes the specified value , if necessary according to
* < a href = " https : / / tools . ietf . org / html / rfc4180 # section - 2 " > RFC - 4180 < / a > .
* @ param value The value which will be escaped according to
* < a href = " https : / / tools . ietf . org / html / rfc4180 ... | int length = checkNotNull ( value , "value" ) . length ( ) ; int start ; int last ; if ( trimWhiteSpace ) { start = indexOfFirstNonOwsChar ( value , length ) ; last = indexOfLastNonOwsChar ( value , start , length ) ; } else { start = 0 ; last = length - 1 ; } if ( start > last ) { return EMPTY_STRING ; } int firstUnes... |
public class LPPresolver { /** * Manages :
* - ) free column singletons
* - ) doubleton equations combined with a column singleton
* - ) implied free column singletons */
private void checkColumnSingletons ( DoubleMatrix1D c , DoubleMatrix2D A , DoubleMatrix1D b , DoubleMatrix1D lb , DoubleMatrix1D ub , DoubleMat... | for ( short col = 0 ; col < this . vColPositions . length ; col ++ ) { if ( vColPositions [ col ] . length == 1 ) { short row = vColPositions [ col ] [ 0 ] ; log . debug ( "found column singleton at row " + row + ", col " + col ) ; short [ ] vRowPositionsRow = vRowPositions [ row ] ; if ( vRowPositionsRow . length < 2 ... |
public class Validators { /** * The input parameter must contain the string c . if yes , the check passes
* @ param c contained strings
* @ param msg error message after verification failed
* @ return Validation */
public static Validation < String > contains ( String c , String msg ) { } } | return notEmpty ( ) . and ( SimpleValidation . from ( ( s ) -> s . contains ( c ) , format ( msg , c ) ) ) ; |
public class GetLoggingLevelCmd { /** * Executes the GetLoggingLevelCmd TANGO command */
public Any execute ( DeviceImpl device , Any in_any ) throws DevFailed { } } | Util . out4 . println ( "GetLoggingLevelCmd::execute(): arrived" ) ; String [ ] dvsa = null ; try { dvsa = extract_DevVarStringArray ( in_any ) ; } catch ( DevFailed df ) { Util . out3 . println ( "GetLoggingLevelCmd::execute() --> Wrong argument type" ) ; Except . re_throw_exception ( df , "API_IncompatibleCmdArgument... |
public class WSThreadLocal { /** * doesn ' t ) and that it resets the value to its initial value */
public void remove ( ) { } } | Thread thread = Thread . currentThread ( ) ; if ( thread instanceof ThreadPool . Worker ) { Object [ ] wsLocals = getThreadLocals ( ( ThreadPool . Worker ) thread ) ; wsLocals [ index ] = null ; } else { super . remove ( ) ; } |
public class StandardBullhornData { /** * { @ inheritDoc } */
@ Override public ParsedResume parseResumeFile ( MultipartFile resume , ResumeFileParseParams params ) { } } | return this . handleParseResumeFile ( resume , params ) ; |
public class CFFFontSubset { /** * Calculates how many byte it took to write the offset for the subrs in a specific
* private dict .
* @ param Offset The Offset for the private dict
* @ param Size The size of the private dict
* @ return The size of the offset of the subrs in the private dict */
int CalcSubrOffs... | // Set the size to 0
int OffsetSize = 0 ; // Go to the beginning of the private dict
seek ( Offset ) ; // Go until the end of the private dict
while ( getPosition ( ) < Offset + Size ) { int p1 = getPosition ( ) ; getDictItem ( ) ; int p2 = getPosition ( ) ; // When reached to the subrs offset
if ( key == "Subrs" ) { /... |
public class JSRemoteConsumerPoint { /** * / * ( non - Javadoc )
* @ see com . ibm . ws . sib . processor . impl . interfaces . ConsumerPoint # notifyReceiveAllowed ( boolean ) */
public void notifyReceiveAllowed ( boolean isAllowed ) { } } | if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "notifyReceiveAllowed" , new Object [ ] { Boolean . valueOf ( isAllowed ) } ) ; ArrayList < AORequestedTick > satisfiedTicks = null ; try { this . lock ( ) ; try { if ( ( ! closed ) && isAllowed ) { temporarilyStopped = fals... |
public class AppsInner { /** * Update the metadata of an IoT Central application .
* @ param resourceGroupName The name of the resource group that contains the IoT Central application .
* @ param resourceName The ARM resource name of the IoT Central application .
* @ param appPatch The IoT Central application met... | return beginUpdateWithServiceResponseAsync ( resourceGroupName , resourceName , appPatch ) . map ( new Func1 < ServiceResponse < AppInner > , AppInner > ( ) { @ Override public AppInner call ( ServiceResponse < AppInner > response ) { return response . body ( ) ; } } ) ; |
public class HostDirectives { /** * Check if any of the rules say anything about the specified path
* @ param path The path to check
* @ return One of ALLOWED , DISALLOWED or UNDEFINED */
public int checkAccess ( String path ) { } } | timeLastAccessed = System . currentTimeMillis ( ) ; int result = UNDEFINED ; String myUA = config . getUserAgentName ( ) ; boolean ignoreUADisc = config . getIgnoreUADiscrimination ( ) ; // When checking rules , the list of rules is already ordered based on the
// match of the user - agent of the clause with the user -... |
public class ShapeRenderer { /** * Draw the the given shape filled in with a texture . Only the vertices are set .
* The colour has to be set independently of this method .
* @ param shape The shape to texture .
* @ param image The image to tile across the shape
* @ param scaleX The scale to apply on the x axis... | if ( ! validFill ( shape ) ) { return ; } Texture t = TextureImpl . getLastBind ( ) ; image . getTexture ( ) . bind ( ) ; final float center [ ] = shape . getCenter ( ) ; fill ( shape , new PointCallback ( ) { public float [ ] preRenderPoint ( Shape shape , float x , float y ) { fill . colorAt ( shape , x - center [ 0 ... |
public class DifferentialFunction { /** * Set the value for this function .
* Note that if value is null an { @ link ND4JIllegalStateException }
* will be thrown .
* @ param target the target field
* @ param value the value to set */
public void setValueFor ( Field target , Object value ) { } } | if ( value == null && target . getType ( ) . isPrimitive ( ) ) { throw new ND4JIllegalStateException ( "Unable to set primitive field " + target + " of type " + target . getClass ( ) + " using null value!" ) ; } if ( value != null ) { value = ensureProperType ( target , value ) ; } if ( isConfigProperties ( ) ) { Strin... |
public class SimpleAttachable { /** * { @ inheritDoc } */
public synchronized < T > List < T > getAttachmentList ( AttachmentKey < ? extends List < T > > key ) { } } | if ( key == null ) { return null ; } List < T > list = key . cast ( attachments . get ( key ) ) ; if ( list == null ) { return Collections . emptyList ( ) ; } return list ; |
public class SimpleSectionSkin { /** * * * * * * Initialization * * * * * */
private void initGraphics ( ) { } } | // Set initial size
if ( Double . compare ( gauge . getPrefWidth ( ) , 0.0 ) <= 0 || Double . compare ( gauge . getPrefHeight ( ) , 0.0 ) <= 0 || Double . compare ( gauge . getWidth ( ) , 0.0 ) <= 0 || Double . compare ( gauge . getHeight ( ) , 0.0 ) <= 0 ) { if ( gauge . getPrefWidth ( ) > 0 && gauge . getPrefHeight (... |
public class PNCounterProxy { /** * Invokes the { @ code operation } recursively on viable replica addresses
* until successful or the list of viable replicas is exhausted .
* Replicas with addresses contained in the { @ code excludedAddresses } are
* skipped . If there are no viable replicas , this method will t... | final Address target = getCRDTOperationTarget ( excludedAddresses ) ; if ( target == null ) { throw lastException != null ? lastException : new NoDataMemberInClusterException ( "Cannot invoke operations on a CRDT because the cluster does not contain any data members" ) ; } try { final InvocationBuilder builder = getNod... |
public class Stack { /** * The capabilities allowed in the stack .
* < b > NOTE : < / b > This method appends the values to the existing list ( if any ) . Use
* { @ link # setCapabilities ( java . util . Collection ) } or { @ link # withCapabilities ( java . util . Collection ) } if you want to
* override the exi... | if ( this . capabilities == null ) { setCapabilities ( new com . amazonaws . internal . SdkInternalList < String > ( capabilities . length ) ) ; } for ( String ele : capabilities ) { this . capabilities . add ( ele ) ; } return this ; |
public class Error { /** * Factory method for Error . Returns Error object from id .
* @ param client the client
* @ param id error id
* @ return information about one user error
* @ throws IOException unexpected error . */
public static Error get ( final BandwidthClient client , final String id ) throws Except... | final String errorsUri = client . getUserResourceInstanceUri ( BandwidthConstants . ERRORS_URI_PATH , id ) ; final JSONObject jsonObject = toJSONObject ( client . get ( errorsUri , null ) ) ; return new Error ( client , errorsUri , jsonObject ) ; |
public class StreamEx { /** * Returns an { @ link EntryStream } consisting of the { @ link Entry } objects
* which keys are elements of this stream and values are results of applying
* the given function to the elements of this stream .
* This is an < a href = " package - summary . html # StreamOps " > intermedia... | return new EntryStream < > ( stream ( ) . map ( e -> new SimpleImmutableEntry < > ( e , valueMapper . apply ( e ) ) ) , context ) ; |
public class TfidfVectorizer { /** * Vectorizes the passed in text treating it as one document
* @ param text the text to vectorize
* @ param label the label of the text
* @ return a dataset with a transform of weights ( relative to impl ; could be word counts or tfidf scores ) */
@ Override public DataSet vector... | INDArray input = transform ( text ) ; INDArray labelMatrix = FeatureUtil . toOutcomeVector ( labelsSource . indexOf ( label ) , labelsSource . size ( ) ) ; return new DataSet ( input , labelMatrix ) ; |
public class Cron4jJob { @ Override public OptionalThingIfPresentAfter ifExecutingNow ( Consumer < SnapshotExecState > oneArgLambda ) { } } | return mapExecutingNow ( execState -> { oneArgLambda . accept ( execState ) ; return ( OptionalThingIfPresentAfter ) ( processor -> { } ) ; } ) . orElseGet ( ( ) -> { return processor -> processor . process ( ) ; } ) ; |
public class TargetSpecifications { /** * { @ link Specification } for retrieving { @ link Target } s that are overdue . A
* target is overdue if it did not respond during the configured
* intervals : < br >
* < em > poll _ itvl + overdue _ itvl < / em >
* @ param overdueTimestamp
* the calculated timestamp t... | return ( targetRoot , query , cb ) -> cb . lessThanOrEqualTo ( targetRoot . get ( JpaTarget_ . lastTargetQuery ) , overdueTimestamp ) ; |
public class BackendCleanup { /** * Default organization must never be deleted */
private static void truncateOrganizations ( String tableName , Statement ddlStatement , Connection connection ) throws SQLException { } } | try ( PreparedStatement preparedStatement = connection . prepareStatement ( "delete from organizations where kee <> ?" ) ) { preparedStatement . setString ( 1 , "default-organization" ) ; preparedStatement . execute ( ) ; // commit is useless on some databases
connection . commit ( ) ; } |
public class IPAddressDivision { /** * Produces a string to represent the segment , favouring wildcards and range characters over the network prefix to represent subnets .
* If it exists , the segment CIDR prefix is ignored and the explicit range is printed .
* @ return */
@ Override public String getWildcardString... | String result = cachedWildcardString ; if ( result == null ) { synchronized ( this ) { result = cachedWildcardString ; if ( result == null ) { if ( ! isPrefixed ( ) || ! isMultiple ( ) ) { result = getString ( ) ; } else if ( isFullRange ( ) ) { result = IPAddress . SEGMENT_WILDCARD_STR ; } else { result = getDefaultRa... |
public class CheckpointStatsCache { /** * Try to add the checkpoint to the cache .
* @ param checkpoint Checkpoint to be added . */
public void tryAdd ( AbstractCheckpointStats checkpoint ) { } } | // Don ' t add in progress checkpoints as they will be replaced by their
// completed / failed version eventually .
if ( cache != null && checkpoint != null && ! checkpoint . getStatus ( ) . isInProgress ( ) ) { cache . put ( checkpoint . getCheckpointId ( ) , checkpoint ) ; } |
public class DataSourceService { /** * Utility method that converts transaction isolation level constant names
* to the corresponding int value .
* @ param wProps WAS data source properties , including the configured isolationLevel property .
* @ param vendorImplClassName name of the vendor data source or driver ... | // Convert isolationLevel constant name to integer
Object isolationLevel = wProps . get ( DataSourceDef . isolationLevel . name ( ) ) ; if ( isolationLevel instanceof String ) { isolationLevel = "TRANSACTION_READ_COMMITTED" . equals ( isolationLevel ) ? Connection . TRANSACTION_READ_COMMITTED : "TRANSACTION_REPEATABLE_... |
public class GlobalTypeImpl { /** * < ! - - begin - user - doc - - >
* < ! - - end - user - doc - - >
* @ generated */
@ Override public boolean eIsSet ( int featureID ) { } } | switch ( featureID ) { case DroolsPackage . GLOBAL_TYPE__IDENTIFIER : return IDENTIFIER_EDEFAULT == null ? identifier != null : ! IDENTIFIER_EDEFAULT . equals ( identifier ) ; case DroolsPackage . GLOBAL_TYPE__TYPE : return TYPE_EDEFAULT == null ? type != null : ! TYPE_EDEFAULT . equals ( type ) ; } return super . eIsS... |
public class Filtering { /** * Creates an iterator yielding values from the source iterator up until the
* passed predicate matches . E . g :
* < code > takeWhile ( [ 2 , 4 , 3 , 6 ] , isEven ) - > [ 2 , 4 ] < / code >
* @ param < E > the iterator element type
* @ param iterator the source iterator
* @ param ... | return new TakeWhileIterator < E > ( iterator , predicate ) ; |
public class MapFileHeader { /** * Reads and validates the header block from the map file .
* @ param readBuffer the ReadBuffer for the file data .
* @ param fileSize the size of the map file in bytes .
* @ throws IOException if an error occurs while reading the file . */
public void readHeader ( ReadBuffer readB... | RequiredFields . readMagicByte ( readBuffer ) ; RequiredFields . readRemainingHeader ( readBuffer ) ; MapFileInfoBuilder mapFileInfoBuilder = new MapFileInfoBuilder ( ) ; RequiredFields . readFileVersion ( readBuffer , mapFileInfoBuilder ) ; RequiredFields . readFileSize ( readBuffer , fileSize , mapFileInfoBuilder ) ;... |
public class BeanDefinitionParser { /** * Return a typed String value Object for the given ' idref ' element .
* @ param ele a { @ link org . w3c . dom . Element } object .
* @ return a { @ link java . lang . Object } object . */
public Object parseIdRefElement ( Element ele ) { } } | // A generic reference to any name of any bean .
String refName = ele . getAttribute ( BEAN_REF_ATTRIBUTE ) ; if ( ! StringUtils . hasLength ( refName ) ) { // A reference to the id of another bean in the same XML file .
refName = ele . getAttribute ( LOCAL_REF_ATTRIBUTE ) ; if ( ! StringUtils . hasLength ( refName ) )... |
public class MaybeT { /** * { @ inheritDoc } */
@ Override public < B > Lazy < MaybeT < M , B > > lazyZip ( Lazy < ? extends Applicative < Function < ? super A , ? extends B > , MonadT < M , Maybe < ? > , ? > > > lazyAppFn ) { } } | return new Compose < > ( mma ) . lazyZip ( lazyAppFn . fmap ( maybeT -> new Compose < > ( maybeT . < MaybeT < M , Function < ? super A , ? extends B > > > coerce ( ) . < Maybe < Function < ? super A , ? extends B > > , Monad < Maybe < Function < ? super A , ? extends B > > , M > > run ( ) ) ) ) . fmap ( compose -> mayb... |
public class Assert { /** * Assert that a collection contains elements ; that is , it must not be { @ code null } and must
* contain at least one element .
* < pre class = " code " >
* Assert . notEmpty ( collection , ( ) - & gt ; " The " + collectionType + " collection must contain elements " ) ;
* < / pre >
... | if ( CollectionUtils . isEmpty ( collection ) ) { throw new IllegalArgumentException ( Assert . nullSafeGet ( messageSupplier ) ) ; } |
public class TemplateCompiler { /** * Returns the list of classes needed to implement this template .
* < p > For each template , we generate :
* < ul >
* < li > A { @ link com . google . template . soy . jbcsrc . shared . CompiledTemplate . Factory }
* < li > A { @ link CompiledTemplate }
* < li > A Detachab... | List < ClassData > classes = new ArrayList < > ( ) ; // first generate the factory
if ( templateNode . getVisibility ( ) != Visibility . PRIVATE ) { // Don ' t generate factory if the template is private . The factories are only
// useful to instantiate templates for calls from java . Soy - > Soy calls should invoke
//... |
public class AddressUpdater { /** * Add the requested post parameters to the Request .
* @ param request Request to add post params to */
private void addPostParams ( final Request request ) { } } | if ( friendlyName != null ) { request . addPostParam ( "FriendlyName" , friendlyName ) ; } if ( customerName != null ) { request . addPostParam ( "CustomerName" , customerName ) ; } if ( street != null ) { request . addPostParam ( "Street" , street ) ; } if ( city != null ) { request . addPostParam ( "City" , city ) ; ... |
public class UtilValidate { /** * isUSPhoneAreaCode returns true if string s is a valid U . S . Phone Area Code . Must be 3 digits . */
public static boolean isUSPhoneAreaCode ( String s ) { } } | if ( isEmpty ( s ) ) return defaultEmptyOK ; String normalizedPhone = stripCharsInBag ( s , phoneNumberDelimiters ) ; return ( isInteger ( normalizedPhone ) && normalizedPhone . length ( ) == digitsInUSPhoneAreaCode ) ; |
public class BTCTradeMarketDataService { /** * { @ inheritDoc } */
@ Override public Trades getTrades ( CurrencyPair currencyPair , Object ... args ) throws IOException { } } | final BTCTradeTrade [ ] trades ; if ( args == null || args . length == 0 ) { trades = getBTCTradeTrades ( ) ; } else { trades = getBTCTradeTrades ( toLong ( args [ 0 ] ) ) ; } return BTCTradeAdapters . adaptTrades ( trades , currencyPair ) ; |
public class Utils { /** * Reads properties from a file .
* @ param file a properties file
* @ return a { @ link Properties } instance
* @ throws IOException if reading failed */
public static Properties readPropertiesFile ( File file ) throws IOException { } } | Properties result = new Properties ( ) ; InputStream in = null ; try { in = new FileInputStream ( file ) ; result . load ( in ) ; } finally { closeQuietly ( in ) ; } return result ; |
public class UpdateManager { /** * Finds the { @ link FileDownloader } to use for this repository .
* @ param pluginId the plugin we wish to download
* @ return FileDownloader instance */
protected FileDownloader getFileDownloader ( String pluginId ) { } } | for ( UpdateRepository ur : repositories ) { if ( ur . getPlugin ( pluginId ) != null && ur . getFileDownloader ( ) != null ) { return ur . getFileDownloader ( ) ; } } return new SimpleFileDownloader ( ) ; |
public class XBlockExpressionImpl { /** * < ! - - begin - user - doc - - >
* < ! - - end - user - doc - - >
* @ generated */
@ Override public void eUnset ( int featureID ) { } } | switch ( featureID ) { case XbasePackage . XBLOCK_EXPRESSION__EXPRESSIONS : getExpressions ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; |
public class HtmlForm { /** * < p > Set the value of the < code > accept < / code > property . < / p > */
public void setAccept ( java . lang . String accept ) { } } | getStateHelper ( ) . put ( PropertyKeys . accept , accept ) ; handleAttribute ( "accept" , accept ) ; |
public class RowListMetaData { /** * { @ inheritDoc } */
public boolean isSigned ( final int column ) throws SQLException { } } | final int type = getColumnType ( column ) ; if ( type == - 1 ) { return false ; } // end of if
final Boolean s = Defaults . jdbcTypeSigns . get ( type ) ; return ( s == null ) ? false : s ; |
public class ActionSupport { /** * Add action error .
* @ param msgKey
* @ param args */
protected final void addError ( String msgKey , Object ... args ) { } } | getFlash ( ) . addErrorNow ( getTextInternal ( msgKey , args ) ) ; |
public class CommerceWarehouseItemLocalServiceWrapper { /** * Updates the commerce warehouse item in the database or adds it if it does not yet exist . Also notifies the appropriate model listeners .
* @ param commerceWarehouseItem the commerce warehouse item
* @ return the commerce warehouse item that was updated ... | return _commerceWarehouseItemLocalService . updateCommerceWarehouseItem ( commerceWarehouseItem ) ; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.