Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 288 for uuid3 (0.17 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

    class PublishNightlyDocumentation(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild(
        promotedBranch = branch.branchName,
        promoteTask = "publishBranchDocs",
        triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid,
        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_NightlyDocumentation")
            name = "Nightly Documentation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      # find uuid for actual_device
      local myuuid
      myuuid=$(find -L /dev/disk/by-uuid -maxdepth 1 -samefile /dev/"${actual_device}" -printf '%P')
      # myuuid should be the uuid of the device as found in /dev/disk/by-uuid/
      if [[ -z "${myuuid}" ]]; then
        echo "Failed to get a uuid for device ${actual_device} when mounting." >&2
        exit 2
      fi
    
      # bindpoint should be the full path of the to-be-bound device
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. cmd/format-erasure.go

    	formatErasureVersionV3DistributionAlgoV2 = "SIPMOD"
    
    	// Distributed algorithm used, with EC:4 default parity
    	formatErasureVersionV3DistributionAlgoV3 = "SIPMOD+PARITY"
    )
    
    // Offline disk UUID represents an offline disk.
    const offlineDiskUUID = "ffffffff-ffff-ffff-ffff-ffffffffffff"
    
    // Used to detect the version of "xl" format.
    type formatErasureVersionDetect struct {
    	Erasure struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top