- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 613 for addr (0.03 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
val equalsOffset = indexOf('=', pos) if (equalsOffset == -1 || equalsOffset > ampersandOffset) { result.add(substring(pos, ampersandOffset)) result.add(null) // No value for this name. } else { result.add(substring(pos, equalsOffset)) result.add(substring(equalsOffset + 1, ampersandOffset)) } pos = ampersandOffset + 1 } return result
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
- The DaemonSet, Deployment, ReplicaSet, and StatefulSet kinds are now in the apps/v1beta2 group and version. - The apps/v1beta2 group version adds a Scale subresource for the StatefulSet kind. - All kinds in the apps/v1beta2 group version add a corresponding conditions kind. #### Behavioral Changes - For all kinds in the API group version, a spec.selector default value is no longer
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.7.md
### **Internationalization** * Add Traditional Chinese translation for kubectl ([#46559](https://github.com/kubernetes/kubernetes/pull/46559), [@warmchang](https://github.com/warmchang)) * Add Japanese translation for kubectl ([#46756](https://github.com/kubernetes/kubernetes/pull/46756), [@girikuncoro](https://github.com/girikuncoro))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
src/archive/zip/writer.go
if _, err := w.cw.Write(buf[:]); err != nil { return err } if _, err := io.WriteString(w.cw, w.comment); err != nil { return err } return w.cw.w.(*bufio.Writer).Flush() } // Create adds a file to the zip file using the provided name. // It returns a [Writer] to which the file contents should be written. // The file contents will be compressed using the [Deflate] method.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jan 28 04:20:09 UTC 2025 - 19.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
MOVV $0x821, R4 // MOVV $2081, R4 // 0484a003 // ADDV C_SCON, [r1], r2 ADDV $0x321, R4 // ADDV $801, R4 // 8484cc02 ADDV $0x321, R5, R4 // ADDV $801, R5, R4 // a484cc02 ADDV $0xfffffffffffffc21, R4 // ADDV $-991, R4 // 8484f002 ADDV $0xfffffffffffffc21, R5, R4 // ADDV $-991, R5, R4 // a484f002 // AND C_SCON, [r1], r2 AND $0x321, R4 // AND $801, R4 // 84844c03
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
*/ public DataStoreParams newInstance() { return new DataStoreParams(params); } /** * Adds all key-value pairs from the specified map to this parameter container. * * @param map the map containing parameters to add, must not be null */ public void putAll(final Map<String, String> map) { params.putAll(map); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
* Add CRI log parsing library at pkg/kubelet/apis/cri/logs ([#55140](https://github.com/kubernetes/kubernetes/pull/55140), [@feiskyer](https://github.com/feiskyer)) * Add extra-args configs for scheduler and controller-manager to kubernetes-master charm ([#55185](https://github.com/kubernetes/kubernetes/pull/55185), [@Cynerva](https://github.com/Cynerva))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
*/ protected String getParamValue(final DataStoreParams paramMap, final String key, final String defaultValue) { return paramMap.getAsString(key, defaultValue); } /** * Adds a document to the search index by crawling the specified URL and processing the content. * This method handles recursive crawling with depth and access count limits, follows redirects,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc.s
ADDL $7, (BX) // 830307 ADDL $7, (R11) // 41830307 ADDL $7, DX // 83c207 ADDL $7, R11 // 4183c307 ADDL DX, (BX) // 0113 ADDL R11, (BX) // 44011b ADDL DX, (R11) // 410113 ADDL R11, (R11) // 45011b
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1) -
cmd/xl-storage-format_test.go
xl = xlMetaV2{} err := xl.Load(enc) if err != nil { b.Fatal(err) } // Update modtime for resorting... fi.ModTime = fi.ModTime.Add(-time.Second) // Update a random version. fi.VersionID = mustGetUUID() // Add... err = xl.AddVersion(fi) if err != nil { b.Fatal(err) } // Save... dump, err = xl.AppendTo(dump[:0]) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 17.5K bytes - Viewed (0)