Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for partitioned (0.17 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

            }
    
            // Perform a partition with the selected median.
            int low = from + 1, high = to; // Indexes for partitioning.
            double partition = array[from + 1]; // Choose partitioning element.
            while (true) {
              // Skip the elements smaller than the partition.
              do {
                low++;
              } while (array[low] < partition);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/gcepersistentdiskvolumesource.go

    // with apply.
    type GCEPersistentDiskVolumeSourceApplyConfiguration struct {
    	PDName    *string `json:"pdName,omitempty"`
    	FSType    *string `json:"fsType,omitempty"`
    	Partition *int32  `json:"partition,omitempty"`
    	ReadOnly  *bool   `json:"readOnly,omitempty"`
    }
    
    // GCEPersistentDiskVolumeSourceApplyConfiguration constructs an declarative configuration of the GCEPersistentDiskVolumeSource type for use with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. internal/arn/arn.go

    	}
    	return ARN{
    		Partition:    arnPartitionMinio,
    		Service:      arnServiceIAM,
    		Region:       serverRegion,
    		ResourceType: arnResourceTypeRole,
    		ResourceID:   resourceID,
    	}, nil
    }
    
    // String - returns string representation of the ARN.
    func (arn ARN) String() string {
    	return strings.Join(
    		[]string{
    			arnPrefixArn,
    			arn.Partition,
    			arn.Service,
    			arn.Region,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/memory_windows.go

    	QUOTA_LIMITS_HARDWS_MAX_ENABLE  = 0x00000004
    )
    
    type MemoryBasicInformation struct {
    	BaseAddress       uintptr
    	AllocationBase    uintptr
    	AllocationProtect uint32
    	PartitionId       uint16
    	RegionSize        uintptr
    	State             uint32
    	Protect           uint32
    	Type              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 16:59:45 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc_test.go

    		}
    	}
    	t.Logf("For requiredSum=%v, %s classes=%#+v got solution %v, %v", requiredSum, style, classes, allocs, fairProp)
    }
    
    // partition64 calls consume n times, passing ints [0,n) and floats that sum to x
    func partition64(rands *rand.Rand, n int, x float64, consume func(int, float64)) {
    	if n <= 0 {
    		return
    	}
    	divs := make([]float64, n-1)
    	for idx := range divs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 18:17:27 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/memory_windows.go

    	// The page pointed to by the BaseAddress member is contained within this allocation range.
    	AllocationBase uintptr
    	// The memory protection option when the region was initially allocated
    	AllocationProtect uint32
    	PartitionId       uint16
    	// The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/data_flow_grad_test.cc

    };
    
    TEST_F(DataFlowGradTest, DynamicPartitionGrad) {
      TensorShape data_shape({2, 3, 2});
      auto data = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(data_shape));
      auto partitions = Const(scope_, {{2, 1, 0}, {1, 2, 0}});
      auto y = DynamicPartition(scope_, data, partitions, 3);
      TensorShape partition_shape({2, 2});
      RunTest({data}, {data_shape}, y.outputs,
              {partition_shape, partition_shape, partition_shape});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 02 18:49:13 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  8. fastapi/security/utils.py

    
    def get_authorization_scheme_param(
        authorization_header_value: Optional[str],
    ) -> Tuple[str, str]:
        if not authorization_header_value:
            return "", ""
        scheme, _, param = authorization_header_value.partition(" ")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 14:26:09 UTC 2022
    - 293 bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/ranges.c

    // gcc -g -O2 -freorder-blocks-and-partition
    
    const char *arr[10000];
    const char *hot = "hot";
    const char *cold = "cold";
    
    __attribute__((noinline))
    void fn(int path) {
    	int i;
    
    	if (path) {
    		for (i = 0; i < sizeof arr / sizeof arr[0]; i++) {
    			arr[i] = hot;
    		}
    	} else {
    		for (i = 0; i < sizeof arr / sizeof arr[0]; i++) {
    			arr[i] = cold;
    		}
    	}
    }
    
    int main(int argc, char *argv[]) {
    	fn(argc);
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 415 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

          "capacityKey": "0"
        },
        "gcePersistentDisk": {
          "pdName": "pdNameValue",
          "fsType": "fsTypeValue",
          "partition": 3,
          "readOnly": true
        },
        "awsElasticBlockStore": {
          "volumeID": "volumeIDValue",
          "fsType": "fsTypeValue",
          "partition": 3,
          "readOnly": true
        },
        "hostPath": {
          "path": "pathValue",
          "type": "typeValue"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top