- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 6,358 for RETURN (0.07 sec)
-
src/cmd/asm/internal/arch/mips.go
mips.AMADD, mips.AMSUB: return true } return false } func mipsRegisterNumber(name string, n int16) (int16, bool) { switch name { case "F": if 0 <= n && n <= 31 { return mips.REG_F0 + n, true } case "FCR": if 0 <= n && n <= 31 { return mips.REG_FCR0 + n, true } case "M": if 0 <= n && n <= 31 { return mips.REG_M0 + n, true } case "R":
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Mar 04 19:06:44 UTC 2020 - 1.7K bytes - Viewed (0) -
internal/config/dns/etcd_dns.go
defer cancel() if err != nil { return nil, err } if r.Count == 0 { key = strings.TrimSuffix(key, etcdPathSeparator) r, err = c.etcdClient.Get(ctx, key) if err != nil { return nil, err } // only if we are looking at `domain` as true // we should return error here. if domain && r.Count == 0 { return nil, ErrDomainMissing } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 26 15:03:08 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
} /** * @return the informationLevel */ public int getInformationLevel () { return this.informationLevel; } /** * @return the filesystem info */ public FileSystemInformation getInfo () { return this.info; } /** * @param clazz * @return the filesystem info * @throws CIFSException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java
final Iterator<E> elementIterator() { return new Itr<E>() { @Override @ParametricNullness E result(int entryIndex) { return backingMap.getKey(entryIndex); } }; } @Override final Iterator<Entry<E>> entryIterator() { return new Itr<Entry<E>>() { @Override Entry<E> result(int entryIndex) { return backingMap.getEntry(entryIndex); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 06 16:06:58 UTC 2023 - 8.2K bytes - Viewed (0) -
cmd/metrics-v3-cache.go
objLayer := newObjectLayerFn() if objLayer == nil { return } r = objLayer.Health(GlobalContext, HealthOptions{}) return } return cachevalue.NewFromFunc(1*time.Minute, cachevalue.Opts{ReturnLastGood: true}, loadHealth, ) } func getDiffStats(initialStats, currentStats madmin.DiskIOStats) madmin.DiskIOStats { return madmin.DiskIOStats{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 09 00:51:34 UTC 2024 - 8.1K bytes - Viewed (0) -
cmd/os_other.go
isSysErrTooManySymlinks(err) { continue } return err } // Ignore symlinked directories. if fi.IsDir() { continue } } if err = filter(fi.Name(), fi.Mode()); err == errDoneForNow { // filtering requested to return by caller. return nil } } } return nil } // Return entries at the directory dirPath.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
return OptionalEntity.of(entity); case CrudMode.EDIT: if (form instanceof EditForm) { return ComponentUtil.getComponent(CharMappingService.class).getCharMappingItem(form.dictId, ((EditForm) form).id); } break; default: break; } return OptionalEntity.empty(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
internal/grid/muxclient.go
return nil, fmt.Errorf("%d %s ERR: %w", m.MuxID, m.parent.String(), context.Cause(ctx)) } return nil, context.Cause(ctx) } } // send the message. msg.Seq and msg.MuxID will be set func (m *muxClient) send(msg message) error { m.respMu.Lock() defer m.respMu.Unlock() if m.closed { return errors.New("mux client closed") } return m.sendLocked(msg) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 15.9K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm.go
bits = (bits &^ arm.C_SCOND) | b continue } return 0, false } return bits, true } func armRegisterNumber(name string, n int16) (int16, bool) { if n < 0 || 15 < n { return 0, false } switch name { case "R": return arm.REG_R0 + n, true case "F": return arm.REG_F0 + n, true } return 0, false
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
return false; } } return true; } return true; } /** * 値がコピーの対象なら{@literal true}を返します。 * * @param value * コピー元の値 * @return 値がコピーの対象なら{@literal true} */ protected boolean isTargetValue(final Object value) { if (value == null) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 18.6K bytes - Viewed (0)