Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for uuid3 (0.03 sec)

  1. pkg/kubelet/winstats/perfcounter_nodestats_test.go

    	assert.NoError(t, err)
    	assert.Equal(t, uint64(100), machineInfo.MemoryCapacity)
    	hostname, _ := os.Hostname()
    	assert.Equal(t, hostname, machineInfo.MachineID)
    
    	// Check if it's an UUID.
    	_, err = uuid.Parse(machineInfo.SystemUUID)
    	assert.NoError(t, err)
    
    	id, err := strconv.Atoi(machineInfo.BootID)
    	assert.NoError(t, err)
    	assert.NotZero(t, id)
    }
    
    func TestGetVersionInfo(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

        private static final int STOP_TIMEOUT_SECONDS = 30;
        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final StopDispatcher stopDispatcher;
    
        public DaemonStopClient(DaemonConnector connector, IdGenerator<UUID> idGenerator) {
            this.connector = connector;
            this.idGenerator = idGenerator;
            this.stopDispatcher = new StopDispatcher();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClientServices.java

    import org.gradle.launcher.daemon.configuration.DaemonParameters;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.context.DaemonRequestContext;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    /**
     * Takes care of instantiating and wiring together the services required by the single-use daemon client.
     */
    public class SingleUseDaemonClientServices extends DaemonClientServicesSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

    import org.gradle.launcher.daemon.protocol.Build;
    import org.gradle.launcher.exec.BuildActionParameters;
    import org.gradle.launcher.exec.BuildActionResult;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    public class SingleUseDaemonClient extends DaemonClient {
        public static final String MESSAGE = "To honour the JVM settings for this build a single-use Daemon process will be forked.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

        }
    
        def "clear the old entry with same port when storing new daemon info"() {
            given:
            MultiChoiceAddress address1 = new MultiChoiceAddress(UUID.randomUUID(), 54321, [InetAddress.localHost])
            MultiChoiceAddress address2 = new MultiChoiceAddress(UUID.randomUUID(), 54321, [InetAddress.localHost])
            registry.store(new DaemonInfo(address1, daemonContext(), "password".bytes, Idle))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/services/MessagingServices.java

    import java.util.UUID;
    
    /**
     * A factory for a set of messaging services. Provides the following services:
     *
     * <ul>
     *
     * <li>{@link MessagingClient}</li>
     *
     * <li>{@link MessagingServer}</li>
     *
     * </ul>
     */
    public class MessagingServices implements ServiceRegistrationProvider {
        private final IdGenerator<UUID> idGenerator = new UUIDGenerator();
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/projects/StageProject.kt

        stage: Stage,
        previousPerformanceTestPasses: List<PerformanceTestsPass>
    ) : Project({
        this.id("${model.projectId}_Stage_${stage.stageName.id}")
        this.uuid = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stage.stageName.uuid}"
        this.name = stage.stageName.stageName
        this.description = stage.stageName.description
    }) {
        val specificBuildTypes: List<BaseGradleBuildType>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/SystemPropertiesIntegrationTest.groovy

            assert System.getProperty(notsetPropertyName) == null
        }
    
        def "withProperty and withProperties are never run concurrently"() {
            final int threadCount = 100
            def id = UUID.randomUUID().toString()
    
            when:
            async {
                threadCount.times { i ->
                    start {
                        SystemProperties.instance.withSystemProperty(id, "bar", {"baz"})
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                    buildProjectClassTimes[it.asId(MASTER_CHECK_CONFIGURATION)]
                }?.also {
                    println("No test statistics found for ${testCoverage.asName()} (${testCoverage.uuid}), re-using the data from ${foundTestCoverage.asName()} (${foundTestCoverage.uuid})")
                }
            }
        }
    }
    
    fun onlyNativeSubprojectsForIntelMacs(
        testCoverage: TestCoverage,
        subprojectName: String
    ): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/WellKnownClassLoaderRegistry.java

    import org.gradle.internal.classloader.ClassLoaderSpec;
    import org.gradle.internal.classloader.ClassLoaderUtils;
    
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    
    /**
     * A {@link PayloadClassLoaderRegistry} that maps classes loaded by several well known ClassLoaders: the JVM platform, Gradle core and Gradle plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top