Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for uuid3 (0.23 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Stop.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 Stop extends Command {
        public Stop(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
    - 813 bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/StopWhenIdle.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 StopWhenIdle extends Command {
        public StopWhenIdle(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
    - 829 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/net/UuidUtil.java

        private static final String BASE = StringUtil.toHex(getAddress()) + StringUtil.toHex(System.identityHashCode(RANDOM));
    
        /**
         * UUIDを作成します。
         *
         * @return UUIDの文字列
         */
        public static String create() {
            final StringBuilder buf = new StringBuilder(BASE.length() * 2);
            buf.append(BASE);
            final int lowTime = (int) (System.currentTimeMillis() >> 32);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

    public class NotifyDaemonAboutChangedPathsClient {
        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final DaemonRegistry daemonRegistry;
    
        public NotifyDaemonAboutChangedPathsClient(DaemonConnector connector, IdGenerator<UUID> idGenerator, DaemonRegistry daemonRegistry) {
            this.connector = connector;
            this.idGenerator = idGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/InvalidateVirtualFileSystemAfterChange.java

     */
    
    package org.gradle.launcher.daemon.protocol;
    
    import java.util.List;
    import java.util.UUID;
    
    public class InvalidateVirtualFileSystemAfterChange extends Command {
        private final List<String> changedPaths;
    
        public InvalidateVirtualFileSystemAfterChange(List<String> changedPaths, UUID identifier, byte[] token) {
            super(identifier, token);
            this.changedPaths = changedPaths;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    		},
    		// Use govalidator url regex to estimate, since ParseRequestURI
    		// doesnt use regex
    		MaxRegexSize: len(govalidator.URL),
    	},
    	"uuid": {
    		Name: "uuid",
    		ValidateFunc: func(s string) []string {
    			if !strfmt.Default.Validates("uuid", s) {
    				return []string{"does not match the UUID format"}
    			}
    			return nil
    		},
    		MaxRegexSize: len(strfmt.UUIDPattern),
    	},
    	"byte": {
    		Name: "byte",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. cmd/metacache-marker.go

    			if err != nil {
    				o.ID = mustGetUUID()
    				o.Create = true
    				continue
    			}
    			o.set = int(v)
    		default:
    			// Ignore unknown
    		}
    	}
    }
    
    // encodeMarker will encode a uuid and return it as a marker.
    // uuid cannot contain '[', ':' or ','.
    func (o listPathOptions) encodeMarker(marker string) string {
    	if o.ID == "" {
    		// Mark as returning listing...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. cmd/mrf.go

    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    					healObject(u.bucket, u.object, u.versionID, scan)
    				}
    			}
    
    			wait()
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Build.java

    import org.gradle.launcher.exec.BuildActionParameters;
    
    import java.util.UUID;
    
    public class Build extends Command {
        private final BuildAction action;
        private final GradleLauncherMetaData buildClientMetaData;
        private final long startTime;
        private final boolean interactive;
        private final BuildActionParameters parameters;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServices.java

    import org.gradle.launcher.daemon.context.DaemonCompatibilitySpec;
    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 daemon client.
     */
    public class DaemonClientServices extends DaemonClientServicesSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top