Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for uuid3 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/test_tutorial/test_extra_data_types/test_tutorial001.py

                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
                                    "format": "uuid",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                        "requestBody": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/AbstractSignatureVerificationIntegrationTest.groovy

                ring = createKeyRing()
            }
            ring
        }
    
        private SimpleKeyRing createKeyRing() {
            createSimpleKeyRing(temporaryFolder.createDir("keys-${UUID.randomUUID()}"))
        }
    
        protected SimpleKeyRing newKeyRingFromResource(String publicKeyResource, String secretKeyResource) {
            createSimpleKeyRingFromResource(publicKeyResource, secretKeyResource)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 13:00:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.server.stats.DaemonRunningStats;
    import org.gradle.launcher.exec.BuildExecutor;
    import org.gradle.tooling.internal.provider.action.BuildActionSerializer;
    
    import java.io.File;
    import java.util.UUID;
    
    import static org.gradle.internal.FileUtils.canonicalize;
    
    /**
     * Takes care of instantiating and wiring together the services required by the daemon server.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            given:
            WorkerConfig original = new WorkerConfig(
                LogLevel.ERROR,
                true,
                "/path/to/user/home",
                new MultiChoiceAddress(new UUID(123, 456), 789, [InetAddress.getByName("example.com")]),
                987,
                "name",
                new TestAction("value"),
                NativeServicesMode.ENABLED
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_extra_data_types/test_tutorial001_an.py

                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
                                    "format": "uuid",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                        "requestBody": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top