Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for capmem (0.28 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            apiVariant.dependencies.find { it.coords == 'org.apache.camel:camel-jackson:2.15.3' }.excludes == ['*:camel-core']
    
            and:
            resolveArtifacts(javaLibrary) {
                expectFiles "camel-jackson-2.15.3.jar", "commons-beanutils-1.8.3.jar", "commons-collections-3.2.2.jar", "commons-dbcp-1.4.jar", "commons-io-1.4.jar",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // appropriate `Mapper`, it allows us to e.g. compute the peak memory without
      // having to instantiate an actual memory profile vector.
      template <class Mapper>
      void MapMem(const Mapper& mapper, const RematSpec& remat) const {
        const auto deltas = GetDeltas(remat);
        const auto len = (remat.end - remat.begin);
        auto idelta = deltas.begin();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval32
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [2]byte
    }
    
    type Termios struct {
    	Iflag  uint64
    	Oflag  uint64
    	Cflag  uint64
    	Lflag  uint64
    	Cc     [20]uint8
    	Ispeed uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            newFiles.each { it.assertIsFile() }
    
            and: 'it failed fast'
            triedToDelete.size() == DefaultDeleter.MAX_REPORTED_PATHS
    
            and: 'the report size is capped'
            def ex = thrown IOException
            def normalizedMessage = normaliseLineSeparators(ex.message)
            normalizedMessage.startsWith("""
                Unable to delete directory '$targetDir'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Striped64.java

       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
       * than CPUs, supposing that each thread were bound to a CPU,
       * there would exist a perfect hash function mapping threads to
       * slots that eliminates collisions. When we reach capacity, we
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/Striped64.java

       * exists, a CAS is tried.  Retries proceed by "double hashing",
       * using a secondary hash (Marsaglia XorShift) to try to find a
       * free slot.
       *
       * The table size is capped because, when there are more threads
       * than CPUs, supposing that each thread were bound to a CPU,
       * there would exist a perfect hash function mapping threads to
       * slots that eliminates collisions. When we reach capacity, we
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  7. pkg/kubelet/cm/helpers_linux.go

    		memoryLimits = limit.Value()
    	}
    
    	// convert to CFS values
    	cpuShares := MilliCPUToShares(cpuRequests)
    	cpuQuota := MilliCPUToQuota(cpuLimits, int64(cpuPeriod))
    
    	// quota is not capped when cfs quota is disabled
    	if !enforceCPULimits {
    		cpuQuota = int64(-1)
    	}
    
    	// determine the qos class
    	qosClass := v1qos.GetPodQOS(pod)
    
    	// build the result
    	result := &ResourceConfig{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/bitmap_test.go

    		allocated: 256, // this is a counter, we already had 2 allocations and we did 254 more
    		errors:    12,
    	}
    	expectMetrics(t, cidrIPv4, em)
    	em = testMetrics{
    		free:      65271, // IPv6 clusterIP range is capped to 2^16 and consider the broadcast address as valid
    		used:      264,
    		allocated: 264,
    		errors:    0,
    	}
    	expectMetrics(t, cidrIPv6, em)
    }
    
    func TestClusterIPAllocatedMetrics(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                } else {
                    formatter.format(", '%s'", name);
                }
            }
            return formatter.toString();
        }
    
        /**
         * Converts an arbitrary string to a camel-case string which can be used in a Java identifier. Eg, with_underscores -&gt; withUnderscores
         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                } else {
                    formatter.format(", '%s'", name);
                }
            }
            return formatter.toString();
        }
    
        /**
         * Converts an arbitrary string to a camel-case string which can be used in a Java identifier. Eg, with_underscores -&gt; withUnderscores
         */
        public static String toCamelCase(CharSequence string) {
            return toCamelCase(string, false);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top