Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 366 for uuid4 (0.03 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/MultiChoiceAddress.java

    import java.net.InetAddress;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    public class MultiChoiceAddress implements InetEndpoint {
        private final UUID canonicalAddress;
        private final int port;
        private final List<InetAddress> candidates;
    
        public MultiChoiceAddress(UUID canonicalAddress, int port, List<InetAddress> candidates) {
            this.canonicalAddress = canonicalAddress;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. docs/debugging/reorder-disks/main.go

    		}
    		mami, err := getMajorMinor(diskName)
    		if err != nil {
    			log.Printf("skipping `%s`, err: %v\n", diskName, err)
    			continue
    		}
    		devName := mountMap[mami]
    		uuid := uuidMap[devName]
    		fmt.Printf("UUID=%s\t%s\txfs\tdefaults,noatime\t0\t2\n", uuid, expectedDiskName)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/MultiChoiceAddressSerializer.java

    import java.net.InetAddress;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    public class MultiChoiceAddressSerializer implements Serializer<MultiChoiceAddress> {
        @Override
        public MultiChoiceAddress read(Decoder decoder) throws IOException {
            UUID canonicalAddress = new UUID(decoder.readLong(), decoder.readLong());
            int port = decoder.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

                        visitor.spec = new VisitableURLClassLoader.Spec("unknown-loader", CollectionUtils.toList(visitor.classPath));
                    }
                }
    
                UUID uuid = UUID.randomUUID();
                ClassLoaderDetails details = new ClassLoaderDetails(uuid, visitor.spec);
                for (ClassLoader parent : visitor.parents) {
                    details.parents.add(getDetails(parent));
                }
                return details;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/credentials/CredentialsToStringSpec.groovy

            credentials.setUsername(UUID.randomUUID().toString())
            credentials.setPassword(secretValue)
            return credentials
        }
    
        private static DefaultHttpHeaderCredentials makeHttpHeaderCredentials(String secretValue) {
            def credentials = new DefaultHttpHeaderCredentials()
            credentials.setName(UUID.randomUUID().toString())
            credentials.setValue(secretValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. .idea/inspectionProfiles/Gradle.xml

            <constraint name="TARGET" within="" contains="" />
          </replaceConfiguration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. cmd/xl-storage-free-version.go

    // Free-version will be added if fi.VersionID has transitioned.
    func (x *xlMetaV2) AddFreeVersion(fi FileInfo) error {
    	var uv uuid.UUID
    	var err error
    	switch fi.VersionID {
    	case "", nullVersionID:
    	default:
    		uv, err = uuid.Parse(fi.VersionID)
    		if err != nil {
    			return err
    		}
    	}
    
    	for i, version := range x.versions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 02 05:11:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServicesSupport.java

        }
    
        @Provides
        DaemonStopClient createDaemonStopClient(DaemonConnector connector, IdGenerator<UUID> idGenerator) {
            return new DaemonStopClient(connector, idGenerator);
        }
    
        @Provides
        NotifyDaemonAboutChangedPathsClient createNotifyDaemonAboutChangedPathsClient(DaemonConnector connector, IdGenerator<UUID> idGenerator, DaemonRegistry daemonRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
        private val name: String,
        private val scenarios: List<PerformanceScenario>
    ) : PerformanceTestProjectSpec {
        override
        fun asConfigurationId(model: CIBuildModel) =
            "${model.projectId}_PerformanceTest$uuid"
    
        override
        fun asName(): String =
            "Flamegraphs for $name"
    
        override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/ReportStatus.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    import java.util.UUID;
    
    public class ReportStatus extends Command {
        public ReportStatus(UUID identifier, byte[] token) {
            super(identifier, token);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 830 bytes
    - Viewed (0)
Back to top