Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 276 for versionId (1.36 sec)

  1. okhttp/src/test/java/okhttp3/SocksProxy.kt

      private fun hello(
        fromSource: BufferedSource,
        fromSink: BufferedSink,
      ) {
        val version = fromSource.readByte() and 0xff
        val methodCount = fromSource.readByte() and 0xff
        var selectedMethod = METHOD_NONE
        if (version != VERSION_5) {
          throw ProtocolException("unsupported version: $version")
        }
        for (i in 0 until methodCount) {
          val candidateMethod: Int = fromSource.readByte() and 0xff
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    // Note that the types provided in this file are not versioned and are intended to be
    // safe to use from within all versions of every API object.
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    //	type MyAwesomeAPIObject struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/clientset.go

    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package versioned
    
    import (
    	"fmt"
    	"net/http"
    
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1"
    	discovery "k8s.io/client-go/discovery"
    	rest "k8s.io/client-go/rest"
    	flowcontrol "k8s.io/client-go/util/flowcontrol"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 18:26:20 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedChangingModulesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class CachedChangingModulesIntegrationTest extends AbstractHttpDependencyResolutionTest {
    
        def "can cache and refresh unique versioned maven artifacts with a classifier"() {
            given:
            def repo = mavenHttpRepo("repo")
            def module = repo.module("group", "projectA", "1.0-SNAPSHOT")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    [versions]
    common = "1.4"
    
    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  7. buildscripts/resolve-right-versions.sh

    Harshavardhana <******@****.***> 1692197493 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. manifests/helm-profiles/compatibility-version-1.21.yaml

    Leonardo Sarra <******@****.***> 1717533426 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 310 bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/service.yaml

          protocol: TCP
      selector:
        app: istiod
        {{- if ne .Values.revision "" }}
        istio.io/rev: {{ .Values.revision | quote }}
        {{- else }}
        # Label used by the 'default' service. For versioned deployments we match with app and version.
        # This avoids default deployment picking the canary
        istio: pilot
        {{- end }}
      {{- if .Values.pilot.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.pilot.ipFamilyPolicy }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/VersionInfo.java

    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy.Version;
    
    public class VersionInfo implements Versioned {
        private final Version version;
    
        public VersionInfo(Version version) {
            this.version = version;
        }
    
        @Override
        public Version getVersion() {
            return version;
        }
    
        @Override
        public boolean equals(Object other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top