This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2021-06-19 13:10:31.9839513 9004 18284 SLS Get response for service 855E8A7C-ECB4-4CA3-B045-1DFA50104289 - forceExpire[False] asyncRefreshOnExpiry[False] | |
2021-06-19 13:10:32.2093371 9004 18284 Agent Added update 7DECEB2A-1088-457C-8615-AC239416D00A.1 to search result | |
2021-06-19 13:10:32.2093414 9004 18284 Agent Removing unreferenced framework update {7DECEB2A-1088-457C-8615-AC239416D00A}.1 from search result. | |
2021-06-19 13:10:32.2093654 9004 18284 Agent Found 0 updates and 0 categories in search; evaluated appl. rules of 17 out of 55 deployed entities | |
2021-06-19 13:10:32.2108099 9004 18284 Agent * END * Finding updates CallerId = Update;ScanForUpdates, Id = 92, Exit code = 0x00000000 (cV = XV8Ik1/idk2Vmox/.1.0.1.0.0.1) | |
2021-06-19 13:10:32.2147709 9004 18284 IdleTimer WU operation (CSearchCall::Init ID 92, operation # 491) stopped; does not use network; is at background priority | |
2021-06-19 13:10:32.2151999 15716 16392 ComApi *RESUMED* S |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn install v1.22.4 | |
[1/6] Validating package.json... | |
[2/6] Resolving packages... | |
[3/6] Fetching packages... | |
info [email protected]: The platform "linux" is incompatible with this module. | |
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation. | |
[4/6] Linking dependencies... | |
warning " > [email protected]" has unmet peer dependency "prop-types@^15.0.0". | |
warning " > [email protected]" has unmet peer dependency "prop-types@^15.5.7". | |
warning " > [email protected]" has incorrect peer dependency "grunt@~0.4.5". |
- Object-Oriented Programming The Trillion Dollar Disaster
- What Alan Kay Got Wrong About Objects
- Alan Kay and OO Programming
- Is Erlang Object Oriented?
- What are the key differences between OO in Smalltalk and Java
- Java Vs SmallTalk
- Weaknesses of Smalltalk and Strengths of Erlang
- [10 Object Oriented (OOP) Design Principles Java Programmers Should Know](https://javarevisited.blogspot.com/2018/07/10-object-oriented-design-principles.ht
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, render_template | |
# from db_setup import init_db, db_session | |
from forms import MusicSearchForm | |
from flask import flash, request, redirect, url_for | |
import requests | |
from query import do_query | |
# from models import Album | |
app = Flask(__name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Usage: mailman members [OPTIONS] LISTSPEC | |
Display a mailing list's members, with filtering along various criteria. | |
Options: | |
-a, --add FILENAME Add all member addresses in FILENAME. | |
FILENAME can be '-' to indicate standard | |
input. Blank lines and lines That start | |
with a '#' are ignored. Without this | |
option, this command displays mailing list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def dbconnection(function): | |
"""Decorator for getting at the database connection. | |
Use this to avoid having to access the global `config.db.store` | |
attribute. This calls the function with `store` as the first argument. | |
""" | |
def wrapper(*args, **kws): | |
# args[0] is self, if there is one. | |
if len(args) > 0: | |
return function(args[0], config.db.store, *args[1:], **kws) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File bounce.py in mailman/src/mailman/interfaces is an interface file which defines various class of bounce functions.Here the templates are to define a registration record and register bounce events. | |
File bounce.py in mailman/src/mailman/model is a model file for various functions, it works on the interfaces provided by the above files. | |
File bounce.py in mailman/src/mailman/runners/bounce.py runs the bounce runner. | |
Currently it is just finding out the temporary and permanent failures and storing the addresses to be processed. | |
NewerOlder