Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,061 for machine1 (0.18 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    								PageSize: pageSize1Gb,
    								NumPages: 1,
    							},
    						},
    					},
    				},
    			},
    			expectedError: fmt.Errorf("[memorymanager] the expected machine state is different from the real one"),
    		},
    		{
    			description: "should fail when machine state does not have memory resource",
    			machineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    Depending on the operating system, you run `gradlew` or `gradlew.bat` instead of the `gradle` command.
    
    Typical Gradle invocation:
    
    ----
    $ gradle build
    ----
    
    To run the Wrapper on a Linux or OSX machine:
    
    ----
    $ ./gradlew build
    ----
    
    To run the Wrapper on Windows PowerShell:
    
    ----
    $ .\gradlew.bat build
    ----
    
    The command is run in the same directory that the Wrapper is located in.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.18.md

    - Regenerate protobuf code to fix CVE-2021-3121 ([#100514](https://github.com/kubernetes/kubernetes/pull/100514), [@joelsmith](https://github.com/joelsmith)) [SIG API Machinery, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation and Node]
    
    ### Feature
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  4. releasenotes/notes/vm-cleanup-iptables.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29556
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 09 16:00:57 UTC 2021
    - 193 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/byteorder.go

    		uint64(b[3])<<32 | uint64(b[2])<<40 | uint64(b[1])<<48 | uint64(b[0])<<56
    }
    
    // hostByteOrder returns littleEndian on little-endian machines and
    // bigEndian on big-endian machines.
    func hostByteOrder() byteOrder {
    	switch runtime.GOARCH {
    	case "386", "amd64", "amd64p32",
    		"alpha",
    		"arm", "arm64",
    		"loong64",
    		"mipsle", "mips64le", "mips64p32le",
    		"nios2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 19:48:07 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/regexp/regexp.go

    	matchPool [len(matchSize)]sync.Pool
    )
    
    // get returns a machine to use for matching re.
    // It uses the re's machine cache if possible, to avoid
    // unnecessary allocation.
    func (re *Regexp) get() *machine {
    	m, ok := matchPool[re.mpool].Get().(*machine)
    	if !ok {
    		m = new(machine)
    	}
    	m.re = re
    	m.p = re.prog
    	if cap(m.matchcap) < re.matchcap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.${currentHostOperatingSystemFamilyDsl}", "machines.${currentHostOperatingSystemFamilyDsl}.architecture('foo')")
    
            expect:
            fails taskNameToAssembleDevelopmentBinary
            result.assertTasksExecuted()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/README.md

    disabling kube-dns, Service Account mount, etc. For more information around VM onboarding,
    refer to this [doc](https://istio.io/latest/docs/setup/install/virtual-machine/).
    
    To deploy an echo instance as a VM
    1. Set the ports for the VMs.
    1. Set `DeployAsVm` to be true in `echo.Config`.
    We used DefaultVMImage in the example.
    
    For example,
    
    ```go
    ports := []echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/src/test/java/org/gradle/samples/ExampleUnitTest.java

    package org.gradle.samples;
    
    import org.junit.Test;
    
    import static org.junit.Assert.*;
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
     */
    public class ExampleUnitTest {
        @Test
        public void addition_isCorrect() {
            assertEquals(4, 2 + 2);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasCause("Failed to calculate the value of task ':compileJava' property 'javaCompiler'")
                   .assertHasCause("Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=14, vendor=ADOPTIUM, implementation=J9} ${getFailureMessageBuildPlatform()}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top