Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 264 for nums (0.1 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/TestEnumMultisetGenerator.java

    import com.google.common.collect.Multiset;
    import com.google.common.collect.testing.AnEnum;
    import com.google.common.collect.testing.SampleElements;
    import com.google.common.collect.testing.SampleElements.Enums;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * An abstract {@code TestMultisetGenerator} for generating multisets containing enum values.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            &dnums_input) {
      xla::ConvolutionDimensionNumbers dnums;
      dnums.set_input_batch_dimension(dnums_input.input_batch_dimension());
      dnums.set_input_feature_dimension(dnums_input.input_feature_dimension());
      for (auto value : dnums_input.input_spatial_dimensions()) {
        dnums.add_input_spatial_dimensions(value);
      }
      dnums.set_kernel_input_feature_dimension(
          dnums_input.kernel_input_feature_dimension());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/TestEnumMultisetGenerator.java

    import com.google.common.collect.Multiset;
    import com.google.common.collect.testing.AnEnum;
    import com.google.common.collect.testing.SampleElements;
    import com.google.common.collect.testing.SampleElements.Enums;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * An abstract {@code TestMultisetGenerator} for generating multisets containing enum values.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/time/format_rfc3339.go

    	// See https://go.dev/issue/4556 and https://go.dev/issue/54580.
    	num2 := func(b []byte) byte { return 10*(b[0]-'0') + (b[1] - '0') }
    	switch {
    	case b[n0+len("9999")] != '-': // year must be exactly 4 digits wide
    		return b, errors.New("year outside of range [0,9999]")
    	case b[len(b)-1] != 'Z':
    		c := b[len(b)-len("Z07:00")]
    		if ('0' <= c && c <= '9') || num2(b[len(b)-len("07:00"):]) >= 24 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static.go

    	if err != nil {
    		return err
    	}
    
    	machineState := s.GetMachineState()
    	bestHint := &hint
    	// topology manager returned the hint with NUMA affinity nil
    	// we should use the default NUMA affinity calculated the same way as for the topology manager
    	if hint.NUMANodeAffinity == nil {
    		defaultHint, err := p.getDefaultHint(machineState, pod, requestedResources)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. proguard/base.pro

    # Note: We intentionally don't add the flags we'd need to make Flags and Enums
    # work. That's because the Proguard configuration required to make them work on
    # optimized code would preclude lots of optimization, like converting enums
    # into ints.
    
    # Throwables uses internal APIs for lazy stack trace resolution
    -dontnote sun.misc.SharedSecrets
    -keep class sun.misc.SharedSecrets {
      *** getJavaLangAccess(...);
    }
    -dontnote sun.misc.JavaLangAccess
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy.go

    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    	GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    	// and is consulted to achieve NUMA aware resource alignment per Pod
    	// among this and other resource controllers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/topology/topology.go

    type NUMANodeInfo map[int]cpuset.CPUSet
    
    // CPUDetails is a map from CPU ID to Core ID, Socket ID, and NUMA ID.
    type CPUDetails map[int]CPUInfo
    
    // CPUTopology contains details of node cpu, where :
    // CPU  - logical CPU, cadvisor - thread
    // Core - physical CPU, cadvisor - Core
    // Socket - socket, cadvisor - Socket
    // NUMA Node - NUMA cell, cadvisor - Node
    type CPUTopology struct {
    	NumCPUs      int
    	NumCores     int
    	NumSockets   int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeProvider/Fe10IdeNormalAnalysisSourceModuleHasCommonSubtypeTestGenerated.java

        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/dataClasses.kt");
      }
    
      @Test
      @TestMetadata("enums.kt")
      public void testEnums() {
        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/enums.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeDependentAnalysisSourceModuleContainingDeclarationProviderByPsiTestGenerated.java

      }
    
      @Test
      @TestMetadata("enums.kt")
      public void testEnums() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/enums.kt");
      }
    
      @Test
      @TestMetadata("functions.kt")
      public void testFunctions() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top