Searched refs:join (Results 26 - 50 of 85) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DIterDeadlockTest.java215 thread1.join();
216 thread2.join();
H A DJoinTest.java205 // join values with index maps
209 // join keySet with index maps
213 // join entrySet with index maps
223 StoredIterator i = coll.join(indices, VALUES, null);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A Ddtree.js38 join : 'join.gif',
141 } else str += '<img id="j' + this.obj + nodeId + '" src="' + ((node._ls) ? this.icon.joinBottom : this.icon.join ) + '" alt="" />';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dsocket.c109 int avahi_mdns_mcast_join_ipv4(int fd, const AvahiIPv4Address *a, int idx, int join) { argument
134 if (join)
137 if (setsockopt(fd, IPPROTO_IP, join ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0) {
138 avahi_log_warn("%s failed: %s", join ? "IP_ADD_MEMBERSHIP" : "IP_DROP_MEMBERSHIP", strerror(errno));
145 int avahi_mdns_mcast_join_ipv6(int fd, const AvahiIPv6Address *a, int idx, int join) { argument
158 if (join)
161 if (setsockopt(fd, IPPROTO_IPV6, join ? IPV6_ADD_MEMBERSHIP : IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
162 avahi_log_warn("%s failed: %s", join ? "IPV6_ADD_MEMBERSHIP" : "IPV6_DROP_MEMBERSHIP", strerror(errno));
H A Diface.c171 static int interface_mdns_mcast_join(AvahiInterface *i, int join) { argument
176 if (!!join == !!i->mcast_joined)
183 if (join) {
204 join ? "Joining" : "Leaving",
210 r = avahi_mdns_mcast_join_ipv6(i->monitor->server->fd_ipv6, &i->local_mcast_address.data.ipv6, i->hardware->index, join);
214 r = avahi_mdns_mcast_join_ipv4(i->monitor->server->fd_ipv4, &i->local_mcast_address.data.ipv4, i->hardware->index, join);
220 i->mcast_joined = join;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-python/avahi-discover/
H A DSimpleGladeApp.py93 self.glade_path = os.path.join(glade_dir, path)
156 widget_api_name = "_".join( re.findall(tokenize.Name, widget_api_name) )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/txn/
H A DTxnGuide.java56 threadArray[i].join();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Denv.t128 my $ErrMsg = join "|", map { "$prefix$_" }
151 my $ErrMsg = join "'", 'illegal flag specified to (db_open|DB->open)',
H A Ddb-3.3.t237 ok 50, $p_data eq join " ", sort { $a cmp $b } keys %data ;
240 ok 51, $s_data eq join " ", sort { $a <=> $b } map { length } values %data ;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredCollection.java39 * <li>{@link #join}</li>
491 * Returns an iterator representing an equality join of the indices and
509 * @param joinConfig is the join configuration, or null to use the
521 public StoredIterator join(StoredContainer[] indices, Object[] indexKeys, method in class:StoredCollection
529 DataCursor cursor = view.join(indexViews, indexKeys, joinConfig);
H A DDataView.java420 DataCursor join(DataView[] indexViews, Object[] indexKeys, method in class:DataView
452 DataCursor join(DataCursor[] indexCursors, JoinConfig joinConfig) method in class:DataView
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-kde/admin/
H A Dam_edit766 $handling = "$program.all_$suffix.$suffix: \$(srcdir)/Makefile.in" . $source_deps . " " . join(' ', $mocs) . "\n";
793 $lines .= "\t-rm -f " . join(' ', @final_names) . "\n" if (@final_names);
830 $handling .= "$sdeps: " . join(' ', @deps) . "\n" if (@deps);
903 $realObjs{$program} .= "\034" . join ($ext, @newObs) . $ext;
904 $depedmocs{$program} = join (".moc.$cxxsuffix " , @newObs) . ".moc.$cxxsuffix";
911 $depedmocs{$program} .= join('.moc ', @deped) . ".moc";
1447 $pofiles = join(" ", grep(/\.po$/, readdir(THISDIR)));
1826 my $files = join (" ", @cppFiles);
1859 print STDERR "\t",join ("\t", @cppFiles),"\n";
1917 print STDOUT "psources=[".join(' ', key
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DDatabase.java881 Creates a specialized join cursor for use in performing equality or
890 accessed or modified until the newly created join cursor has been
893 methods of the join cursor.
898 @param config The join attributes. If null, default attributes are used.
901 a specialized cursor that returns the results of the equality join
908 public JoinCursor join(final Cursor[] cursors, JoinConfig config) method in class:Database
918 db.join(dbcList, config.getFlags()), config);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dbat.sh131 $ret=join(' ',@a)." ";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dbat.sh131 $ret=join(' ',@a)." ";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/scripts/python/
H A DSambaConfig.py138 return string.upper( string.join(string.split(param), "") )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/man/
H A Dhelp2man178 join '', map { s/ +$//; expand $_ } `$ARGV[0] --$_ 2>/dev/null`
492 my $filter = join '|', @pre, @post;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DEntityJoin.java28 * Performs an equality join on two or more secondary keys.
33 * <p>An equality join is a match on all entities in a given primary index that
35 * not be matched by an equality join, only exact keys are matched.</p>
50 * {@literal EntityJoin<String,Person> join = new EntityJoin(personBySsn);}
51 * join.addCondition(personByParentSsn, "111-11-1111");
52 * join.addCondition(personByEmployerIds, employer.id);
54 * // Perform the join operation by traversing the results with a cursor.
56 * {@literal ForwardCursor<Person> results = join.entities();}
73 * Creates a join object for a given primary index.
75 * @param index the primary index on which the join wil
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/man/
H A Dhelp2man178 join '', map { s/ +$//; expand $_ } `$ARGV[0] --$_ 2>/dev/null`
492 my $filter = join '|', @pre, @post;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/
H A Dsmbldap-passwd308 return join "",@tab[map {rand 64} (1..$length)];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dtexi2html705 unshift(@tables, join($;, $table_type, $in_table));
791 print "# def ($tag): {$type} ", join(', ', @args), "\n"
1195 push(@lines2, "<LI>" . join(", ", @refs) . "\n");
1441 $full_title = "<H1>" . join("</H1>\n<H1>", split(/\n/, $_)) . "</H1>\n";
1569 return(join('.', @appendix_sec_num[0..$level]));
1577 return(join('.', @normal_sec_num[0..$level]));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/doc/
H A Dtexi2html705 unshift(@tables, join($;, $table_type, $in_table));
791 print "# def ($tag): {$type} ", join(', ', @args), "\n"
1195 push(@lines2, "<LI>" . join(", ", @refs) . "\n");
1441 $full_title = "<H1>" . join("</H1>\n<H1>", split(/\n/, $_)) . "</H1>\n";
1569 return(join('.', @appendix_sec_num[0..$level]));
1577 return(join('.', @normal_sec_num[0..$level]));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dcheck-relaxng-test-suite.py19 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/OASIS/spectest.xml")
H A Dcheck-relaxng-test-suite2.py18 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/testsuite.xml")
H A Dcheck-xsddata-test-suite.py19 CONF=os.path.join(os.path.dirname(__file__), "test/xsdtest/xsdtestsuite.xml")

Completed in 406 milliseconds

1234