tokens
sequence
ner_tags
sequence
[ "Pardon", "my", "stupidity", ",", "anyone", "knows", "difference", "between", "them", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Will", "catch", "and", "rethrow", "only", "exceptions", "derived", "from", "Exception", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Class", "O" ]
[ "Will", "catch", "and", "rethrow", "any", "exception", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "(", "Edit", ":", "Since", "CLRv2", ",", "all", "exceptions", "are", "derived", "from", "Exception", "so", "this", "is", "identical", "to", "1", "." ]
[ "O", "O", "O", "O", "B-Library", "O", "O", "B-Class", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "See", "Eric", "Lippert", "'s", "comment", "below", ")", "." ]
[ "O", "B-User_Name", "I-User_Name", "O", "O", "O", "O", "O" ]
[ "Will", "catch", "any", "exception", "derived", "from", "Exception", "and", "throw", "it", "again", ",", "thus", "resetting", "the", "stack", "trace", "of", "the", "exception", "." ]
[ "O", "O", "O", "B-Class", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "There", "is", "no", "difference", "between", "example", "1", "and", "2", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Both", "rethrows", "the", "original", "exception", ",", "and", "both", "catches", "the", "general", "Exception", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "You", "would", "use", "example", "1", "if", "you", "wanted", "to", "catch", "a", "more", "specific", "exception", ",", "such", "as", "DivisionByZeroException", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Class", "O" ]
[ "For", "the", "last", "example", ",", "you", "are", "not", "re-throwing", "the", "exception", ";", "but", "throwing", "the", "same", "exception", "object", "that", "you", "caught", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O" ]
[ "This", "causes", "the", "exception", "stacktrace", "to", "be", "re-set", "to", "the", "location", "where", "you", "throw", "it", "-", "which", "might", "be", "a", "problem", "because", "the", "stacktrace", "then", "does", "not", "point", "to", "the", "location", "in", "code", ",", "where", "the", "error", "actually", "occured", "." ]
[ "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "new", "to", "Durable", "function", "(", "Orchestration", "function", ")", "and", "seen", "sample", "application", "as", "per", "Microsoft", "documentation.So", "I", "have", "few", "doubts", "." ]
[ "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O" ]
[ "example", ":" ]
[ "O", "O" ]
[ "to", "invoke", "it", "I", "made", "HTTP", "POST", "request", "using", "postman", "so", "request", "processed", "successfully", "but", "when", "I", "configured", "different", "verb", "like", "HTTP", "GET", "it", "was", "responded", "with", "NotFound", "\"", "error", "in", "console", "as", "well", "as", "request", "made", "to", "it", "with", "http", "request", "from", "browser", "responded", "with", "\"", "NotFound", "\"", "error", "in", "console", ".Why", "this", "happened", "?" ]
[ "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "B-Error_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Error_Name", "O", "O", "O", "B-Application", "O", "O", "O", "O" ]
[ "Can", "I", "invoke", "any", "Orchestration", "function", "with", "in", "timer", "trigger", "azure", "function", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O" ]
[ "If", "not", "why", "?" ]
[ "O", "O", "O", "O" ]
[ "UPDATE", ":" ]
[ "O", "O" ]
[ "Some", "additional", "details", "about", "question" ]
[ "O", "O", "O", "O", "O" ]
[ "can", "I", "make", "request", "to", "http", "trigger", "by", "timer", "triggred", "why", "because", "my", "durable", "function", "has", "long", "running", "process", "so", "if", "invoke", "orchestration", "function", "in", "timer", "trigger", "itself", "so", "there", "might", "be", "possibility", "of", "timer", "triggered", "timeout", "so", "that", "why", "I", "am", "trying", "to", "follow", "this", "approach.Is", "it", "possible", "to", "invoke", "by", "above", "code", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "general", "Azure", "Functions", "behavior", "." ]
[ "O", "O", "O", "B-Application", "I-Application", "O", "O" ]
[ "The", "reason", "GET", "does", "n't", "work", "is", "because", "the", "function", "in", "the", "sample", "is", "only", "configured", "to", "work", "with", "POST", "." ]
[ "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "See", "the", "[", "HttpTrigger", "]", "attribute", "in", "the", "function", "signature", ":" ]
[ "O", "O", "B-Variable", "I-Variable", "I-Variable", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "want", "to", "support", "GET", ",", "then", "change", "the", "methods", "parameter", "accordingly", ":" ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Variable", "O", "O", "O" ]
[ "Note", "that", "Visual", "Studio", "seems", "to", "have", "a", "caching", "bug", "where", "making", "changes", "to", "route", "information", "is", "not", "properly", "saved", "when", "debugging", "locally", "." ]
[ "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "opened", "a", "GitHub", "issue", "to", "track", "that", "here", ":", "https://github.com/Azure/Azure-Functions/issues/552" ]
[ "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "more", "information", "on", "HTTP", "triggers", ",", "see", "this", "documentation", ":", "https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "want", "to", "trigger", "a", "Durable", "Function", "using", "a", "timer", "trigger", ",", "then", "just", "change", "the", "trigger", "type", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", ":" ]
[ "O", "O", "O" ]
[ "For", "more", "information", "on", "Timer", "triggers", ",", "see", "this", "documentation", ":", "https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Because", "you", "specified", "your", "function", "to", "be", "triggered", "on", "POST", "only", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O" ]
[ "To", "enable", "GET", ",", "add", "get", "to", "methods", "parameter", "." ]
[ "O", "O", "B-Function", "O", "O", "B-Code_Block", "O", "B-Variable", "O", "O" ]
[ "You", "can", "define", "timer-triggered", "function", "with", "OrchestrationClient", "input", "binding", "similar", "to", "your", "HTTP", "function", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Sample", "declaration", ":" ]
[ "O", "O", "O" ]
[ "I", "'m", "relatively", "new", "to", "git", ",", "having", "used", "Subversion", "primarily", "in", "the", "past", "." ]
[ "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O" ]
[ "I", "recently", "cloned", "a", "Subversion", "repository", ",", "made", "changes", ",", "then", "set", "up", "a", "remote", "bare", "git", "repository", "that", "fellow", "developers", "will", "use", "as", "we", "move", "towards", "git", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "I", "have", "n't", "pushed", "changes", "to", "the", "SVN", "repository", "yet", "(", "at", "least", "I", "have", "n't", "intentionally", "done", "this", "!", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "tried", "to", "pull", "in", "new", "changes", "from", "Subversion", "with", "git", "svn", "rebase", ",", "and", "that", "'s", "about", "where", "the", "trouble", "began", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "B-Library", "I-Library", "I-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "think", "the", "best", "illustration", "of", "my", "problem", "is", "output", "from", "gitk", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Any", "ideas", "on", "how", "to", "delete", "this", "duplicate", "history", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "'s", "looking", "like", "this", "helped", "(", "from", "helpful", "people", "at", "#git", ")", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O" ]
[ "What", "is", "this", "doing", "?" ]
[ "O", "O", "O", "O", "O" ]
[ "You", "could", "try" ]
[ "O", "O", "O" ]
[ "in", "master", "reset", "to", "latest", "commit", "before", "merge" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "switch", "to", "branch" ]
[ "O", "O", "O" ]
[ "rebase", "branch", "on", "master" ]
[ "O", "O", "O", "O" ]
[ "switch", "to", "master" ]
[ "O", "O", "O" ]
[ "merge", "branch" ]
[ "O", "O" ]
[ "I", "have", "the", "table", "in", "the", "following", "format" ]
[ "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O" ]
[ "I", "would", "like", "to", "group", "different", "column", "in", "a", "bit", "different", "on", "the", "basis", "of", "reporting_date", "so", "that", "my", "out", "put", "looks", "like", "this" ]
[ "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "i.e", "the", "interest_payment", "should", "grouped", "by", "reporting", "date", "but", "while", "grouping", "the", "balance", "i", "want", "to", "group", "by", "first", "row", "of", "that", "reporting", "date", "only" ]
[ "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O" ]
[ "so", "for", "200401", "the", "interest", "payment", "will", "be", "15", "but", "for", "balance", "will", "be", "only", "10" ]
[ "O", "O", "B-Variable", "O", "B-Variable", "I-Variable", "O", "O", "B-Value", "O", "O", "B-Variable", "O", "O", "O", "B-Value" ]
[ "This", "is", "the", "query", "i", "was", "planning", "to", "use", "but", "obviously", "it", "will", "not", "work", "for", "balance", "column", ".Is", "there", "a", "way", "to", "handle", "this", "in", "sql", "server", "so", "that", "in", "a", "single", "query", "i", "can", "group", "by", "particular", "set", "but", "for", "the", "other", "i", "can", "group", "by", "different", "set", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O" ]
[ "Thanks", "." ]
[ "O", "O" ]
[ "You", "can", "use", "the", "following", "query", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "make", "the", "assumption", "that", "id", "field", "defines", "precedence", "for", "balance", ",", "i.e", ".", "the", "balance", "with", "the", "lowest", "related", "id", "value", "comes", "first", "." ]
[ "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O" ]
[ "I", "'m", "looking", "for", "a", "simple", "syntax", "to", "allow", "me", "to", "create", "a", "new", "object", "with", "one", "property", "and", "set", "the", "value", "of", "that", "property", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Here", "'s", "an", "example", "." ]
[ "O", "O", "O", "O", "O" ]
[ "I", "'d", "love", "to", "be", "able", "to", "do", "something", "all", "on", "one", "line", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Should", "log", ":" ]
[ "O", "O", "O" ]
[ "I", "thought", "I", "saw", "once", "that", "this", "was", "going", "to", "be", "possible", "in", "the", "es-spec", "but", "it", "does", "n't", "work", "with", "the", "babel-2015", "preset", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "You", "will", "need", "to", "use", "computed", "property", "names", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names" ]
[ "O" ]
[ "(", "This", "works", "with", "es2015", "Babel", "preset", ")" ]
[ "O", "O", "O", "O", "B-Version", "B-Application", "O", "O" ]
[ "this", "works", "for", "me", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "*", "note", ":", "I", "have", "the", "result", "consoling", "to", "the", "console", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Open", "console", "to", "see", "the", "results", "." ]
[ "O", "B-Application", "O", "O", "O", "O", "O" ]
[ "<script", "src=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script>" ]
[ "B-Code_Block", "I-Code_Block" ]
[ "0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A" ]
[ "O" ]
[ "noted", ":", "other", "person", "got", "in", "before", "me", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "trying", "to", "build", "appinventor", "locally", "on", "windows", "7", "using", "the", "following", "document", ":", "https://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d" ]
[ "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-Operating_System", "B-Version", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "downloaded", "all", "the", "software", "listed", "in", "section", "3", "and", "proceeded", "building", "the", "app", "inventor", "by", "cloning", "a", "git", "repository", "by", "running", "the", "following", "git", "command", "from", "a", "shell", ":", "git", "clone", "https://github.com/mit-cml/appinventor-sources.git" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-Application", "O", "B-Code_Block", "I-Code_Block", "O" ]
[ "I", "keep", "getting", "the", "following", "error", ":", "failed", "to", "connect", "to", "github", "443", "error" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Error_Name", "I-Error_Name" ]
[ "I", "'ve", "tired", "doing", "a", "Google", "search", "and", "found", "this", ":", "GitHub", "-", "failed", "to", "connect", "to", "github", "443", "windows/", "Failed", "to", "connect", "to", "gitHub", "-", "No", "Error" ]
[ "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "B-Website", "B-Error_Name", "B-Operating_System", "O", "O", "O", "O", "B-Website", "O", "O", "O" ]
[ "I", "'m", "not", "at", "all", "experienced", "in", "this", "field", "so", "I", "do", "not", "understand", "any", "of", "the", "solutions", "mentioned", ",", "could", "you", "please", "try", "and", "help", "me", "out", "by", "going", "through", "the", "best", "solution", "step", "by", "step", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "working", "in", "a", "company", "so", "I", "ca", "n't", "get", "the", "proxy", "like", "they", "mentioned", "or", "the", "firewall", "might", "be", "blocking", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thank", "you", "in", "advance", "!" ]
[ "O", "O", "O", "O", "O" ]
[ "If", "you", "are", "behind", "the", "corporate", "firewall", "and", "if", "all", "your", "requests", "goes", "through", "the", "proxy", "server", "then", "you", "must", "set", "the", "Git", "proxy", "first", "before", "running", "any", "get", "commands", "like", "pull", ",", "fetch", "and", "push", "commands", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "B-Code_Block", "O", "B-Code_Block", "O", "O" ]
[ "To", "set", "the", "Git", "proxy", "for", "HTTP", "and", "HTTPS", "use", "the", "following", "Git", "commands", "in", "the", "git", "bash", "shell" ]
[ "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-Application", "I-Application", "I-Application" ]
[ "Check", "How", "to", "configure", "Git", "proxy", "and", "How", "to", "unset", "the", "Git", "Proxy", "for", "more", "details" ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O" ]
[ "If", "say", "i", "am", "having", "a", "textbox", "input", "and", "a", "integer", "value", "A", "then", "how", "to", "check", "at", "time", "of", "typing", "the", "data", "itself", "that", "the", "value", "entered", "in", "textbox", "does", "not", "exceed", "A", "." ]
[ "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Data_Type", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Variable", "O" ]
[ "Textbox", ":" ]
[ "B-User_Interface_Element", "O" ]
[ "My", "script", ":" ]
[ "O", "B-HTML_XML_Tag", "O" ]
[ "(", "According", "to", "answer", "by", "Felix", ")" ]
[ "O", "O", "O", "O", "O", "B-User_Name", "O" ]
[ "FORM", ":" ]
[ "B-HTML_XML_Tag", "O" ]
[ "Whats", "problem", "in", "this", "?" ]
[ "O", "O", "O", "O", "O" ]
[ "the", "script", "code", "is", "not", "running", "and", "not", "printing", "the", "error", "message.Please", "help" ]
[ "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "use", ".keyup()", "event", ":" ]
[ "O", "O", "O", "B-Function", "O", "O" ]
[ "Fiddle", "Demo" ]
[ "B-Application", "O" ]
[ "Based", "on", "your", "comment", ",", "you", "can", "do", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Fiddle", "Demo" ]
[ "B-Application", "O" ]
[ "Do", "this", ":" ]
[ "O", "O", "O" ]
[ "Demo" ]
[ "O" ]
[ "I", "have", "a", "Class", "which", "I", "have", "created", "as", "an", "NSObject", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "This", "class", "has", "a", "number", "of", "properties", "of", "different", "types", "and", "methods", "etc", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "When", "I", "instantiate", "this", "class", "in", "my", "App", "(", "say", "in", "the", "main", "View", "Controller", ")", "I" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O" ]
[ "immediately", "send", "it", "a", "release", "call", "when", "I", "am", "finished", "using", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "ie", ":" ]
[ "O", "O" ]
[ "So", "my", "question", "is", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "When", "I", "release", "myObject", ",", "does", "it", "automatically", "release", "all", "of", "the", "declared", "objects", ",", "variables", ",", "etc", ".", "that", "I", "declared", "in", "the", "MyObject", ".h", "file", "?" ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "I-File_Name", "O", "O" ]
[ "OR" ]
[ "O" ]