Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for cpuset (0.19 sec)

  1. pkg/kubelet/cm/container_manager_linux_test.go

    )
    
    func fakeContainerMgrMountInt() mount.Interface {
    	return mount.NewFakeMounter(
    		[]mount.MountPoint{
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    				Opts:   []string{"rw", "relatime", "cpuset"},
    			},
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    				Opts:   []string{"rw", "relatime", "cpu"},
    			},
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager.go

    	TopologyManagerPolicyOptions            map[string]string
    }
    
    type NodeAllocatableConfig struct {
    	KubeReservedCgroupName   string
    	SystemReservedCgroupName string
    	ReservedSystemCPUs       cpuset.CPUSet
    	EnforceNodeAllocatable   sets.Set[string]
    	KubeReserved             v1.ResourceList
    	SystemReserved           v1.ResourceList
    	HardEvictionThresholds   []evictionapi.Threshold
    }
    
    type Status struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/runtime/defs_freebsd.go

    #include <sys/ucontext.h>
    #include <sys/umtx.h>
    #include <sys/_umtx.h>
    #include <sys/rtprio.h>
    #include <sys/thr.h>
    #include <sys/_sigset.h>
    #include <sys/unistd.h>
    #include <sys/sysctl.h>
    #include <sys/cpuset.h>
    #include <sys/param.h>
    #include <sys/vdso.h>
    */
    import "C"
    
    // Local consts.
    const (
    	_NBBY            = C.NBBY            // Number of bits in a byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. cni/pkg/ipset/ipset.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ipset
    
    import (
    	"errors"
    	"fmt"
    	"net/netip"
    )
    
    type IPSet struct {
    	V4Name string
    	V6Name string
    	Prefix string
    	Deps   NetlinkIpsetDeps
    }
    
    const (
    	V4Name = "%s-v4"
    	V6Name = "%s-v6"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. testing/performance/docs/performance-bisect.md

            runner.targetVersions = ['2.14']
            runner.useDaemon = true
    ...
            where:
            // source file change causes a single project, single source set, single file to be recompiled.
            // header file change causes a single project, two source sets, some files to be recompiled.
            // recompile all sources causes all projects, all source sets, all files to be recompiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinter.java

                List<Failure> causes = failure.getCauses();
                if (causes.size() == 1) {
                    printRecursively("Caused by: ", prefix, failure, causes.get(0));
                } else {
                    for (int i = 0; i < causes.size(); i++) {
                        printRecursively(String.format("Cause %s: ", i + 1), prefix, failure, causes.get(i));
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. 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)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractFailure.java

        final String description;
        final List<String> causes;
    
        public AbstractFailure(String description, List<String> causes) {
            this.description = description;
            this.causes = causes;
        }
    
        @Override
        public void assertHasCause(String message) {
            if (!causes.contains(message)) {
                throw new AssertionFailedError(String.format("Expected cause '%s' not found in %s", message, causes));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestFailure.java

        private final TestFailureDetails details;
    
        private final List<TestFailure> causes;
    
        public DefaultTestFailure(Throwable rawFailure, TestFailureDetails details, List<TestFailure> causes) {
            this.rawFailure = rawFailure;
            this.details = details;
            this.causes = causes;
        }
    
        @Override
        public Throwable getRawFailure() {
            return rawFailure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top