Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for cpuset (0.16 sec)

  1. cmd/kubelet/app/server.go

    }
    
    func getReservedCPUs(machineInfo *cadvisorapi.MachineInfo, cpus string) (cpuset.CPUSet, error) {
    	emptyCPUSet := cpuset.New()
    
    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    	topo, err := topology.Discover(machineInfo)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to discover CPU topology info: %s", err)
    	}
    	reservedCPUSet, err := cpuset.Parse(cpus)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            Throwable cause = causes.get(0);
            printWriter.print("Caused by: ");
            cause.printStackTrace(printWriter);
        }
    
        private void printMultiCauseStackTrace(PrintWriter printWriter) {
            for (int i = 0; i < causes.size(); i++) {
                Throwable cause = causes.get(i);
                printWriter.format("Cause %s: ", i + 1);
                cause.printStackTrace(printWriter);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned
       * normally.
       */
      public void assertPriorCallReturns(@Nullable String methodName) throws Exception {
        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned
       * normally.
       */
      public void assertPriorCallReturns(@Nullable String methodName) throws Exception {
        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // It is possible that another task is being executed now and causes `task` to be configured.
            // In this case, we shouldn't attribute the error to the `task` alone, as it can be misleading,
            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

        constructor(
            message: String,
            causes: List<Throwable>,
            summary: () -> String
        ) : super(
            { "$message\n${summary()}" },
            causes
        )
    
        internal
        constructor(
            causes: List<Throwable>,
            summary: () -> String
        ) : this(
            "Configuration cache problems found in this build.",
            causes,
            summary
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseExceptionNoStackTrace.java

        }
    
        public DefaultMultiCauseExceptionNoStackTrace(Factory<String> messageFactory, Throwable... causes) {
            super(messageFactory, causes);
        }
    
        public DefaultMultiCauseExceptionNoStackTrace(Factory<String> messageFactory, Iterable<? extends Throwable> causes) {
            super(messageFactory, causes);
        }
    
        @Override
        public synchronized Throwable fillInStackTrace() {
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

        private
        var causes = ArrayList<Throwable>(maxCauses)
    
        private
        val lock = ReentrantLock()
    
        fun get(): Summary = lock.withLock {
            Summary(
                problemCount,
                failureCount,
                suppressedCount,
                ImmutableSet.copyOf(uniqueProblems),
                ImmutableList.copyOf(causes),
                overflowed,
                maxCollectedProblems
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. RELEASE.md

    *   Fixes a missing validation which causes denial of service via `GetSessionTensor` ([CVE-2022-29191](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29191))
    *   Fixes a missing validation which causes denial of service via `StagePeek` ([CVE-2022-29195](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29195))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
Back to top