Home
last modified time | relevance | path

Searched full:change (Results 1 – 25 of 15679) sorted by relevance

12345678910>>...628

/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_pkcs7.data165 PKCS7 Parse Failure Invalid ASN1: Change tag 30 to 02 #22.0
169 PKCS7 Parse Failure Invalid ASN1: Change length from 1280 to 1281 #23.0
173 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
177 PKCS7 Parse Failure Invalid ASN1: Change tag 06 to 02 #25.0
181 PKCS7 Parse Failure Invalid ASN1: Change length from 9 to 10 #26.0
185 PKCS7 Parse Failure Invalid ASN1: Change length from 9 to 8 #27.0
189 PKCS7 Parse Failure Invalid ASN1: Change tag a0 to 02 #28.0
193 PKCS7 Parse Failure Invalid ASN1: Change length from 1265 to 1266 #29.0
197 PKCS7 Parse Failure Invalid ASN1: Change contents of tag a0 to contain one unaccounted extra byte #…
201 PKCS7 Parse Failure Invalid ASN1: Change length from 1265 to 1264 #31.0
[all …]
/external/mbedtls/tests/suites/
Dtest_suite_pkcs7.data165 PKCS7 Parse Failure Invalid ASN1: Change tag 30 to 02 #22.0
169 PKCS7 Parse Failure Invalid ASN1: Change length from 1280 to 1281 #23.0
173 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
177 PKCS7 Parse Failure Invalid ASN1: Change tag 06 to 02 #25.0
181 PKCS7 Parse Failure Invalid ASN1: Change length from 9 to 10 #26.0
185 PKCS7 Parse Failure Invalid ASN1: Change length from 9 to 8 #27.0
189 PKCS7 Parse Failure Invalid ASN1: Change tag a0 to 02 #28.0
193 PKCS7 Parse Failure Invalid ASN1: Change length from 1265 to 1266 #29.0
197 PKCS7 Parse Failure Invalid ASN1: Change contents of tag a0 to contain one unaccounted extra byte #…
201 PKCS7 Parse Failure Invalid ASN1: Change length from 1265 to 1264 #31.0
[all …]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
DMockContext.java52 … return null; //To change body of implemented methods use File | Settings | File Templates. in getAssets()
60 … return null; //To change body of implemented methods use File | Settings | File Templates. in getPackageManager()
65 … return null; //To change body of implemented methods use File | Settings | File Templates. in getContentResolver()
70 … return null; //To change body of implemented methods use File | Settings | File Templates. in getMainLooper()
75 … return null; //To change body of implemented methods use File | Settings | File Templates. in getApplicationContext()
80 //To change body of implemented methods use File | Settings | File Templates. in setTheme()
85 … return null; //To change body of implemented methods use File | Settings | File Templates. in getTheme()
90 … return null; //To change body of implemented methods use File | Settings | File Templates. in getClassLoader()
95 … return null; //To change body of implemented methods use File | Settings | File Templates. in getPackageName()
100 … return null; //To change body of implemented methods use File | Settings | File Templates. in getApplicationInfo()
[all …]
/external/ltp/runtest/
Dnet_stress.route2 route4-change-dst route-change-dst.sh
3 route4-change-gw route-change-gw.sh
4 route4-change-if route-change-if.sh
5 route4-change-netlink-dst route-change-netlink-dst.sh
6 route4-change-netlink-gw route-change-netlink-gw.sh
7 route4-change-netlink-if route-change-netlink-if.sh
10 route6-change-dst route-change-dst.sh -6
11 route6-change-gw route-change-gw.sh -6
12 route6-change-if route-change-if.sh -6
13 route6-change-netlink-dst route-change-netlink-dst.sh -6
[all …]
/external/python/mako/doc/build/
Dchangelog.rst13 .. change::
14 :tags: change, installation
27 .. change::
41 .. change::
59 .. change::
78 .. change::
86 .. change::
97 .. change::
104 .. change::
110 .. change::
[all …]
/external/autotest/utils/frozen_chromite/lib/
Dgob_util.py106 br'change is closed',
107 br'Cannot reduce vote on labels for closed change',
113 GOB_ERROR_REASON_CLOSED_CHANGE = 'CLOSED CHANGE'
391 first_param: A change identifier
419 "MultiQueryChanges requires a list of change numbers/id's")
444 """Given a gerrit host name and change number, return change page url."""
448 def _GetChangePath(change): argument
449 """Given a change id, return a path prefix for the change."""
450 return 'changes/%s' % str(change).replace('/', '%2F')
453 def GetChangeUrl(host, change): argument
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/
DChangeSet.java37 private final Set<Change> changes = new LinkedHashSet<>();
46 addDeletion(new Change(filename, Change.TYPE_DELETE)); in delete()
56 addDeletion(new Change(dirName, Change.TYPE_DELETE_DIR)); in deleteDir()
73 * If replace is set to true, this change will replace all other additions
81 * indicates the this change should replace existing entries
84 addAddition(new Change(pEntry, pInput, replace)); in add()
88 * Adds an addition change.
91 * the change which should result in an addition
93 private void addAddition(final Change pChange) { in addAddition()
94 if (Change.TYPE_ADD != pChange.type() || in addAddition()
[all …]
DChangeSetPerformer.java45 private final Set<Change> changes;
116 final Set<Change> workingSet = new LinkedHashSet<>(changes); in perform()
118 for (final Iterator<Change> it = workingSet.iterator(); it.hasNext();) { in perform()
119 final Change change = it.next(); in perform() local
121 if (change.type() == Change.TYPE_ADD && change.isReplaceMode()) { in perform()
122 copyStream(change.getInput(), out, change.getEntry()); in perform()
124 results.addedFromChangeSet(change.getEntry().getName()); in perform()
132 for (final Iterator<Change> it = workingSet.iterator(); it.hasNext();) { in perform()
133 final Change change = it.next(); in perform() local
135 final int type = change.type(); in perform()
[all …]
/external/google-cloud-java/java-dns/src/test/java/com/google/cloud/dns/
DChangeRequestInfoTest.java26 import com.google.api.services.dns.model.Change;
47 private static final ChangeRequestInfo CHANGE = field in ChangeRequestInfoTest
68 assertEquals(GENERATED_ID, CHANGE.getGeneratedId()); in testBuilder()
69 assertEquals(STATUS, CHANGE.status()); in testBuilder()
70 assertEquals(START_TIME_MILLIS, CHANGE.getStartTimeMillis()); in testBuilder()
71 assertEquals(ADDITIONS, CHANGE.getAdditions()); in testBuilder()
72 assertEquals(DELETIONS, CHANGE.getDeletions()); in testBuilder()
74 ChangeRequestInfo another = CHANGE.toBuilder().setAdditions(recordList).build(); in testBuilder()
76 assertEquals(CHANGE.getDeletions(), another.getDeletions()); in testBuilder()
77 another = CHANGE.toBuilder().setDeletions(recordList).build(); in testBuilder()
[all …]
/external/googleapis/google/cloud/commerce/consumer/procurement/v1/
Dorder.proto35 // Type of a line item change.
40 // The change is to create a new line item.
43 // The change is to update an existing line item.
46 // The change is to cancel an existing line item.
49 // The change is to revert a cancellation.
53 // State of a change.
58 // Change is in this state when a change is initiated and waiting for
62 // Change is in this state after it's approved by the partner or auto-approved
63 // but before it takes effect. The change can be overwritten
65 // Offer change cannot be cancelled and can only be overwritten by another
[all …]
/external/googleapis/google/cloud/commerce/consumer/procurement/v1alpha1/
Dorder.proto32 // Type of a line item change.
37 // The change is to create a new line item.
40 // The change is to update an existing line item.
43 // The change is to cancel an existing line item.
46 // The change is to revert a cancellation.
50 // State of a change.
55 // Change is in this state when a change is initiated and waiting for
59 // Change is in this state after it's approved by the partner or auto-approved
60 // but before it takes effect. The change can be overwritten
62 // Offer change cannot be cancelled and can only be overwritten by another
[all …]
/external/google-cloud-java/java-cloudcommerceconsumerprocurement/proto-google-cloud-cloudcommerceconsumerprocurement-v1alpha1/src/main/proto/google/cloud/commerce/consumer/procurement/v1alpha1/
Dorder.proto41 // they create an order and can change their plan later, if the product allows.
82 // Output only. A change made on the item which is pending and not yet
84 // a change.
93 // A change made on a line item.
95 // Output only. Change ID.
99 // Required. Type of the change to make.
102 // Output only. Line item info before the change.
105 // Line item info after the change.
108 // Output only. State of the change.
113 // case of `PENDING_APPROVAL`, and to explain why the change request was
[all …]
/external/googleapis/google/ads/googleads/v16/enums/
Dchange_event_resource_type.proto42 // An Ad resource change.
45 // An AdGroup resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignBudget resource change.
57 // An AdGroupBidModifier resource change.
60 // A CampaignCriterion resource change.
63 // A Feed resource change.
66 // A FeedItem resource change.
69 // A CampaignFeed resource change.
[all …]
Dchange_status_resource_type.proto42 // An AdGroup resource change.
45 // An AdGroupAd resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignCriterion resource change.
57 // A Feed resource change.
60 // A FeedItem resource change.
63 // An AdGroupFeed resource change.
66 // A CampaignFeed resource change.
69 // An AdGroupBidModifier resource change.
[all …]
/external/googleapis/google/ads/googleads/v15/enums/
Dchange_event_resource_type.proto42 // An Ad resource change.
45 // An AdGroup resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignBudget resource change.
57 // An AdGroupBidModifier resource change.
60 // A CampaignCriterion resource change.
63 // A Feed resource change.
66 // A FeedItem resource change.
69 // A CampaignFeed resource change.
[all …]
Dchange_status_resource_type.proto42 // An AdGroup resource change.
45 // An AdGroupAd resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignCriterion resource change.
57 // A Feed resource change.
60 // A FeedItem resource change.
63 // An AdGroupFeed resource change.
66 // A CampaignFeed resource change.
69 // An AdGroupBidModifier resource change.
[all …]
/external/googleapis/google/ads/googleads/v14/enums/
Dchange_event_resource_type.proto42 // An Ad resource change.
45 // An AdGroup resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignBudget resource change.
57 // An AdGroupBidModifier resource change.
60 // A CampaignCriterion resource change.
63 // A Feed resource change.
66 // A FeedItem resource change.
69 // A CampaignFeed resource change.
[all …]
Dchange_status_resource_type.proto42 // An AdGroup resource change.
45 // An AdGroupAd resource change.
48 // An AdGroupCriterion resource change.
51 // A Campaign resource change.
54 // A CampaignCriterion resource change.
57 // A Feed resource change.
60 // A FeedItem resource change.
63 // An AdGroupFeed resource change.
66 // A CampaignFeed resource change.
69 // An AdGroupBidModifier resource change.
[all …]
/external/antlr/runtime/C/
DChangeLog1 The following changes (change numbers refer to perforce) were
7 Change 5641 on 2009/02/20 by jimi@jimi.jimi.antlr3
13 Change 5639 on 2009/02/20 by jimi@jimi.jimi.antlr3
19 Change 5577 on 2009/02/12 by jimi@jimi.jimi.antlr3
34 Change 5576 on 2009/02/11 by jimi@jimi.jimi.antlr3
40 Change 5575 on 2009/02/08 by jimi@jimi.jimi.antlr3
52 This change implements the first of two C runtime changes that make
70 This single change alone reduces memory usage in the test case (20,604
104 Change 5563 on 2009/01/28 by jimi@jimi.jimi.antlr3
109 Change 5562 on 2009/01/28 by jimi@jimi.jimi.antlr3
[all …]
/external/cronet/tot/third_party/boringssl/src/
DBREAKING-CHANGES.md1 # How to change BoringSSL's API
5 Ultimately, the strategy for each breaking change is decided on a case-by-case basis. This document…
9change, etc. But this is a poor approximation of the true impact. Removing an API may not a breaki…
11 Thus, we do not think about whether a change is formally a breaking change, but about the *risk* of…
15 … commit message, prefixed by `Update-Note: `. This can include what this change may break and inst…
19 …in various Code Search instances. This can predict the impact of a risky change and identify code …
21 ## Evaluate a change's cost
23 If some change has high cost (from having to fix consumers) and relatively little benefit to Boring…
25 Conversely, a change that leads to a major improvement to all BoringSSL consumers, at the cost of f…
29change. While unexpected breakage is always possible, we generally consider it the responsibility …
[all …]
/external/cronet/stable/third_party/boringssl/src/
DBREAKING-CHANGES.md1 # How to change BoringSSL's API
5 Ultimately, the strategy for each breaking change is decided on a case-by-case basis. This document…
9change, etc. But this is a poor approximation of the true impact. Removing an API may not a breaki…
11 Thus, we do not think about whether a change is formally a breaking change, but about the *risk* of…
15 … commit message, prefixed by `Update-Note: `. This can include what this change may break and inst…
19 …in various Code Search instances. This can predict the impact of a risky change and identify code …
21 ## Evaluate a change's cost
23 If some change has high cost (from having to fix consumers) and relatively little benefit to Boring…
25 Conversely, a change that leads to a major improvement to all BoringSSL consumers, at the cost of f…
29change. While unexpected breakage is always possible, we generally consider it the responsibility …
[all …]
/external/boringssl/src/
DBREAKING-CHANGES.md1 # How to change BoringSSL's API
5 Ultimately, the strategy for each breaking change is decided on a case-by-case basis. This document…
9change, etc. But this is a poor approximation of the true impact. Removing an API may not a breaki…
11 Thus, we do not think about whether a change is formally a breaking change, but about the *risk* of…
15 … commit message, prefixed by `Update-Note: `. This can include what this change may break and inst…
19 …in various Code Search instances. This can predict the impact of a risky change and identify code …
21 ## Evaluate a change's cost
23 If some change has high cost (from having to fix consumers) and relatively little benefit to Boring…
25 Conversely, a change that leads to a major improvement to all BoringSSL consumers, at the cost of f…
29change. While unexpected breakage is always possible, we generally consider it the responsibility …
[all …]
/external/zlib/contrib/minizip/
DChangeLogUnzip1 Change in 1.01e (12 feb 05)
5 Change in 1.01b (20 may 04)
9 Change in 1.01 (8 may 04)
13 Change in 1.00: (10 sept 03)
15 - cosmetic code change
17 Change in 0.22: (19 May 03)
21 Change in 0.21: (10 Mar 03)
24 Change in 0.17: (27 Jan 02)
27 Change in 0.16: (19 Jan 02)
30 Change in 0.15: (19 Mar 98)
[all …]
/external/ltp/testcases/network/stress/route/
D00_Descriptions.txt1 route{4,6}-change-dst
2 Change IPv4/IPv6 route destination by ip command
4 route{4,6}-change-gw
5 Change IPv4/IPv6 route gateway by ip command
7 route{4,6}-change-if
8 Change IPv4/IPv6 route interface by ip command
10 route{4,6}-change-netlink-dst
11 Change IPv4/IPv6 route destination by Netlink API via libmnl
13 route{4,6}-change-netlink-gw
14 Change IPv4/IPv6 route gateway by Netlink API via libmnl
[all …]
/external/cronet/stable/third_party/icu/source/common/unicode/
Dedits.h29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
30 * instances of this class using {@link #addReplace(int32_t, int32_t)} (for change edits) and
31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul…
32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-…
41 * <li>{@link #getFineIterator()} retains full granularity of change edits.
42 * <li>{@link #getFineChangesIterator()} retains full granularity of change edits, and when calling
43 * next() on the iterator, skips over no-change edits (unchanged regions).
44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
46 * <li>{@link #getCoarseChangesIterator()} treats adjacent change edits as a single edit, and when
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
[all …]

12345678910>>...628