Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for cpuset (0.17 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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The Causes array includes more details associated with the StatusReason
    	// failure. Not all StatusReasons may provide detailed causes.
    	// +optional
    	// +listType=atomic
    	Causes []StatusCause `json:"causes,omitempty" protobuf:"bytes,4,rep,name=causes"`
    	// If specified, the time in seconds before the operation should be retried. Some errors may indicate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                }
            """
    
            file("testlib/build.gradle") << """
                dependencies {
                    api project(':common') // cycle causes resolution to fail, but shouldn't
                }
            """
    
            file("common/build.gradle") << """
                dependencies {
                    testImplementation project(':testlib')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/controller/history"
    	"k8s.io/utils/ptr"
    )
    
    // noopRecorder is an EventRecorder that does nothing. record.FakeRecorder has a fixed
    // buffer size, which causes tests to hang if that buffer's exceeded.
    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // This causes undefined behavior, but supported compilers react in
    // the way we intend.
    namespace std {
    namespace tr1 {
    using ::std::get;
    using ::std::make_tuple;
    using ::std::tuple;
    using ::std::tuple_element;
    using ::std::tuple_size;
    }
    }
    
    # elif GTEST_OS_SYMBIAN
    
    // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string uid = 6;
    
      // The Causes array includes more details associated with the StatusReason
      // failure. Not all StatusReasons may provide detailed causes.
      // +optional
      repeated StatusCause causes = 4;
    
      // If specified, the time in seconds before the operation should be retried. Some errors may indicate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string uid = 6;
    
      // The Causes array includes more details associated with the StatusReason
      // failure. Not all StatusReasons may provide detailed causes.
      // +optional
      // +listType=atomic
      repeated StatusCause causes = 4;
    
      // If specified, the time in seconds before the operation should be retried. Some errors may indicate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            List<Throwable> causes = new ArrayList<Throwable>()
            while (exception != null) {
                causes.add(exception)
                exception = exception.cause
            }
            assertThat(causes, CoreMatchers.hasItem(hasMessage(startsWith(message))))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            }
        }
    
        private static List<Failure> toFailures(List<? extends InternalFailure> causes) {
            if (causes == null) {
                return null;
            }
            List<Failure> failures = new ArrayList<>();
            for (InternalFailure cause : causes) {
                failures.add(toFailure(cause));
            }
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top