Home
last modified time | relevance | path

Searched refs:b_content (Results 1 – 25 of 26) sorted by relevance

12

/dports/sysutils/ansible2/ansible-2.9.27/test/integration/targets/ansible-galaxy-collection/files/
H A Dbuild_bad_tar.py47 def add_file(tar_file, filename, b_content, update_files=True): argument
49 tar_info.size = len(b_content)
51 tar_file.addfile(tarinfo=tar_info, fileobj=io.BytesIO(b_content))
55 sha256.update(b_content)
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/integration/targets/ansible-galaxy-collection/files/
H A Dbuild_bad_tar.py47 def add_file(tar_file, filename, b_content, update_files=True):
49 tar_info.size = len(b_content)
51 tar_file.addfile(tarinfo=tar_info, fileobj=io.BytesIO(b_content))
55 sha256.update(b_content)
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/integration/targets/ansible-galaxy-collection/files/
H A Dbuild_bad_tar.py47 def add_file(tar_file, filename, b_content, update_files=True): argument
49 tar_info.size = len(b_content)
51 tar_file.addfile(tarinfo=tar_info, fileobj=io.BytesIO(b_content))
55 sha256.update(b_content)
/dports/textproc/kiss-templates/kiss-templates-0.19/tests/
H A Ddiffer.py21 b_content = normalize(b.read()) variable
22 if a_content == b_content:
25 diff = difflib.ndiff(a_content.splitlines(), b_content.splitlines(),
/dports/mail/p5-Email-MIME-RFC2047/Email-MIME-RFC2047-0.97/lib/Email/MIME/RFC2047/
H A DDecoder.pm133 $encoding, $b_content, $q_content,
149 if (defined($b_content)) {
151 $content = MIME::Base64::decode_base64($b_content);
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/callback/
H A Dmail.py110 b_content = b'From: %s\n' % b_sender
111 b_content += b'To: %s\n' % b_to
113 b_content += b'Cc: %s\n' % b_cc
114 b_content += b'Subject: %s\n\n' % b_subject
115 b_content += b_body
124 smtp.sendmail(b_sender, b_address, b_content)
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/plugins/callback/
H A Dmail.py117 b_content = b'From: %s\n' % b_sender
118 b_content += b'To: %s\n' % b_to
120 b_content += b'Cc: %s\n' % b_cc
121 b_content += b'Subject: %s\n\n' % b_subject
122 b_content += b_body
131 smtp.sendmail(b_sender, b_address, b_content)
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/plugins/lookup/
H A Dpassword.py173 b_content = f.read().rstrip()
174 content = to_text(b_content, errors='surrogate_or_strict')
262 b_content = to_bytes(content, errors='surrogate_or_strict') + b'\n'
263 f.write(b_content)
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/plugins/lookup/
H A Dpassword.py175 b_content = f.read().rstrip()
176 content = to_text(b_content, errors='surrogate_or_strict')
264 b_content = to_bytes(content, errors='surrogate_or_strict') + b'\n'
265 f.write(b_content)
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/plugins/lookup/
H A Dpassword.py183 b_content = f.read().rstrip()
184 content = to_text(b_content, errors='surrogate_or_strict')
272 b_content = to_bytes(content, errors='surrogate_or_strict') + b'\n'
273 f.write(b_content)
/dports/databases/evolution-data-server/evolution-data-server-3.42.1/src/calendar/libecal/
H A De-cal-system-timezone.c403 gchar *b_content = NULL; in files_are_identical_content() local
411 &b_content, &b_content_len, NULL)) in files_are_identical_content()
415 g_free (b_content); in files_are_identical_content()
419 cmp = memcmp (a_content, b_content, a_content_len); in files_are_identical_content()
420 g_free (b_content); in files_are_identical_content()
/dports/sysutils/cinnamon-settings-daemon/cinnamon-settings-daemon-4.8.5/plugins/datetime/
H A Dsystem-timezone.c635 char *b_content = NULL; in files_are_identical_content() local
643 &b_content, &b_content_len, NULL)) in files_are_identical_content()
647 g_free (b_content); in files_are_identical_content()
651 cmp = memcmp (a_content, b_content, a_content_len); in files_are_identical_content()
652 g_free (b_content); in files_are_identical_content()
/dports/sysutils/mate-settings-daemon/mate-settings-daemon-1.26.0/plugins/datetime/
H A Dsystem-timezone.c738 char *b_content = NULL; in files_are_identical_content() local
746 &b_content, &b_content_len, NULL)) in files_are_identical_content()
750 g_free (b_content); in files_are_identical_content()
754 cmp = memcmp (a_content, b_content, a_content_len); in files_are_identical_content()
755 g_free (b_content); in files_are_identical_content()
/dports/x11/mate-panel/mate-panel-1.26.1/applets/clock/
H A Dsystem-timezone.c752 char *b_content = NULL; in files_are_identical_content() local
760 &b_content, &b_content_len, NULL)) in files_are_identical_content()
764 g_free (b_content); in files_are_identical_content()
768 cmp = memcmp (a_content, b_content, a_content_len); in files_are_identical_content()
769 g_free (b_content); in files_are_identical_content()
/dports/devel/libgit2/libgit2-1.3.0/tests/diff/
H A Dblob.c636 const char *b_content = "Hello from the root\n\nSome additional lines\n\nDown here below\n\n"; in test_diff_blob__can_compare_blob_to_buffer() local
643 quick_diff_blob_to_str(a, NULL, b_content, 0, NULL); in test_diff_blob__can_compare_blob_to_buffer()
677 const char *b_content = "Hello from the root\n\nSome additional lines\n\nDown here below\n\n"; in test_diff_blob__can_compare_blob_to_buffer_with_patch() local
686 &p, a, NULL, b_content, strlen(b_content), NULL, &opts)); in test_diff_blob__can_compare_blob_to_buffer_with_patch()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/cloud/pubnub/
H A Dpubnub_blocks.py533 b_content = opened_file.read()
535 content = to_text(b_content, errors='surrogate_or_strict')
/dports/x11-wm/chamfer/chamferwm-d0916ee/shaders/
H A Dframe.hlsl166 float2 b_content = screen*(0.5f*xy1+0.5f); //bottom-right corner in pixels, content area
167 if(any(posh.xy < a_content) || any(posh.xy > b_content)){ //title region
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/ansible/netcommon/plugins/connection/
H A Dlibssh.py315 b_content = fp.read()
317 b_content, errors="surrogate_or_strict"
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/cloud/pubnub/
H A Dpubnub_blocks.py538 b_content = opened_file.read()
540 content = to_text(b_content, errors='surrogate_or_strict')
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/modules/
H A Dpubnub_blocks.py538 b_content = opened_file.read()
540 content = to_text(b_content, errors='surrogate_or_strict')
/dports/math/py-matplotlib2/matplotlib-2.2.4/tools/
H A Dtriage_tests.py278 b_content = fd.read()
279 return a_content == b_content
/dports/math/singular/Singular-Release-4-2-1/factory/
H A DFLINTconvert.cc953 static CanonicalForm b_content ( const CanonicalForm & f ) in b_content() function
962 result=bgcd( b_content(i.coeff()) , result ); in b_content()
997 RES*=bgcd(b_content(F),b_content(G)); in gcdFlintMP_QQ()
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/module_utils/
H A Durls.py1500 headers, sep, b_content = b_data.partition(b'\r\n\r\n')
1511 b_content
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/module_utils/
H A Durls.py1642 headers, sep, b_content = b_data.partition(b'\r\n\r\n')
1653 b_content
/dports/www/privoxy/privoxy-3.0.33-stable/
H A Ddefault.filter666 .content, .b_content, \#sw_foot, \#bf, \#sw_content, \#sidebar, \#pag\n\
679 \#content, \#b_content {padding: 0px 0px 0px 0px}\n\

12