Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,957 for Versions (0.12 sec)

  1. cmd/storage-datatypes.go

    	// Name of the file.
    	Name string `msg:"n,omitempty"`
    
    	// Represents the latest mod time of the
    	// latest version.
    	LatestModTime time.Time `msg:"lm"`
    
    	Versions     []FileInfo `msg:"vs"`
    	FreeVersions []FileInfo `msg:"fvs"`
    }
    
    // findVersionIndex will return the version index where the version
    // was found. Returns -1 if not found.
    func (f *FileInfoVersions) findVersionIndex(v string) int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

        level = DeprecationLevel.ERROR,
      )
      fun cipherSuites(): List<CipherSuite>? = cipherSuites
    
      /**
       * Returns the TLS versions to use when negotiating a connection. Returns null if all of the SSL
       * socket's enabled TLS versions should be used.
       */
      @get:JvmName("tlsVersions")
      val tlsVersions: List<TlsVersion>?
        get() {
          return tlsVersionsAsString?.map { TlsVersion.forJavaName(it) }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. cmd/data-usage-cache.go

    			res[szInt.name] = count
    		}
    	}
    	return res
    }
    
    // add a version count to the histogram.
    func (h *versionsHistogram) add(versions uint64) {
    	// Fetch the histogram interval corresponding
    	// to the passed object size.
    	for i, interval := range ObjectsVersionCountIntervals[:] {
    		if versions >= uint64(interval.start) && versions <= uint64(interval.end) {
    			h[i]++
    			break
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                        notRequested()
                        byConstraint()
                        byReason("didn't match version 2.0.0")
                    }
                }
            }
        }
    
        def "should choose highest special version when multiple prefer versions disagree"() {
            repository {
                'org:foo' {
                    '1.1-releaseProguard'()
                    '1.1-release'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. cmd/erasure-metadata-utils.go

    // be achieved and disks have too many inconsistent versions.
    func reduceCommonVersions(diskVersions [][]byte, writeQuorum int) (versions []byte) {
    	diskVersionsCount := make(map[uint64]int)
    	for _, versions := range diskVersions {
    		if len(versions) > 0 {
    			diskVersionsCount[binary.BigEndian.Uint64(versions)]++
    		}
    	}
    
    	var commonVersions uint64
    	max := 0
    	for versions, count := range diskVersionsCount {
    		if max < count {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    	for _, v := range coolFooCRD.Spec.Versions {
    		env.FakeResourceManager.Expect().
    			SetGroupVersionPriority(metav1.GroupVersion{Group: coolFooCRD.Spec.Group, Version: v.Name}, 1000, 100)
    	}
    
    	env.FakeResourceManager.Expect().
    		AddGroupVersion(coolFooCRD.Spec.Group, coolFooDiscovery)
    	for _, v := range coolFooCRD.Spec.Versions {
    		env.FakeResourceManager.Expect().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

    import spock.lang.Specification
    
    class NodeStateTest extends Specification {
    
        int idIdx = 0
        NodeState root = nextNode()
    
        def "uses empty strict version constraints object if no strict versions are defined"() {
            Set<ModuleIdentifier> constraintsSet = []
    
            when:
            root.maybeCollectStrictVersions(constraintsSet, edge(root, false).dependencyState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    	spec.SelectableFields = nil
    	for i := range spec.Versions {
    		spec.Versions[i].SelectableFields = nil
    	}
    }
    
    func specHasSelectableFields(spec *apiextensions.CustomResourceDefinitionSpec) bool {
    	if spec.SelectableFields != nil {
    		return true
    	}
    	for _, v := range spec.Versions {
    		if v.SelectableFields != nil {
    			return true
    		}
    	}
    
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    }
    
    // EncoderForVersion returns an encoder that does not do conversion, but does set the group version kind of the object
    // when serialized.
    func (f WithoutConversionCodecFactory) EncoderForVersion(serializer runtime.Encoder, version runtime.GroupVersioner) runtime.Encoder {
    	return runtime.WithVersionEncoder{
    		Version:     version,
    		Encoder:     serializer,
    		ObjectTyper: f.CodecFactory.scheme,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. docs/features/https.md

    connection to an HTTPS server, OkHttp needs to know which [TLS versions](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-tls-version/) and [cipher suites](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-cipher-suite/) to offer. A client that wants to maximize connectivity would include obsolete TLS versions and weak-by-design cipher suites. A strict client that wants to maximize security would be limited to only the latest TLS version and strongest cipher suites.
    
    Specific security vs....
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top