Home
last modified time | relevance | path

Searched refs:host_config (Results 1 – 25 of 138) sorted by relevance

123456

/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoCommon/
H A DGeometryShaderGen.cpp50 const bool wireframe = host_config.wireframe; in GenerateGeometryShaderCode()
51 const bool msaa = host_config.msaa; in GenerateGeometryShaderCode()
52 const bool ssaa = host_config.ssaa; in GenerateGeometryShaderCode()
53 const bool stereo = host_config.stereo; in GenerateGeometryShaderCode()
65 if (host_config.backend_gs_instancing) in GenerateGeometryShaderCode()
99 if (host_config.backend_gs_instancing) in GenerateGeometryShaderCode()
128 if (host_config.backend_gs_instancing) in GenerateGeometryShaderCode()
198 if (host_config.backend_gs_instancing) in GenerateGeometryShaderCode()
214 if (host_config.backend_depth_clamp && in GenerateGeometryShaderCode()
307 if (stereo && !host_config.backend_gs_instancing) in GenerateGeometryShaderCode()
[all …]
H A DUberShaderVertex.cpp31 const bool msaa = host_config.msaa; in GenVertexShader()
32 const bool ssaa = host_config.ssaa; in GenVertexShader()
68 if (host_config.backend_geometry_shaders) in GenVertexShader()
88 if (!host_config.fast_depth_calc) in GenVertexShader()
199 if (!host_config.fast_depth_calc) in GenVertexShader()
218 if (host_config.backend_depth_clamp) in GenVertexShader()
227 if (host_config.backend_geometry_shaders) in GenVertexShader()
248 if (!host_config.backend_clip_control) in GenVertexShader()
290 if (host_config.backend_geometry_shaders) in GenVertexShader()
300 if (!host_config.fast_depth_calc) in GenVertexShader()
[all …]
H A DUberShaderPixel.cpp54 const bool msaa = host_config.msaa; in GenPixelShader()
55 const bool ssaa = host_config.ssaa; in GenPixelShader()
56 const bool stereo = host_config.stereo; in GenPixelShader()
61 const bool bounding_box = host_config.bounding_box; in GenPixelShader()
111 if (host_config.backend_geometry_shaders) in GenPixelShader()
135 if (!host_config.fast_depth_calc) in GenPixelShader()
224 if (host_config.backend_dynamic_sampler_indexing) in GenPixelShader()
726 if (!host_config.fast_depth_calc) in GenPixelShader()
1064 if (host_config.fast_depth_calc) in GenPixelShader()
1066 if (!host_config.backend_reversed_depth_range) in GenPixelShader()
[all …]
H A DShaderGenCommon.cpp82 ShaderHostConfig host_config = ShaderHostConfig::GetCurrent(); in GetDiskShaderCacheFileName() local
83 filename += fmt::format("-{:06X}", host_config.bits); in GetDiskShaderCacheFileName()
111 const ShaderHostConfig& host_config, std::string_view qualifier) in GenerateVSOutputMembers() argument
120 if (!host_config.fast_depth_calc) in GenerateVSOutputMembers()
123 if (host_config.per_pixel_lighting) in GenerateVSOutputMembers()
131 if (host_config.backend_geometry_shaders) in GenerateVSOutputMembers()
139 const ShaderHostConfig& host_config) in AssignVSOutputMembers() argument
148 if (!host_config.fast_depth_calc) in AssignVSOutputMembers()
151 if (host_config.per_pixel_lighting) in AssignVSOutputMembers()
157 if (host_config.backend_geometry_shaders) in AssignVSOutputMembers()
H A DVertexShaderGen.cpp82 const bool msaa = host_config.msaa; in GenerateVertexShaderCode()
83 const bool ssaa = host_config.ssaa; in GenerateVertexShaderCode()
128 if (host_config.backend_geometry_shaders) in GenerateVertexShaderCode()
148 if (!host_config.fast_depth_calc) in GenerateVertexShaderCode()
402 if (!host_config.fast_depth_calc) in GenerateVertexShaderCode()
420 if (host_config.backend_depth_clamp) in GenerateVertexShaderCode()
429 if (host_config.backend_geometry_shaders) in GenerateVertexShaderCode()
450 if (!host_config.backend_clip_control) in GenerateVertexShaderCode()
495 if (host_config.backend_geometry_shaders) in GenerateVertexShaderCode()
505 if (!host_config.fast_depth_calc) in GenerateVertexShaderCode()
[all …]
/dports/security/suricata/suricata-6.0.4/src/
H A Dhost.c52 HostConfig host_config; variable
70 SC_ATOMIC_SET(host_config.memcap, size); in HostSetMemcap()
179 memset(&host_config, 0, sizeof(host_config)); in HostInitConfig()
184 SC_ATOMIC_INIT(host_config.memcap); in HostInitConfig()
214 host_config.hash_size = configval; in HostInitConfig()
222 host_config.prealloc = configval; in HostInitConfig()
229 host_config.hash_size, host_config.prealloc); in HostInitConfig()
395 key = hash % host_config.hash_size; in HostGetKey()
398 key = hash % host_config.hash_size; in HostGetKey()
678 uint32_t cnt = host_config.hash_size; in HostGetUsedHost()
[all …]
/dports/net-im/prosody/prosody-0.11.13/core/
H A Dhostmanager.lua53 for host, host_config in pairs(defined_hosts) do
54 if host ~= "*" and host_config.enabled ~= false then
55 if not host_config.component_module then
58 activate(host, host_config);
76 function activate(host, host_config)
78 host_config = host_config or configmanager.getconfig()[host];
79 …if not host_config then return nil, "Couldn't find the host "..tostring(host).." defined in the cu…
91 if not host_config.component_module then -- host
98 if not host_config.disco_hidden and not host:match("[@/]") then
99 disco_items:set(host:match("%.(.*)") or "*", host, host_config.name or true);
[all …]
/dports/science/axom/axom-0.6.1/scripts/llnl_scripts/
H A Dllnl_lc_build_tools.py530 for host_config in host_configs:
531 print(" " + host_config)
539 for host_config in host_configs:
547 ok.append(host_config)
550 bad.append(host_config)
564 for host_config in ok:
569 for host_config in bad:
636 for host_config in host_configs:
637 os.remove(host_config)
657 for host_config in host_configs:
[all …]
/dports/devel/py-docker-py/docker-py-1.7.2/docker/utils/
H A Dutils.py587 host_config = {}
600 host_config['Memory'] = mem_limit
622 host_config['ShmSize'] = shm_size
627 host_config['PidMode'] = pid_mode
630 host_config['IpcMode'] = ipc_mode
664 host_config['CapAdd'] = cap_add
667 host_config['CapDrop'] = cap_drop
679 host_config['Dns'] = dns
726 host_config['Ulimits'] = []
758 return host_config
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/mellanox/onyx/plugins/modules/
H A Donyx_syslog_remote.py204 host_config = self._current_config.get(host)
205 if host_config:
216 host_config = self._current_config.get(host)
218 if host_config:
219 if 'trap_override' in host_config:
273 host_config = current_config.get(host, dict())
281 if required_config['port'] != host_config.get('port', None) or not host_config:
292 if is_change or not host_config:
300 host_config = current_config.get(host, dict())
304 current_override_list = host_config.get('trap_override', [])
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/docker/transport/
H A Dsshconn.py95 host_config = conf.lookup(base_url.hostname)
96 self.ssh_conf = host_config
97 if 'proxycommand' in host_config:
101 if 'hostname' in host_config:
102 self.ssh_params['hostname'] = host_config['hostname']
103 if 'identityfile' in host_config:
104 self.ssh_params['key_filename'] = host_config['identityfile']
105 if base_url.port is None and 'port' in host_config:
107 if base_url.username is None and 'user' in host_config:
/dports/sysutils/py-docker/docker-5.0.3/tests/unit/
H A Dapi_container_test.py222 'busybox', 'ls', host_config=self.client.create_host_config(
246 'busybox', 'ls', host_config=self.client.create_host_config(
270 'busybox', 'ls', host_config=self.client.create_host_config(
294 'busybox', 'ls', host_config=self.client.create_host_config(
355 'busybox', 'true', host_config=self.client.create_host_config(
675 host_config=self.client.create_host_config(privileged=True)
775 'busybox', 'true', host_config=client.create_host_config(
873 host_config=self.client.create_host_config(
912 host_config=self.client.create_host_config(
992 host_config=self.client.create_host_config(
[all …]
/dports/sysutils/py-docker/docker-5.0.3/tests/integration/
H A Dapi_container_test.py61 host_config = inspect['HostConfig']
62 assert 'PidMode' in host_config
63 assert host_config['PidMode'] == 'host'
340 host_config = inspect['HostConfig']
342 assert limit in host_config
355 host_config = inspect['HostConfig']
403 TEST_IMG, ['echo', 'test'], host_config=host_config
425 TEST_IMG, ['echo', 'test'], host_config=host_config
542 host_config=host_config
559 host_config=host_config
[all …]
H A Dapi_network_test.py166 host_config=self.client.create_host_config(network_mode=net_name),
186 host_config=self.client.create_host_config(
215 host_config=self.client.create_host_config(network_mode=net_name),
241 host_config=self.client.create_host_config(network_mode=net_name),
268 host_config=self.client.create_host_config(network_mode='bridge')
289 host_config=self.client.create_host_config(network_mode='bridge')
304 host_config=self.client.create_host_config(network_mode=net_name),
321 host_config=self.client.create_host_config(network_mode=net_name),
338 host_config=self.client.create_host_config(network_mode=net_name))
354 host_config=self.client.create_host_config(network_mode=net_name),
[all …]
/dports/sysutils/py-docker/docker-5.0.3/docker/transport/
H A Dsshconn.py204 host_config = conf.lookup(base_url.hostname)
205 if 'proxycommand' in host_config:
209 if 'hostname' in host_config:
210 self.ssh_params['hostname'] = host_config['hostname']
211 if base_url.port is None and 'port' in host_config:
212 self.ssh_params['port'] = host_config['port']
213 if base_url.username is None and 'user' in host_config:
214 self.ssh_params['username'] = host_config['user']
215 if 'identityfile' in host_config:
216 self.ssh_params['key_filename'] = host_config['identityfile']
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/cloud/docker/
H A Ddocker_container.py1417 host_config=self._host_config(),
2064 init=host_config.get('Init'),
2067 cap_drop=host_config.get('CapDrop'),
2069 dns_servers=host_config.get('Dns'),
2076 groups=host_config.get('GroupAdd'),
2077 ipc_mode=host_config.get("IpcMode"),
2086 pid_mode=host_config.get('PidMode'),
2090 runtime=host_config.get('Runtime'),
2094 tmpfs=host_config.get('Tmpfs'),
2098 uts=host_config.get('UTSMode'),
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/host/
H A Dhost_config.cc43 std::string HostConfigToJson(const base::DictionaryValue& host_config) { in HostConfigToJson() argument
45 base::JSONWriter::Write(host_config, &data); in HostConfigToJson()
61 bool HostConfigToJsonFile(const base::DictionaryValue& host_config, in HostConfigToJsonFile() argument
63 std::string serialized = HostConfigToJson(host_config); in HostConfigToJsonFile()
H A Dusage_stats_consent_mac.cc30 std::unique_ptr<base::DictionaryValue> host_config( in GetUsageStatsConsent() local
32 if (host_config) { in GetUsageStatsConsent()
33 return host_config->GetBoolean(kUsageStatsConsentConfigPath, allowed); in GetUsageStatsConsent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/protocol/
H A Dsession_config.cc78 const CandidateSessionConfig* host_config) { in SelectCommon() argument
80 if (client_config->webrtc_supported() && host_config->webrtc_supported()) in SelectCommon()
84 if (!host_config->ice_supported() || !client_config->ice_supported()) in SelectCommon()
91 std::list<ChannelConfig> host_video_configs = host_config->video_configs(); in SelectCommon()
93 !host_config->vp9_experiment_enabled()) { in SelectCommon()
102 !host_config->h264_experiment_enabled()) { in SelectCommon()
108 if (!SelectCommonChannelConfig(host_config->control_configs(), in SelectCommon()
111 !SelectCommonChannelConfig(host_config->event_configs(), in SelectCommon()
117 !SelectCommonChannelConfig(host_config->audio_configs(), in SelectCommon()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/docker/plugins/modules/
H A Ddocker_container.py1646 host_config=self._host_config(),
2314 init=host_config.get('Init'),
2317 cap_drop=host_config.get('CapDrop'),
2320 dns_servers=host_config.get('Dns'),
2327 groups=host_config.get('GroupAdd'),
2328 ipc_mode=host_config.get("IpcMode"),
2341 runtime=host_config.get('Runtime'),
2345 tmpfs=host_config.get('Tmpfs'),
2349 uts=host_config.get('UTSMode'),
2370 cpus=host_config.get('NanoCpus'),
[all …]
/dports/devel/py-docker-py/docker-py-1.7.2/tests/unit/
H A Dcontainer_test.py311 'busybox', 'ls', host_config=self.client.create_host_config(
404 'busybox', 'true', host_config=self.client.create_host_config(
415 'busybox', 'true', host_config=self.client.create_host_config(
426 'busybox', 'true', host_config=self.client.create_host_config(
437 'busybox', 'true', host_config=self.client.create_host_config(
448 'busybox', 'true', host_config=self.client.create_host_config(
472 'busybox', 'true', host_config=self.client.create_host_config(
779 host_config=self.client.create_host_config(privileged=True)
825 host_config=self.client.create_host_config(cap_add=['MKNOD'])
944 host_config=self.client.create_host_config(
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/contrib/inventory/
H A Dvagrant.py97 host_config = config.lookup(box_name)
102 for id in host_config['identityfile']:
104 host_config['identityfile'] = id
106 return dict((v, host_config[k]) for k, v in _ssh_to_ansible)
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/scripts/inventory/
H A Dvagrant.py89 host_config = config.lookup(box_name)
94 for id in host_config['identityfile']:
96 host_config['identityfile'] = id
98 return dict((v, host_config[k]) for k, v in _ssh_to_ansible)
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/host/setup/
H A Ddaemon_controller_delegate_mac.mm27 #include "remoting/host/host_config.h"
237 std::unique_ptr<base::DictionaryValue> host_config(
239 if (!host_config)
244 if (host_config->GetString(kHostIdConfigPath, &value))
246 if (host_config->GetString(kXmppLoginConfigPath, &value))
274 std::unique_ptr<base::DictionaryValue> host_config(
276 if (!host_config) {
281 host_config->MergeDictionary(config.get());
282 ElevateAndSetConfig(*host_config, std::move(done));
299 std::unique_ptr<base::DictionaryValue> host_config(
[all …]
/dports/net-p2p/deluge-cli/deluge-2.0.3/deluge/ui/gtk3/
H A Dgtkui.py363 log.debug('Autostarting localhost: %s', host_config[0:3])
366 for host_config in self.connectionmanager.hostlist.config['hosts']:
367 if host_config[1] in LOCALHOST:
368 d = self.connectionmanager.hostlist.get_host_status(host_config[0])
369 d.addCallback(on_localhost_status, host_config[2])
374 for host_config in self.connectionmanager.hostlist.config['hosts']:
375 host_id, host, port, user, __ = host_config

123456