Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 500 for uuid3 (0.03 sec)

  1. internal/grid/connection.go

    	LastPong int64
    
    	// State of the connection (atomic)
    	state State
    
    	// Non-atomic
    	Remote string
    	Local  string
    
    	// ID of this connection instance.
    	id uuid.UUID
    
    	// Remote uuid, if we have been connected.
    	remoteID    *uuid.UUID
    	reconnectMu sync.Mutex
    
    	// Context for the server.
    	ctx context.Context
    
    	// Active mux connections.
    	outgoing *xsync.MapOf[uint64, *muxClient]
    
    	// Incoming streams
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. pkg/test/echo/server/endpoint/http.go

    }
    
    // nolint: interfacer
    func writeError(out *bytes.Buffer, msg string) {
    	epLog.Warn(msg)
    	_, _ = out.WriteString(msg + "\n")
    }
    
    func (h *httpHandler) echo(w http.ResponseWriter, r *http.Request, id uuid.UUID) {
    	body := bytes.Buffer{}
    
    	if err := r.ParseForm(); err != nil {
    		writeError(&body, "ParseForm() error: "+err.Error())
    	}
    
    	// If the request has form ?delay=[:duration] wait for duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    
    import static org.gradle.util.internal.CollectionUtils.collect;
    
    /**
     * A VisualStudio project represents a set of binaries for a component that may vary in build type and target platform.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. cmd/storage-interface.go

    	// Returns the entire endpoint.
    	Endpoint() Endpoint
    
    	// Close the disk, mark it purposefully closed, only implemented for remote disks.
    	Close() error
    
    	// Returns the unique 'uuid' of this disk.
    	GetDiskID() (string, error)
    
    	// Set a unique 'uuid' for this disk, only used when
    	// disk is replaced and formatted.
    	SetDiskID(id string)
    
    	// Returns healing information for a newly replaced disk,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    					break
    				}
    				createdObjectMeta, err := meta.Accessor(watchEvent.Object)
    				if err != nil {
    					t.Fatal(err)
    				}
    				// it should have a UUID
    				if len(createdObjectMeta.GetUID()) == 0 {
    					t.Errorf("missing uuid: %#v", watchEvent.Object)
    				}
    				if e, a := ns, createdObjectMeta.GetNamespace(); e != a {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonExpirationStrategyTest.groovy

            // Start with a new registry on each test.
            registry = new EmbeddedDaemonRegistry()
        }
    
        DaemonInfo registerDaemon(DaemonStateControl.State state, long lastIdle = -1) {
            final String uid = UUID.randomUUID().toString()
            final int id = registry.getAll().size() + 1
            final long lastIdleTime = lastIdle == -1L ? id * 1000 : lastIdle;
            Address daemonAddress = createAddress(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.UUID;
    
    import javax.servlet.http.Cookie;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpSession;
    
    import org.codelibs.core.collection.LruHashMap;
    import org.codelibs.core.lang.StringUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

         * hierarchy delimiters. As such, it can be safely used for task or file names.
         *
         * Implementation should attempt to produce a somewhat human consumable name (eg not a uuid).
         */
        String getProjectScopedName();
    
        /**
         * The path of the project that contains this component.
         */
        String getProjectPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

    import org.gradle.tooling.internal.provider.ForwardStdInToThisProcess;
    import org.gradle.tooling.internal.provider.RunInProcess;
    
    import java.lang.management.ManagementFactory;
    import java.util.Properties;
    import java.util.UUID;
    
    class BuildActionsFactory implements CommandLineActionCreator {
        private final BuildEnvironmentConfigurationConverter buildEnvironmentConfigurationConverter;
        private final ServiceRegistry loggingServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaIncrementalCompilationWithCachingIntegrationTest.groovy

                withBuildCache().run "clean", language.compileTaskName
            }
            cachedBuild.groupedOutput.task(":compileJava").outcome == "FROM_CACHE"
    
            when:
            source("class A { /* ${UUID.randomUUID()} */ }")
            withBuildCache().run language.compileTaskName, "--info"
    
            then:
            outputs.recompiledClasses("A")
        }
    
        def "classpath analysis is restored from the build cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top