Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 871 for Cint (0.04 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

    /**
     * This realizes the metadata source via the default hint to provide backward-compat with Maven 2.x whose Plexus version
     * registered component descriptors twice: once keyed by role+roleHint and once keyed by role only. This effectively
     * made the metadata source available with its original role hint ("maven") as well as the default hint.
     *
     */
    @Named
    @Singleton
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

            py::arg("signature_keys"), py::arg("signature_def_map_serialized"),
            py::arg("py_function_library"));
      // LINT.ThenChange(pywrap_quantization.pyi:static_range_ptq)
    
      // If the function signature changes, likely its corresponding .pyi type
      // hinting should also change.
      // LINT.IfChange(weight_only_ptq)
      m.def("weight_only_ptq", &PywrapQuantizeWeightOnlyPtq,
            R"pbdoc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/runtime/mfinal.go

    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	// aka
    	//
    	//	ptr ptr INT ptr ptr ptr ptr INT
    	//	ptr ptr ptr ptr INT ptr ptr ptr
    	//	ptr INT ptr ptr ptr ptr INT ptr
    	//	ptr ptr ptr INT ptr ptr ptr ptr
    	//	INT ptr ptr ptr ptr INT ptr ptr
    	//
    	// Assumptions about Finalizer layout checked below.
    	1<<0 | 1<<1 | 0<<2 | 1<<3 | 1<<4 | 1<<5 | 1<<6 | 0<<7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/multilevelpki/ecc-int-cert-chain.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    		request                     int
    		devices                     []pluginapi.Device
    		allocatedDevices            []string
    		hint                        topologymanager.TopologyHint
    		getPreferredAllocationFunc  func(available, mustInclude []string, size int) (*pluginapi.PreferredAllocationResponse, error)
    		expectedPreferredAllocation []string
    		expectedAlignment           map[int]int
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy_none_test.go

    func TestPolicyNoneCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: true,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 03 17:13:28 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. test/typeparam/aliasimp.dir/main.go

    type R[T any] struct {
    	F T
    }
    
    // type S = R // disallowed for now
    
    type Sint = R[int]
    
    // type Simp = a.Rimp // disallowed for now
    
    // type SimpString Simp[string] // disallowed for now
    type SimpString a.Rimp[string]
    
    func main() {
    	// var s S[int] // disallowed for now
    	var s R[int]
    	if s.F != 0 {
    		panic(s.F)
    	}
    	var s2 Sint
    	if s2.F != 0 {
    		panic(s2.F)
    	}
    	// var s3 Simp[string] // disallowed for now
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 709 bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

     * thrown or a simple string message. In addition, a problem carries a hint about its source.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/malloc_test.go

    	for i := 0; i < 5; i++ {
    		// Reserve memory at the next hint so it can't be used
    		// for the heap.
    		start, end, ok := MapNextArenaHint()
    		if !ok {
    			t.Skipf("failed to reserve memory at next arena hint [%#x, %#x)", start, end)
    		}
    		t.Logf("reserved [%#x, %#x)", start, end)
    		disallowed = append(disallowed, [2]uintptr{start, end})
    		// Allocate until the runtime tries to use the hint we
    		// just mapped over.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/policy_best_effort_test.go

    func TestPolicyBestEffortCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: true,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top