Home
last modified time | relevance | path

Searched refs:backend_name (Results 1 – 25 of 772) sorted by relevance

12345678910>>...31

/dports/www/py-weboob/weboob-2.0/weboob/core/
H A Dbackendscfg.py138 for backend_name in config.sections():
172 if not backend_name:
176 config.add_section(backend_name)
181 config.set(backend_name, key, value)
185 def edit_backend(self, backend_name, params): argument
194 if not config.has_section(backend_name):
198 config.set(backend_name, key, value)
202 def get_backend(self, backend_name): argument
211 if not config.has_section(backend_name):
214 items = dict(config.items(backend_name))
[all …]
/dports/www/py-weboob/weboob-2.0/weboob/applications/weboobcfg/
H A Dweboobcfg.py99 backend_name = None
107 if backend_name is None:
108 backend_name = option
125 def do_confirm(self, backend_name): argument
137 self.weboob.load_backends(names=[backend_name])
139 backend = self.weboob.get_backend(backend_name)
170 row = OrderedDict([('Name', backend_name),
179 def do_enable(self, backend_name): argument
191 def do_disable(self, backend_name): argument
203 def do_remove(self, backend_name): argument
[all …]
/dports/www/py-requests-cache/requests-cache-0.4.13/requests_cache/backends/
H A D__init__.py43 def create_backend(backend_name, cache_name, options): argument
44 if isinstance(backend_name, BaseCache):
45 return backend_name
47 if backend_name is None:
48 backend_name = _get_default_backend_name()
50 return registry[backend_name](cache_name, **options)
52 if backend_name in _backend_dependencies:
54 _backend_dependencies[backend_name])
57 (backend_name, ', '.join(registry.keys())))
/dports/science/nest/nest-simulator-3.1/nestkernel/
H A Dio_manager.cpp285 backend = recording_backends_.find( backend_name ); in is_valid_recording_backend()
292 auto backend = stimulation_backends_.find( backend_name ); in is_valid_stimulation_backend()
297 IOManager::write( const Name& backend_name, in write() argument
311 if ( it.first == backend_name ) in enroll_recorder()
326 if ( not is_valid_stimulation_backend( backend_name ) and not backend_name.toString().empty() ) in enroll_stimulator()
330 if ( backend_name.toString().empty() ) in enroll_stimulator()
341 if ( it.first == backend_name ) in enroll_stimulator()
354 IOManager::set_recording_value_names( const Name& backend_name, in set_recording_value_names() argument
365 recording_backends_[ backend_name ]->check_device_status( params ); in check_recording_backend_device_status()
371 recording_backends_[ backend_name ]->get_device_defaults( params ); in get_recording_backend_device_defaults()
[all …]
/dports/www/py-weboob/weboob-2.0/weboob/applications/havedate/
H A Dhavedate.py88 _id, backend_name = self.parse_id(id, unique_backend=True)
90 for query in self.do('send_query', _id, backends=backend_name):
103 for backend_name, optim in backends_optims.items():
110 print('Stopping %s: %s' % (optim_name, backend_name))
122 print('Starting %s: %s' % (optim_name, backend_name))
206 if backend_name == '*':
207 backend_name = None
208 … elif backend_name is not None and backend_name not in [b.name for b in self.enabled_backends]:
213 return self.optims('start', backend_name, optims_names)
215 return self.optims('stop', backend_name, optims_names)
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/backends/
H A D__init__.py54 backend_name = name[9:]
56 backend_name = 'backend_' + name
57 backend_name = backend_name.lower() # until we banish mixed case
58 backend_name = 'matplotlib.backends.%s' % backend_name.lower()
62 backend_mod = __import__(backend_name, globals(), locals(),
63 [backend_name], 0)
/dports/devel/p5-Cache-AgainstFile/Cache-AgainstFile-1.016/lib/Cache/
H A DAgainstFile.pm32 …my $backend_name = (scalar $method =~ /::/? $method : "$class\::$method"); #If no namespace, assum…
33 die("Package name '$backend_name' doesn't look valid") unless($backend_name =~ /^[\w:]+$/);
34 eval "require $backend_name";
35 die("Unable to load $backend_name - $@") if($@);
41 *{$backend_name."::".$stub} = \&{$stub};
44 my $backend = $backend_name->new($loader, $options);
/dports/databases/evolution-data-server/evolution-data-server-3.42.1/src/libedataserver/
H A De-source-backend.c33 gchar *backend_name; member
88 g_free (priv->backend_name); in source_backend_finalize()
143 return extension->priv->backend_name; in e_source_backend_get_backend_name()
192 const gchar *backend_name) in e_source_backend_set_backend_name() argument
198 if (e_util_strcmp0 (extension->priv->backend_name, backend_name) == 0) { in e_source_backend_set_backend_name()
203 g_free (extension->priv->backend_name); in e_source_backend_set_backend_name()
204 extension->priv->backend_name = e_util_strdup_strip (backend_name); in e_source_backend_set_backend_name()
/dports/devel/p5-Cache-AgainstFile/Cache-AgainstFile-1.016/lib/Cache/AgainstFile/
H A DCacheModule.pm18 my $backend_name = $options->{CacheModule};
19 die("Package name '$backend_name' doesn't look valid") unless($backend_name =~ /^[\w:]+$/);
20 eval "require $backend_name";
21 die("Unable to load $backend_name - $@") if($@);
26 *{$backend_name."::".$stub} = \&{$stub} if(defined &{$backend_name."::".$stub});
29 my $backend = $backend_name->new($options->{CacheModuleOptions});
/dports/databases/evolution-data-server/evolution-data-server-3.42.1/src/services/evolution-source-registry/
H A Devolution-source-registry-migrate-tweaks.c157 gchar *backend_name; in evolution_source_registry_migrate_owncloud_to_webdav() local
159backend_name = g_key_file_get_string (key_file, E_SOURCE_EXTENSION_COLLECTION, "BackendName", NULL… in evolution_source_registry_migrate_owncloud_to_webdav()
160 if (g_strcmp0 (backend_name, "owncloud") == 0) { in evolution_source_registry_migrate_owncloud_to_webdav()
165 g_free (backend_name); in evolution_source_registry_migrate_owncloud_to_webdav()
184 gchar *backend_name; in evolution_source_registry_migrate_webdav_book_to_carddav() local
186backend_name = g_key_file_get_string (key_file, E_SOURCE_EXTENSION_ADDRESS_BOOK, "BackendName", NU… in evolution_source_registry_migrate_webdav_book_to_carddav()
187 if (g_strcmp0 (backend_name, "webdav") == 0) { in evolution_source_registry_migrate_webdav_book_to_carddav()
192 g_free (backend_name); in evolution_source_registry_migrate_webdav_book_to_carddav()
223 gchar *backend_name; in evolution_source_registry_migrate_google_book_to_carddav() local
226 if (g_strcmp0 (backend_name, "google") == 0) { in evolution_source_registry_migrate_google_book_to_carddav()
[all …]
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/search/management/commands/
H A Dupdate_index.py56 def update_backend(self, backend_name, schema_only=False, chunk_size=DEFAULT_CHUNK_SIZE): argument
57 self.stdout.write("Updating backend: " + backend_name)
59 backend = get_search_backend(backend_name)
62 self.stdout.write("Backend '%s' doesn't require rebuilding" % backend_name)
67 self.stdout.write(backend_name + ": No indices to rebuild")
70 self.stdout.write(backend_name + ": Rebuilding index %s" % index.name)
84 …self.stdout.write('{}: {}.{} '.format(backend_name, model._meta.app_label, model.__name__).ljust(3…
96 self.stdout.write(backend_name + ": indexed %d objects" % object_count)
123 for backend_name in backend_names:
125 backend_name,
/dports/devel/p5-Algorithm-FloodControl/Algorithm-FloodControl-2.001000/lib/Algorithm/
H A DFloodControl.pm89 backend_name => { type => SCALAR, optional => 1 },
95 … my $backend_name = __PACKAGE__ . '::Backend::' . ( $self->{backend_name} || ref $self->storage );
96 load $backend_name;
97 $self->backend_name($backend_name);
108 my $backend = $self->backend_name->new(
130 my $queue = $self->backend_name->new(
149 my $queue = $self->backend_name->new(
168 my $queue = $self->backend_name->new(
/dports/databases/xapian-core/xapian-core-1.4.18/tests/harness/
H A Dtestrunner.cc47 TestRunner::use_backend(const string & backend_name) in use_backend() argument
51 if (backend_name == user_backend) in use_backend()
53 if (startswith(backend_name, user_backend + "_")) in use_backend()
59 TestRunner::set_properties_for_backend(const string & backend_name) in set_properties_for_backend() argument
114 if (backend_name == i->name) { in set_properties_for_backend()
119 throw Xapian::InvalidArgumentError("Unknown backend " + backend_name); in set_properties_for_backend()
125 const string& backend_name = manager->get_dbtype(); in do_tests_for_backend_() local
126 if (use_backend(backend_name)) { in do_tests_for_backend_()
127 set_properties_for_backend(backend_name); in do_tests_for_backend_()
128 cout << "Running tests with backend \"" << backend_name << "\"..." in do_tests_for_backend_()
/dports/mail/evolution/evolution-3.42.1/src/mail/
H A De-mail-config-service-page.c117 const gchar *backend_name; in mail_config_service_page_new_candidate() local
226 if (class->backend_name != NULL) in mail_config_service_page_init_backends()
262 const gchar *backend_name; in mail_config_service_page_id_to_backend() local
267 if (backend_name != NULL) in mail_config_service_page_id_to_backend()
270 backend_name); in mail_config_service_page_id_to_backend()
285 const gchar *backend_name; in mail_config_service_page_backend_name_to_description() local
290 if (backend_name == NULL) in mail_config_service_page_backend_name_to_description()
291 backend_name = "none"; in mail_config_service_page_backend_name_to_description()
634 const gchar *backend_name; in mail_config_service_page_check_complete() local
641 if (backend_name == NULL) in mail_config_service_page_check_complete()
[all …]
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/search/tests/
H A Dtest_page_search.py19 self.backend = get_search_backend(self.backend_name)
39 …Page.objects.order_by('title').search('blah', order_by_relevance=False, backend=self.backend_name))
42 list(Page.objects.specific().search('bread', backend=self.backend_name))
45 list(Page.objects.specific().search('bread', fields=['title'], backend=self.backend_name))
48 for backend_name in settings.WAGTAILSEARCH_BACKENDS.keys():
49 test_name = str("Test%sBackend" % backend_name.title())
50 …lobals()[test_name] = type(test_name, (PageSearchTests, TestCase,), {'backend_name': backend_name})
/dports/graphics/atril-lite/atril-1.26.0/libdocument/
H A Dev-document.h254 backend_name##_get_type (void) \
259 static void backend_name##_init (BackendName *self); \
260 static void backend_name##_class_init (BackendName##Class *klass); \
261 static gpointer backend_name##_parent_class = NULL; \
262 static void backend_name##_class_intern_init (gpointer klass) \
264 backend_name##_parent_class = g_type_class_peek_parent (klass); \
265 backend_name##_class_init ((BackendName##Class *) klass); \
275 (GClassInitFunc) backend_name##_class_intern_init, \
280 (GInstanceInitFunc) backend_name##_init \
299 #define EV_BACKEND_REGISTER(BackendName, backend_name) \ argument
[all …]
/dports/graphics/atril/atril-1.26.0/libdocument/
H A Dev-document.h254 backend_name##_get_type (void) \
259 static void backend_name##_init (BackendName *self); \
260 static void backend_name##_class_init (BackendName##Class *klass); \
261 static gpointer backend_name##_parent_class = NULL; \
262 static void backend_name##_class_intern_init (gpointer klass) \
264 backend_name##_parent_class = g_type_class_peek_parent (klass); \
265 backend_name##_class_init ((BackendName##Class *) klass); \
275 (GClassInitFunc) backend_name##_class_intern_init, \
280 (GInstanceInitFunc) backend_name##_init \
299 #define EV_BACKEND_REGISTER(BackendName, backend_name) \ argument
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/identity/opendj/
H A Dopendj_backendprop.py100 def get_property(self, opendj_bindir, hostname, port, username, password_method, backend_name): argument
107 '--backend-name', backend_name,
116 …def set_property(self, opendj_bindir, hostname, port, username, password_method, backend_name, nam… argument
123 '--backend-name', backend_name,
168 backend_name = module.params['backend']
184 backend_name=backend_name)
195 backend_name=backend_name,
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/
H A Dopendj_backendprop.py100 def get_property(self, opendj_bindir, hostname, port, username, password_method, backend_name): argument
107 '--backend-name', backend_name,
116 …def set_property(self, opendj_bindir, hostname, port, username, password_method, backend_name, nam… argument
123 '--backend-name', backend_name,
168 backend_name = module.params['backend']
184 backend_name=backend_name)
195 backend_name=backend_name,
/dports/databases/xapian-core12/xapian-core-1.2.25/tests/harness/
H A Dtestrunner.cc148 TestRunner::use_backend(const string & backend_name) in use_backend() argument
152 if (backend_name == user_backend) in use_backend()
154 if (startswith(backend_name, user_backend + "_")) in use_backend()
160 TestRunner::set_properties_for_backend(const string & backend_name) in set_properties_for_backend() argument
164 if (backend_name == i->name) { in set_properties_for_backend()
170 throw Xapian::InvalidArgumentError("Unknown backend " + backend_name); in set_properties_for_backend()
177 string backend_name = manager->get_dbtype(); in do_tests_for_backend() local
178 if (use_backend(backend_name)) { in do_tests_for_backend()
181 set_properties_for_backend(backend_name); in do_tests_for_backend()
/dports/databases/qof/qof-0.8.8/qof/
H A Dqofobject.c326 const gchar * backend_name, gpointer be_data) in qof_object_register_backend() argument
332 !backend_name || *backend_name == '\0' || !be_data) in qof_object_register_backend()
335 ht = g_hash_table_lookup (backend_data, backend_name); in qof_object_register_backend()
341 g_hash_table_insert (backend_data, (gchar *) backend_name, ht); in qof_object_register_backend()
352 const gchar * backend_name) in qof_object_lookup_backend() argument
357 !backend_name || *backend_name == '\0') in qof_object_lookup_backend()
360 ht = g_hash_table_lookup (backend_data, (gchar *) backend_name); in qof_object_lookup_backend()
386 qof_object_foreach_backend (const gchar * backend_name, in qof_object_foreach_backend() argument
392 if (!backend_name || *backend_name == '\0' || !cb) in qof_object_foreach_backend()
395 ht = g_hash_table_lookup (backend_data, (gchar *) backend_name); in qof_object_foreach_backend()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/identity/opendj/
H A Dopendj_backendprop.py96 def get_property(self, opendj_bindir, hostname, port, username, password_method, backend_name): argument
103 '--backend-name', backend_name,
112 …def set_property(self, opendj_bindir, hostname, port, username, password_method, backend_name, nam… argument
119 '--backend-name', backend_name,
164 backend_name = module.params['backend']
180 backend_name=backend_name)
191 backend_name=backend_name,
/dports/print/xreader/xreader-3.2.2/libdocument/
H A Dev-document.h253 backend_name##_get_type (void) \
258 static void backend_name##_init (BackendName *self); \
259 static void backend_name##_class_init (BackendName##Class *klass); \
260 static gpointer backend_name##_parent_class = NULL; \
261 static void backend_name##_class_intern_init (gpointer klass) \
263 backend_name##_parent_class = g_type_class_peek_parent (klass); \
264 backend_name##_class_init ((BackendName##Class *) klass); \
274 (GClassInitFunc) backend_name##_class_intern_init, \
279 (GInstanceInitFunc) backend_name##_init \
302 #define EV_BACKEND_REGISTER(BackendName, backend_name) \ argument
[all …]
/dports/www/py-weboob/weboob-2.0/weboob/tools/application/
H A Dconsole.py106 def login_cb(self, backend_name, value): argument
107 return self.ask('[%s] %s' % (backend_name,
238 backend_name = None
240 if unique_backend and not backend_name:
242 backend_name = backends[0][0]
245 if backend_name is not None and backend_name not in dict(backends):
249 if backend_name in key:
258 raise BackendNotFound(backend_name)
259 return _id, backend_name
377 backend_name = backend_name.rstrip('0123456789')
[all …]
/dports/x11-toolkits/libunique3/libunique-3.0.2/unique/
H A Duniquebackend.c316 const gchar *backend_name; in unique_backend_create() local
319 backend_name = g_getenv ("UNIQUE_BACKEND"); in unique_backend_create()
320 if (!backend_name) in unique_backend_create()
321 backend_name = UNIQUE_DEFAULT_BACKEND_S; in unique_backend_create()
323 if (backend_name && backend_name[0] != '\0') in unique_backend_create()
326 if (strcmp (backend_name, "bacon") == 0) in unique_backend_create()
330 if (strcmp (backend_name, "dbus") == 0) in unique_backend_create()
334 if (strcmp (backend_name, "gdbus") == 0) in unique_backend_create()

12345678910>>...31