Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for uuid3 (1.24 sec)

  1. 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)
  2. pkg/scheduler/framework/runtime/registry_test.go

    	}
    
    	return true
    }
    
    type mockNoopPlugin struct {
    	uuid string
    }
    
    func (p *mockNoopPlugin) Name() string {
    	return p.uuid
    }
    
    func NewMockNoopPluginFactory() PluginFactory {
    	uuid := uuid.New().String()
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &mockNoopPlugin{uuid}, nil
    	}
    }
    
    func TestMerge(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpIncomingConnector.java

    import java.util.Collections;
    import java.util.List;
    import java.util.UUID;
    
    public class TcpIncomingConnector implements IncomingConnector {
        private static final Logger LOGGER = LoggerFactory.getLogger(TcpIncomingConnector.class);
        private final ExecutorFactory executorFactory;
        private final InetAddressFactory addressFactory;
        private final IdGenerator<UUID> idGenerator;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init_test.go

    limitations under the License.
    */
    
    package filters
    
    import (
    	"fmt"
    	"net/http"
    	"net/http/httptest"
    	"testing"
    
    	"github.com/google/uuid"
    	"k8s.io/apiserver/pkg/audit"
    )
    
    func TestWithAuditID(t *testing.T) {
    	largeAuditID := fmt.Sprintf("%s-%s", uuid.New().String(), uuid.New().String())
    	tests := []struct {
    		name             string
    		newAuditIDFunc   func() string
    		auditIDSpecified string
    		auditIDExpected  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top