- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 7,250 for return (0.05 sec)
-
istioctl/pkg/tag/generate.go
revWebhooks, err := GetWebhooksWithRevision(ctx, client.Kube(), opts.Revision) if err != nil { return "", err } if len(revWebhooks) == 0 { return "", fmt.Errorf("cannot modify tag: cannot find MutatingWebhookConfiguration with revision %q", opts.Revision) } if len(revWebhooks) > 1 { return "", fmt.Errorf("cannot modify tag: found multiple canonical webhooks with revision %q", opts.Revision) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/endpoint.go
return false } } if e.Port != 0 && retrieveEndpointPort(ep) != e.Port { return false } if e.Cluster != "" && !strings.EqualFold(cluster, e.Cluster) { return false } status := retrieveEndpointStatus(ep) if e.Status != "" && !strings.EqualFold(core.HealthStatus_name[int32(status)], e.Status) { return false } return true } func retrieveEndpointStatus(ep *endpoint.LbEndpoint) core.HealthStatus {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 09:57:29 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
dst[++dstIndex] = (byte)(val >> 8); } static int readInt2( byte[] src, int srcIndex ) { return ( src[srcIndex] & 0xFF ) + (( src[srcIndex + 1] & 0xFF ) << 8 ); } static int readInt4( byte[] src, int srcIndex ) { return ( src[srcIndex] & 0xFF ) + (( src[srcIndex + 1] & 0xFF ) << 8 ) + (( src[srcIndex + 2] & 0xFF ) << 16 ) +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Maps.java
/* * standardToArray returns `@Nullable Object[]` rather than `Object[]` but because it can * be used with collections that may contain null. This collection never contains nulls, so we * could return `Object[]`. But this class is private and J2KT cannot change return types in * overrides, so we declare `@Nullable Object[]` as the return type. */ return standardToArray(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 161.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
final Entry<Class<? extends @NonNull B>, B> entry) { return new ForwardingMapEntry<Class<? extends @NonNull B>, B>() { @Override protected Entry<Class<? extends @NonNull B>, B> delegate() { return entry; } @Override @ParametricNullness public B setValue(@ParametricNullness B value) { cast(getKey(), value); return super.setValue(value); } }; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
dstIndex += this.request.encode(dst, dstIndex); return dstIndex - start; } @Override protected int writeDataWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int readSetupWireFormat ( byte[] buffer, int bufferIndex, int len ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
final FessConfig fessConfig) { return documentSizeByQuery; } @Override protected int refreshIndex(final SearchEngineClient searchEngineClient, final String index) { return 200; } }; indexingHelper.setMaxRetryCount(5); indexingHelper.setDefaultRowSize(100);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 08:54:24 UTC 2024 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsFavoriteLogCB.java
@Override public FavoriteLogDbm asDBMeta() { return FavoriteLogDbm.getInstance(); } @Override public String asTableDbName() { return "favorite_log"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsUserInfoCB.java
@Override public UserInfoDbm asDBMeta() { return UserInfoDbm.getInstance(); } @Override public String asTableDbName() { return "user_info"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.4K bytes - Viewed (0)