Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Machines (0.31 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

                    (Const32 <typ.UInt32> [int32(c)]))
                  (Const32 <typ.UInt32> [int32((1<<32)%c)])))
              (Const32 <typ.UInt32> [int32(c)]))))
    
    // For 64-bit divides on 64-bit machines
    // (64-bit divides on 32-bit machines are lowered to a runtime call by the walk pass.)
    (Div64u x (Const64 [c])) && umagicOK64(c) && config.RegSize == 8 && umagic64(c).m&1 == 0 && config.useHmul =>
      (Rsh64Ux64 <typ.UInt64>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // watch : 2013-11-14 Binky Moon, LLC
    watch
    
    // watches : 2014-12-22 Identity Digital Limited
    watches
    
    // weather : 2015-01-08 International Business Machines Corporation
    weather
    
    // weatherchannel : 2015-03-12 International Business Machines Corporation
    weatherchannel
    
    // webcam : 2014-01-23 dot Webcam Limited
    webcam
    
    // weber : 2015-06-04 Saint-Gobain Weber SA
    weber
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	podB := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine2"},
    	}
    	podAWithResourceVersion := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test", ResourceVersion: "7"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    // Machine is found in Header.Machine.
    type Machine uint16
    
    const (
    	EM_NONE          Machine = 0   /* Unknown machine. */
    	EM_M32           Machine = 1   /* AT&T WE32100. */
    	EM_SPARC         Machine = 2   /* Sun SPARC. */
    	EM_386           Machine = 3   /* Intel i386. */
    	EM_68K           Machine = 4   /* Motorola 68000. */
    	EM_88K           Machine = 5   /* Motorola 88000. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    // preloadWorkerCount is the number of concurrent goroutines that can load
    // packages. Experimentally, there are diminishing returns with more than
    // 4 workers. This was measured on the following machines.
    //
    // * MacBookPro with a 4-core Intel Core i7 CPU
    // * Linux workstation with 6-core Intel Xeon CPU
    // * Linux workstation with 24-core Intel Xeon CPU
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    								PageSize: pageSize1Gb,
    								NumPages: 1,
    							},
    						},
    					},
    				},
    			},
    			expectedError: fmt.Errorf("[memorymanager] the expected machine state is different from the real one"),
    		},
    		{
    			description: "should fail when machine state does not have memory resource",
    			machineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    case I can go back by railway,' she said to herself.  (Alice had
    been to the seaside once in her life, and had come to the general
    conclusion, that wherever you go to on the English coast you find
    a number of bathing machines in the sea, some children digging in
    the sand with wooden spades, then a row of lodging houses, and
    behind them a railway station.)  However, she soon made out that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    case I can go back by railway,' she said to herself.  (Alice had
    been to the seaside once in her life, and had come to the general
    conclusion, that wherever you go to on the English coast you find
    a number of bathing machines in the sea, some children digging in
    the sand with wooden spades, then a row of lodging houses, and
    behind them a railway station.)  However, she soon made out that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    func withID(status v1.ContainerStatus, id string) v1.ContainerStatus {
    	status.ContainerID = id
    	return status
    }
    
    func TestPodPhaseWithRestartAlways(t *testing.T) {
    	desiredState := v1.PodSpec{
    		NodeName: "machine",
    		Containers: []v1.Container{
    			{Name: "containerA"},
    			{Name: "containerB"},
    		},
    		RestartPolicy: v1.RestartPolicyAlways,
    	}
    
    	tests := []struct {
    		pod           *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "gcePersistentDisk": {
              "$ref": "#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top