Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 281 for 06 (0.02 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iws.xml

        <option name="UPDATE_GROUP_BY_CHANGELIST" value="false"/>
        <option name="SHOW_FILE_HISTORY_AS_TREE" value="false"/>
        <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6"/>
      </component>
      <component name="XDebuggerManager">
        <breakpoint-manager/>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    	tests := []struct {
    		name         string
    		hand         []int
    		expectedSize int
    	}{
    		{
    			"nil slice",
    			nil,
    			6,
    		},
    		{
    			"empty slice",
    			make([]int, 0),
    			6,
    		},
    		{
    			"size: 6 cap: 6 slice",
    			make([]int, 6),
    			6,
    		},
    		{
    			"size: 6 cap: 12 slice",
    			make([]int, 6, 12),
    			6,
    		},
    		{
    			"size: 4 cap: 4 slice",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline.mlir

        %0:6 = tf_executor.graph {
          %outputs, %control = tf_executor.island wraps "tf.ReadVariableOp"(%arg2) {device = ""} : (tensor<*x!tf_type.resource>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    					2: {CoreID: 2, SocketID: 0, NUMANodeID: 0},
    					3: {CoreID: 3, SocketID: 0, NUMANodeID: 0},
    					4: {CoreID: 0, SocketID: 0, NUMANodeID: 0},
    					5: {CoreID: 1, SocketID: 0, NUMANodeID: 0},
    					6: {CoreID: 2, SocketID: 0, NUMANodeID: 0},
    					7: {CoreID: 3, SocketID: 0, NUMANodeID: 0},
    				},
    			},
    			wantErr: false,
    		},
    		{
    			// dual xeon gold 6230
    			name: "DualSocketMultiNumaPerSocketHT",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv12-RSA-3DES

    000001a0  05 07 03 02 30 0c 06 03  55 1d 13 01 01 ff 04 02  |....0...U.......|
    000001b0  30 00 30 19 06 03 55 1d  0e 04 12 04 10 9f 91 16  |0.0...U.........|
    000001c0  1f 43 43 3e 49 a6 de 6d  b6 80 d7 9f 60 30 1b 06  |.CC>I..m....`0..|
    000001d0  03 55 1d 23 04 14 30 12  80 10 48 13 49 4d 13 7e  |.U.#..0...H.IM.~|
    000001e0  16 31 bb a3 01 d5 ac ab  6e 7b 30 19 06 03 55 1d  |.1......n{0...U.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/math/j0.go

    		Two129 = 1 << 129        // 2**129 0x4800000000000000
    		// R0/S0 on [0, 2]
    		R02 = 1.56249999999999947958e-02  // 0x3F8FFFFFFFFFFFFD
    		R03 = -1.89979294238854721751e-04 // 0xBF28E6A5B61AC6E9
    		R04 = 1.82954049532700665670e-06  // 0x3EBEB1D10C503919
    		R05 = -4.61832688532103189199e-09 // 0xBE33D5E773D63FCE
    		S01 = 1.56191029464890010492e-02  // 0x3F8FFCE882C8C2A4
    		S02 = 1.16926784663337450260e-04  // 0x3F1EA6D2DD57DBF4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customWorkspace.xml

        <option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
        <option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
        <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
      </component>
      <component name="XDebuggerManager">
        <breakpoint-manager />
      </component>
      <component name="Git.Settings">
        <option name="GIT_EXECUTABLE" value="/usr/local/git/bin/git" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/os/user/lookup_unix.go

    	} else if v != nil {
    		return v.(*User), nil
    	}
    	return nil, UnknownUserIdError(i)
    }
    
    func findUsername(name string, r io.Reader) (*User, error) {
    	if v, err := readColonFile(r, matchUserIndexValue(name, 0), 6); err != nil {
    		return nil, err
    	} else if v != nil {
    		return v.(*User), nil
    	}
    	return nil, UnknownUserError(name)
    }
    
    func lookupGroup(groupname string) (*Group, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    func TestAddFlags(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-SNI-GetCertificate

    000001a0  05 07 03 02 30 0c 06 03  55 1d 13 01 01 ff 04 02  |....0...U.......|
    000001b0  30 00 30 19 06 03 55 1d  0e 04 12 04 10 9f 91 16  |0.0...U.........|
    000001c0  1f 43 43 3e 49 a6 de 6d  b6 80 d7 9f 60 30 1b 06  |.CC>I..m....`0..|
    000001d0  03 55 1d 23 04 14 30 12  80 10 48 13 49 4d 13 7e  |.U.#..0...H.IM.~|
    000001e0  16 31 bb a3 01 d5 ac ab  6e 7b 30 19 06 03 55 1d  |.1......n{0...U.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top