- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 86 for binversion (0.09 sec)
-
istioctl/pkg/install/k8sversion/version_test.go
Major: "1", Minor: "17", GitVersion: "1.17", } version1_8 = &version.Info{ Major: "1", Minor: "8", GitVersion: "v1.8", } version1_18 = &version.Info{ Major: "1", Minor: "18", GitVersion: "v1.18.5", } version1_19 = &version.Info{ Major: "1", Minor: "19", GitVersion: "v1.19.4", } version1_20 = &version.Info{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 6.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
TestCoverage(4, TestType.platform, Os.WINDOWS, JvmCategory.MAX_VERSION), TestCoverage(20, TestType.configCache, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE), TestCoverage(21, TestType.isolatedProjects, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
return true; } // Check for identity or widening reference conversion if (actual != null && formal.isAssignableFrom(actual)) { return true; } // Check for boxing with widening primitive conversion. Note that // actual parameters are never primitives. if (formal.isPrimitive()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.2K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
var result *cniv1.Result if conf.PrevResult == nil { result = &cniv1.Result{ CNIVersion: cniv1.ImplementedSpecVersion, } return types.PrintResult(result, conf.CNIVersion) } // Pass through the result for the next plugin return types.PrintResult(conf.PrevResult, conf.CNIVersion) } func CmdCheck(args *skel.CmdArgs) (err error) { return nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/test/testdata/expected/YYY-istio-cni.conf
{ "cniVersion": "0.3.1", "name": "istio-cni", "type": "istio-cni", "ipam": {}, "dns": {}, "plugin_log_level": "debug", "cni_agent_run_dir": "/tmp", "ambient_enabled": false, "exclude_namespaces": [ "istio-system" ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 241 bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
if err != nil { return nil, fmt.Errorf("error loading existing CNI config (JSON error): %v", err) } delete(istioMap, "cniVersion") var newMap map[string]any if _, ok := existingMap["type"]; ok { // Assume it is a regular network conf file delete(existingMap, "cniVersion") plugins := make([]map[string]any, 2) plugins[0] = existingMap plugins[1] = istioMap newMap = map[string]any{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 8.2K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
continue } val dirVersion = cacheDirName.removePrefix(dirPrefix).removeSuffix(dirSuffix) if (!dirVersion.matches(dirVersionPattern)) { continue } val cacheVersion = try { GradleVersion.version(dirVersion) } catch (_: IllegalArgumentException) { // Ignore
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/en/docs/advanced/response-directly.md
/// tip `JSONResponse` itself is a sub-class of `Response`. /// And when you return a `Response`, **FastAPI** will pass it directly. It won't do any data conversion with Pydantic models, it won't convert the contents to any type, etc. This gives you a lot of flexibility. You can return any data type, override any data declaration or validation, etc.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3K bytes - Viewed (0) -
cni/pkg/install/testdata/istio-cni.conf
{ "cniVersion": "0.3.1", "name": "istio-cni", "type": "istio-cni", "ipam": {}, "dns": {}, "plugin_log_level": "debug", "cni_agent_run_dir": "/path/to/kubeconfig", "ambient_enabled": false, "exclude_namespaces": [ "" ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 244 bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
"name": "The Foo live" } } ``` Again, doing just that declaration, with **FastAPI** you get: * Editor support (completion, etc.), even for nested models * Data conversion * Data validation * Automatic documentation ## Special types and validation Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0)