Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 364 for uuid4 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "does not re-download missing artifacts")
        def "redownloads deleted HTTP script plugin resources"() {
            given:
            def uuid = UUID.randomUUID()
            def uniqueFileName = "external-${uuid}.gradle"
            def script = file(uniqueFileName) << """
                task customTask
            """
            buildFile << """
                apply from: '$server.uri/$uniqueFileName'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    public class ReportDaemonStatusClient {
        private static final Logger LOGGER = Logging.getLogger(DaemonClient.class);
        private final DaemonRegistry daemonRegistry;
        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final ReportStatusDispatcher reportStatusDispatcher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package zipkin
    
    import (
    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"github.com/google/uuid"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    // Package kmsv2 transforms values for storage at rest using a Envelope v2 provider
    package kmsv2
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	mock "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2"
    	"k8s.io/component-base/metrics/testutil"
    	kmsservice "k8s.io/kms/pkg/service"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Rule
    import org.junit.Test
    import org.mockito.ArgumentCaptor
    import org.mockito.ArgumentMatchers.any
    import java.util.UUID
    
    
    class ConfigurationCacheBuildOperationsTest {
        @JvmField
        @Rule
        val testDirectoryProvider = TestNameTestDirectoryProvider(javaClass)
    
        @Test
        fun `sets progress display name on store`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/settings.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	return out
    }
    
    // Settings is the set of arguments to the test driver.
    type Settings struct {
    	// Name of the test
    	TestID string
    
    	RunID uuid.UUID
    
    	// Do not cleanup the resources after the test run.
    	NoCleanup bool
    
    	// Indicates that the tests are running in CI Mode
    	CIMode bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top