Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for run1 (0.08 sec)

  1. pkg/registry/batch/job/strategy_test.go

    				Spec: batch.JobSpec{
    					Selector: validSelector,
    					Template: validPodTemplateSpec,
    					Suspend:  ptr.To(true),
    				},
    			},
    		},
    	}
    
    	for name, tc := range cases {
    		t.Run(name, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.JobPodFailurePolicy, tc.enableJobPodFailurePolicy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			m:   matchPodName("foo", "makeMatchSingleReturnFalse"),
    			out: &example.PodList{Items: []example.Pod{*podB}},
    		},
    	}
    
    	for name, item := range table {
    		t.Run(name, func(t *testing.T) {
    			ctx := testContext
    			if item.context != nil {
    				ctx = item.context
    			}
    			destroyFunc, registry := NewTestGenericStoreRegistry(t)
    			defer destroyFunc()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    fe00::2	ip6-allrouters
    12.34.56.78	another.domain
    
    # Entries added by HostAliases.
    123.45.67.89	foo	bar	baz
    456.78.90.123	park	doo	boo
    `,
    		},
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.hostsFileName, func(t *testing.T) {
    			tmpdir, err := writeHostsFile(testCase.hostsFileName, testCase.rawHostsFileContent)
    			require.NoError(t, err, "could not create a temp hosts file")
    			defer os.RemoveAll(tmpdir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. src/html/entity.go

    // http://www.w3.org/TR/html4/sgml/entities.html
    var entity map[string]rune
    
    // HTML entities that are two unicode codepoints.
    var entity2 map[string][2]rune
    
    // populateMapsOnce guards calling populateMaps.
    var populateMapsOnce sync.Once
    
    // populateMaps populates entity and entity2.
    func populateMaps() {
    	entity = map[string]rune{
    		"AElig;":                           '\U000000C6',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying this step or, if {@code get()} throws a different kind of exception, that
       *     exception itself.
       * @param executor the executor that runs {@code fallback} if the input fails
       */
      public <X extends Throwable> ClosingFuture<V> catching(
          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "targetContainerName": {
              "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    ```
      gci-beta-55-8872-47-0:
      Date:           Nov 11, 2016
      Kernel:         ChromiumOS-4.4
      Kubernetes:     v1.4.5
      Docker:         v1.11.2
      Changelog (vs 55-8872-18-0)
        * Cherry-pick runc PR#608: Eliminate redundant parsing of mountinfo
        * Updated kubernetes to v1.4.5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    // or returning an existing connection from the connection pool. Conn will
    // block until either a connection is returned or ctx is canceled.
    // Queries run on the same Conn will be run in the same database session.
    //
    // Every Conn must be returned to the database pool after use by
    // calling [Conn.Close].
    func (db *DB) Conn(ctx context.Context) (*Conn, error) {
    	var dc *driverConn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *caseTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return caseValues[c0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
Back to top