Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,137 for 200G (0.14 sec)

  1. cmd/kube-apiserver/app/options/validation_test.go

    			name:         "service cidr IPv6 is too big but gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("2001:db8::/64", ""),
    			gate:         true,
    		},
    		{
    			name:         "service cidr IPv6 is too big and gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("2001:db8::/12", ""),
    			gate:         true,
    		},
    		{
    			name:         "dual-stack secondary cidr too big",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    			cidrs: []*networkingapiv1alpha1.ServiceCIDR{
    				deletedServiceCIDR,
    			},
    			ips: []*networkingapiv1alpha1.IPAddress{
    				makeIPAddress("2001:db2::1"),
    			},
    			cidrSynced: deletedServiceCIDR.Name,
    			actions:    [][]string{{"patch", "servicecidrs", "status"}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/encoding/asn1/marshal.go

    }
    
    func appendUTCTime(dst []byte, t time.Time) (ret []byte, err error) {
    	year := t.Year()
    
    	switch {
    	case 1950 <= year && year < 2000:
    		dst = appendTwoDigits(dst, year-1900)
    	case 2000 <= year && year < 2050:
    		dst = appendTwoDigits(dst, year-2000)
    	default:
    		return nil, StructuralError{"cannot represent time as UTCTime"}
    	}
    
    	return appendTimeCommon(dst, t), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "4000"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).Obj(),
    			},
    			expectedPriorities: []framework.NodeScore{{Name: "node1", Score: 10}, {Name: "node2", Score: 32}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/its/a/0.1/a-0.1.jar

    META-INF/maven/org.apache.maven.its/a/pom.xml 4.0.0 org.apache.maven.its a 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo META-INF/maven/org.apache.maven.its/a/pom.properties #Generated by Maven #Sat Oct 24 00:27:56 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local_test.go

    				fmt.Sprintf("--advertise-client-urls=https://[2001:db8::3]:%d", kubeadmconstants.EtcdListenClientPort),
    				fmt.Sprintf("--listen-peer-urls=https://[2001:db8::3]:%d", kubeadmconstants.EtcdListenPeerPort),
    				fmt.Sprintf("--initial-advertise-peer-urls=https://[2001:db8::3]:%d", kubeadmconstants.EtcdListenPeerPort),
    				"--data-dir=/var/lib/etcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/resources/META-INF/analysis-api/analysis-api-fir-standalone-base.xml

    <idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
      <xi:include href="/META-INF/analysis-api/analysis-api-fir.xml"/>
    
      <extensions defaultExtensionNs="com.intellij">
        <projectService
            serviceInterface="org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDirectInheritorsProvider"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.standalone.base.declarations.KotlinStandaloneFirDirectInheritorsProvider"
        />
      </extensions>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 484 bytes
    - Viewed (0)
  8. src/all.bash

    #!/usr/bin/env bash
    # Copyright 2009 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:53:58 UTC 2024
    - 377 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			name:                "equality_reflexivity",
    			expr:                `quantity("200M") == quantity("200M")`,
    			expectEstimatedCost: checker.CostEstimate{Min: 3, Max: 1844674407370955266},
    			expectRuntimeCost:   3,
    		},
    		{
    			name:                "equality_symmetry",
    			expr:                `quantity("200M") == quantity("0.2G") && quantity("0.2G") == quantity("200M")`,
    			expectEstimatedCost: checker.CostEstimate{Min: 3, Max: 3689348814741910532},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/its/parent/0.1/parent-0.1.pom

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.apache.maven.its</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 774 bytes
    - Viewed (0)
Back to top