- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 209 for binversion (0.12 sec)
-
istioctl/pkg/util/common.go
"strings" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" binversion "istio.io/istio/operator/version" ) var NeverMatch = &metav1.LabelSelector{ MatchLabels: map[string]string{ "istio.io/deactivated": "never-match", }, } var ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-` + binversion.OperatorVersionString + `/manifests).`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.6K bytes - Viewed (0) -
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) -
src/main/java/jcifs/config/BaseConfiguration.java
} protected void initProtocolVersions ( DialectVersion min, DialectVersion max ) { this.minVersion = min != null ? min : DialectVersion.SMB1; this.maxVersion = max != null ? max : DialectVersion.SMB210; if ( this.minVersion.atLeast(this.maxVersion) ) { this.maxVersion = this.minVersion; } } protected void initDisallowCompound ( String prop ) {
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/archive/tar/strconv.go
// complement encoded number in big-endian byte order. if len(b) > 0 && b[0]&0x80 != 0 { // Handling negative numbers relies on the following identity: // -a-1 == ^a // // If the number is negative, we use an inversion mask to invert the // data bytes and treat the value as an unsigned number. var inv byte // 0x00 if positive or zero, 0xff if negative if b[0]&0x40 != 0 { inv = 0xff } var x uint64
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
tests/test_starlette_urlconvertors.py
client = TestClient(app) def test_route_converters_int(): # Test integer conversion response = client.get("/int/5") assert response.status_code == 200, response.text assert response.json() == {"int": 5} assert app.url_path_for("int_convertor", param=5) == "/int/5" # type: ignore def test_route_converters_float(): # Test float conversion response = client.get("/float/25.5")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Nov 27 14:46:06 UTC 2022 - 1.7K 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) -
src/test/java/jcifs/tests/ContextConfigTest.java
prop2.setProperty("jcifs.smb.client.minVersion", "SMB311"); PropertyConfiguration p2 = new PropertyConfiguration(prop2); assertEquals(DialectVersion.SMB311, p2.getMinimumVersion()); assertEquals(DialectVersion.SMB311, p2.getMaximumVersion()); Properties prop3 = new Properties(); prop3.setProperty("jcifs.smb.client.minVersion", "SMB202");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.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) -
helm/minio/templates/_helpers.tpl
{{/* Return the appropriate apiVersion for ingress. */}} {{- define "minio.ingress.apiVersion" -}} {{- if semverCompare "<1.14-0" .Capabilities.KubeVersion.GitVersion -}} {{- print "extensions/v1beta1" -}} {{- else if semverCompare "<1.19-0" .Capabilities.KubeVersion.GitVersion -}} {{- print "networking.k8s.io/v1beta1" -}} {{- else -}} {{- print "networking.k8s.io/v1" -}} {{- end -}} {{- end -}} {{/*
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Apr 17 06:04:15 UTC 2023 - 6.5K bytes - Viewed (0)