- Sort Score
- Result 10 results
- Languages All
Results 1511 - 1520 of 6,241 for If (0.07 sec)
-
istioctl/pkg/writer/ztunnel/configdump/policies.go
slices.SortFunc(policies, func(a, b *ZtunnelPolicy) int { if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 { return r } return cmp.Compare(a.Name, b.Name) }) out, err := json.MarshalIndent(policies, "", " ") if err != nil { return fmt.Errorf("failed to marshal policies: %v", err) } if outputFormat == "yaml" { if out, err = yaml.JSONToYAML(out); err != nil { return err } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 21:45:11 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java
assertObjectNotNull("ck", ck); if (ck.equals(ConditionKey.CK_GREATER_THAN)) { builder.gt(value); } else if (ck.equals(ConditionKey.CK_GREATER_EQUAL)) { builder.gte(value); } else if (ck.equals(ConditionKey.CK_LESS_THAN)) { builder.lt(value); } else if (ck.equals(ConditionKey.CK_LESS_EQUAL)) { builder.lte(value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java
assertObjectNotNull("ck", ck); if (ck.equals(ConditionKey.CK_GREATER_THAN)) { builder.gt(value); } else if (ck.equals(ConditionKey.CK_GREATER_EQUAL)) { builder.gte(value); } else if (ck.equals(ConditionKey.CK_LESS_THAN)) { builder.lt(value); } else if (ck.equals(ConditionKey.CK_LESS_EQUAL)) { builder.lte(value); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
Integer set = this.batchLimits.get(cmd); if ( set != null ) { return set; } set = doGetBatchLimit(cmd); if ( set != null ) { this.batchLimits.put(cmd, set); return set; } set = DEFAULT_BATCH_LIMITS.get(cmd); if ( set != null ) { return set; } return 1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java
final PingResponse ping = searchEngineClient.ping(); final int status = ping.getStatus(); if (systemHelper.isChangedClusterState(status)) { if (fessConfig.hasNotification()) { final String toStrs = fessConfig.getNotificationTo(); final String[] toAddresses; if (StringUtil.isNotBlank(toStrs)) { toAddresses = toStrs.split(","); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-MediaTypeCommon.kt
@file:Suppress("ktlint:standard:filename") package okhttp3.internal import okhttp3.MediaType internal fun MediaType.commonParameter(name: String): String? { for (i in parameterNamesAndValues.indices step 2) { if (parameterNamesAndValues[i].equals(name, ignoreCase = true)) { return parameterNamesAndValues[i + 1] } } return null }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.1K bytes - Viewed (0) -
internal/ioutil/read_file.go
// as an error to be reported. func ReadFileWithFileInfo(name string) ([]byte, fs.FileInfo, error) { f, err := OsOpenFile(name, readMode, 0o666) if err != nil { return nil, nil, err } defer f.Close() st, err := f.Stat() if err != nil { return nil, nil, err } dst := make([]byte, st.Size()) _, err = io.ReadFull(f, dst) return dst, st, err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 09 18:17:51 UTC 2023 - 2.3K bytes - Viewed (0) -
internal/config/certs_test.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package config import ( "os" "testing" ) func createTempFile(prefix, content string) (tempFile string, err error) { var tmpfile *os.File if tmpfile, err = os.CreateTemp("", prefix); err != nil { return tempFile, err } if _, err = tmpfile.Write([]byte(content)); err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 21.6K bytes - Viewed (0) -
internal/http/headers.go
const ( XCache = "X-Cache" XCacheLookup = "X-Cache-Lookup" ) // Standard S3 HTTP request constants const ( IfModifiedSince = "If-Modified-Since" IfUnmodifiedSince = "If-Unmodified-Since" IfMatch = "If-Match" IfNoneMatch = "If-None-Match" // Request tags used in GetObjectAttributes Checksum = "Checksum" StorageClass = "StorageClass" ObjectSize = "ObjectSize"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 28 15:31:56 UTC 2024 - 10.4K bytes - Viewed (0) -
internal/grid/grid_test.go
errFatal(resp.Err) if resp.Msg[0] != byte(got) { t.Error("expected response", got, "got", resp.Msg[0]) } got++ } if got != 100 { t.Error("expected 100 responses, got", got) } } func testServerInCongestion(t *testing.T, local, remote *Manager) { defer testlogger.T.SetErrorTB(t)() errFatal := func(err error) { t.Helper() if err != nil { t.Fatal(err) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 36.4K bytes - Viewed (0)