Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 280 for inversion (0.22 sec)

  1. pkg/apis/apiserverinternal/v1alpha1/zz_generated.conversion.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by conversion-gen. DO NOT EDIT.
    
    package v1alpha1
    
    import (
    	unsafe "unsafe"
    
    	v1alpha1 "k8s.io/api/apiserverinternal/v1alpha1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	apiserverinternal "k8s.io/kubernetes/pkg/apis/apiserverinternal"
    )
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/crypto/tls/quic.go

    //
    // The config's MinVersion must be at least TLS 1.3.
    func QUICClient(config *QUICConfig) *QUICConn {
    	return newQUICConn(Client(nil, config.TLSConfig), config)
    }
    
    // QUICServer returns a new TLS server side connection using QUICTransport as the
    // underlying transport. The config cannot be nil.
    //
    // The config's MinVersion must be at least TLS 1.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.ansiControlSequenceUtil) { version { strictly("0.3") }}
            api(libs.ant)                   { version { strictly(antVersion) }}
            api(libs.antLauncher)           { version { strictly(antVersion) }}
            api(libs.antJunit)           { version { strictly(antVersion) }}
            api(libs.asm)                   { version { strictly(asmVersion) }}
            api(libs.asmAnalysis)           { version { strictly(asmVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. cni/pkg/install/cniconfig_test.go

    			outFilename:     "regular.conf",
    			fileContents: `
    {
    	"cniVersion": "0.3.1",
    	"name": "istio-cni",
    	"type": "istio-cni"
    }`,
    		},
    		{
    			name:            "another regular file",
    			dir:             tempDir,
    			expectedFailure: false,
    			inFilename:      "regular2.conf",
    			outFilename:     "regular.conf",
    			fileContents: `
    {
    	"cniVersion": "0.3.1",
    	"name": "istio-cni",
    	"type": "istio-cni"
    }`,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

                    "Build time:   $version.buildTimestamp",
                    "Revision:     $version.gitRevision",
                    "",
                    "Kotlin:       ${KotlinDslVersion.current().kotlinVersion}",
                    "Groovy:       $GroovySystem.version",
                    "Ant:          $Main.antVersion",
                    "JVM:          ${Jvm.current()}",
                    "OS:           ${OperatingSystem.current()}",
                    ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/crypto/tls/quic_test.go

    		}
    	}
    }
    
    func TestQUICSessionResumption(t *testing.T) {
    	clientConfig := testConfig.Clone()
    	clientConfig.MinVersion = VersionTLS13
    	clientConfig.ClientSessionCache = NewLRUClientSessionCache(1)
    	clientConfig.ServerName = "example.go.dev"
    
    	serverConfig := testConfig.Clone()
    	serverConfig.MinVersion = VersionTLS13
    
    	cli := newTestQUICClient(t, clientConfig)
    	cli.conn.SetTransportParameters(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/net/cgo_unix.go

    	case "udp", "udp4", "udp6":
    		*_C_ai_socktype(&hints) = _C_SOCK_DGRAM
    		*_C_ai_protocol(&hints) = _C_IPPROTO_UDP
    	default:
    		return 0, &DNSError{Err: "unknown network", Name: network + "/" + service}
    	}
    	switch ipVersion(network) {
    	case '4':
    		*_C_ai_family(&hints) = _C_AF_INET
    	case '6':
    		*_C_ai_family(&hints) = _C_AF_INET6
    	}
    
    	return doBlockingWithCtx(ctx, network+"/"+service, func() (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

        protected boolean isSameOrNewer(String otherVersion) {
            return isVersion(otherVersion) || version.compareTo(GradleVersion.version(otherVersion)) > 0;
        }
    
        protected boolean isSameOrOlder(String otherVersion) {
            return isVersion(otherVersion) || version.compareTo(GradleVersion.version(otherVersion)) <= 0;
        }
    
        protected boolean isVersion(String otherVersionString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    		return fmt.Errorf("failed to decode etcd version JSON: %v", err)
    	}
    
    	// Return without updating the version if it stayed the same since last time.
    	if *lastSeenBinaryVersion == version.BinaryVersion {
    		return nil
    	}
    
    	// Delete the metric for the previous version.
    	if *lastSeenBinaryVersion != "" {
    		deleted := etcdVersion.Delete(metrics.Labels{"binary_version": *lastSeenBinaryVersion})
    		if !deleted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	testCases := []struct {
    		version         string
    		expectedVersion string
    	}{
    		{
    			version:         "v1.9.5",
    			expectedVersion: "1.9",
    		},
    		{
    			version:         "v1.9.0-alpha.2",
    			expectedVersion: "1.9",
    		},
    		{
    			version:         "v1.9.0-beta.0",
    			expectedVersion: "1.9",
    		},
    		{
    			version:         "v1.9.0-rc.1",
    			expectedVersion: "1.9",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top