Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for cc_status (0.42 sec)

  1. src/database/sql/sql_test.go

    		exec(t, db, "CREATE|magicquery|op=string,millis=int32")
    		exec(t, db, "INSERT|magicquery|op=sleep,millis=10")
    	}
    	if name == "tx_status" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|tx_status|tx_status=string")
    		exec(t, db, "INSERT|tx_status|tx_status=invalid")
    	}
    	return db
    }
    
    func TestOpenDB(t *testing.T) {
    	db := OpenDB(dsnConnector{dsn: fakeDBName, driver: fdriver})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			}
    
    			setCgroupVersionDuringTest(cgroupV1)
    
    			pod.Spec.Containers[0].Resources = v1.ResourceRequirements{Limits: tc.limits, Requests: tc.requests}
    			if len(tc.cStatus) > 0 {
    				pod.Status.ContainerStatuses = tc.cStatus
    			}
    			resources := m.generateLinuxContainerResources(pod, &pod.Spec.Containers[0], false)
    			tc.expected.HugepageLimits = resources.HugepageLimits
    			if !cmp.Equal(resources, tc.expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			pod := podWithUIDNameNs("12345", "test-pod", "test-namespace")
    			pod.Spec.HostNetwork = true
    
    			criStatus := &kubecontainer.PodStatus{
    				ID:        pod.UID,
    				Name:      pod.Name,
    				Namespace: pod.Namespace,
    				IPs:       tc.criPodIPs,
    			}
    
    			status := kl.generateAPIPodStatus(pod, criStatus, false)
    			if !reflect.DeepEqual(status.PodIPs, tc.podIPs) {
    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. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    func verifyContainerStatuses(t *testing.T, runtime *apitest.FakeRuntimeService, expected []*cRecord, desc string) {
    	actual := []*cRecord{}
    	for _, cStatus := range runtime.Containers {
    		actual = append(actual, &cRecord{name: cStatus.Metadata.Name, attempt: cStatus.Metadata.Attempt, state: cStatus.State})
    	}
    	sort.Sort(cRecordList(expected))
    	sort.Sort(cRecordList(actual))
    	assert.Equal(t, expected, actual, desc)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    There are also a few properties of the whole component that can be changed:
    
    - The _component level attributes_, currently the only meaningful attribute there is `org.gradle.status`
    - The _status scheme_ to influence interpretation of the `org.gradle.status` attribute during version selection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		expectedOrder = append(expectedOrder, containerName)
    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    			cStatuses = append(cStatuses, cStatus)
    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CRYPTO_REPORT_MAXSIZE                       = 0x160
    	CS5                                         = 0x0
    	CSIGNAL                                     = 0xff
    	CSTART                                      = 0x11
    	CSTATUS                                     = 0x0
    	CSTOP                                       = 0x13
    	CSUSP                                       = 0x1a
    	DAXFS_MAGIC                                 = 0x64646178
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top