- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 730 for inject (0.09 sec)
-
istioctl/pkg/writer/envoy/configdump/route.go
stripFull := strings.TrimSuffix(h, ".svc.cluster.local") if unique.Contains(stripFull) && stripFull != h { shouldDelete.Insert(h) } stripPartial := strings.TrimSuffix(h, ".svc") if unique.Contains(stripPartial) && stripPartial != h { shouldDelete.Insert(h) } } // Filter from original list to keep original order ret := make([]string, 0, len(domains)) for _, h := range domains {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 08 20:44:50 UTC 2024 - 7.2K bytes - Viewed (0) -
dbflute_fess/dfprop/sequenceMap.dfprop
# /--------------------------------------------------------------------------- # sequenceMap: (NotRequired - Default map:{}) # # The relation mappings between sequence and table. # If you don't specify the mappings, you cannot insert a record of the table by sequence. # The table names are treated as case insensitive. # # Example: # map:{ # ; PURCHASE = SEQ_PURCHASE # ; MEMBER = SEQ_MEMBER # ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 717 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsBoostDocumentRuleBhv.java
// ====== public void insert(BoostDocumentRule entity) { doInsert(entity, null); } public void insert(BoostDocumentRule entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsert(entity, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsRelatedContentBhv.java
// ====== public void insert(RelatedContent entity) { doInsert(entity, null); } public void insert(RelatedContent entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsert(entity, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
internal/event/target/mysql.go
ROW_FORMAT = Dynamic;` mysqlUpdateRow = `INSERT INTO %s (key_name, value) VALUES (?, ?) ON DUPLICATE KEY UPDATE value=VALUES(value);` mysqlDeleteRow = `DELETE FROM %s WHERE key_hash = SHA2(?, 256);` mysqlInsertRow = `INSERT INTO %s (event_time, event_data) VALUES (?, ?);` ) // MySQL related constants const ( MySQLFormat = "format"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.ingest; import org.codelibs.fess.unit.UnitFessTestCase; public class IngestFactoryTest extends UnitFessTestCase { public void test_add_1() { IngestFactory factory = new IngestFactory();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
* */ public interface UrlQueueService<QUEUE extends UrlQueue<?>> { void updateSessionId(String oldSessionId, String newSessionId); void add(String sessionId, String url); void insert(QUEUE urlQueue); void delete(String sessionId); void deleteAll(); void offerAll(String sessionId, List<QUEUE> newUrlQueueList); QUEUE poll(String sessionId);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java
// ====== public void insert(WebAuthentication entity) { doInsert(entity, null); } public void insert(WebAuthentication entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsert(entity, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} protected void setAttributeValue(final List<SearchResult> result, final String name, final Consumer<Object> consumer) { final List<Object> attrList = getAttributeValueList(result, name); if (!attrList.isEmpty()) { consumer.accept(attrList.get(0)); } } protected List<Object> getAttributeValueList(final List<SearchResult> result, final String name) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
bin/diff_yaml.py
print("##", "*" * 25) for k in sorted(common): if q0[k] != q1[k]: print("## ", k) s0 = yaml.safe_dump(q0[k], default_flow_style=False, indent=2) s1 = yaml.safe_dump(q1[k], default_flow_style=False, indent=2) print(datadiff.diff(s0, s1, fromfile=args.orig, tofile=args.new)) return changed + len(added) + len(removed) def main(args):
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Mar 03 16:14:57 UTC 2021 - 4.5K bytes - Viewed (0)