Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,431 for uniqueId (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

         */
        String getName();
    
        /**
         * Returns an identifying path for this project in the build tree.
         */
        Path getIdentityPath();
    
        /**
         * Returns a path for this project within its containing build. These are not unique within a build tree. Use instead {@link #getIdentityPath()} to uniquely this project.
         */
        Path getProjectPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedSet.java

        checkElementsNotNull(contents, n);
        Arrays.sort(contents, 0, n, comparator);
        int uniques = 1;
        for (int i = 1; i < n; i++) {
          E cur = contents[i];
          E prev = contents[uniques - 1];
          if (comparator.compare(cur, prev) != 0) {
            contents[uniques++] = cur;
          }
        }
        Arrays.fill(contents, uniques, n, null);
        return new RegularImmutableSortedSet<>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      absl::string_view dump_file_prefix_;
      // Map from pass ptr to dump files and pass number.
      //
      // Each pass has unique and stable pointer, even for passes with the same
      // name. E.g. a PassManager could have multiple Canonicalizer passes.
      // We use this property to uniquely determine a Pass in a PassManager.
      //
      // If multiple consecutive func passes are applied to a Module. PassManager
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_UserInfo = map[string]string{
    	"":         "UserInfo holds the information about the user needed to implement the user.Info interface.",
    	"username": "The name that uniquely identifies this user among all active users.",
    	"uid":      "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    	}
    	return windowsPath
    }
    
    // GetUniquePodName returns a unique identifier to reference a pod by
    func GetUniquePodName(pod *v1.Pod) types.UniquePodName {
    	return types.UniquePodName(pod.UID)
    }
    
    // GetUniqueVolumeName returns a unique name representing the volume/plugin.
    // Caller should ensure that volumeName is a name/ID uniquely identifying the
    // actual backing device, directory, path, etc. for a particular volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSet.java

              // Came to an empty slot. Put the element here.
              elements[uniques++] = element;
              table[index] = element;
              hashCode += hash;
              break;
            } else if (value.equals(element)) {
              break;
            }
          }
        }
        Arrays.fill(elements, uniques, n, null);
        if (uniques == 1) {
          // There is only one element or elements are all duplicates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

    }
    
    // UserInfo holds the information about the user needed to implement the
    // user.Info interface.
    message UserInfo {
      // The name that uniquely identifies this user among all active users.
      // +optional
      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/internal/profile/graph.go

    // NodePtrSet is a collection of nodes. Trimming a graph or tree requires a set
    // of objects which uniquely identify the nodes to keep. In a graph, NodeInfo
    // works as a unique identifier; however, in a tree multiple nodes may share
    // identical NodeInfos. A *Node does uniquely identify a node so we can use that
    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

    }
    
    // UserInfo holds the information about the user needed to implement the
    // user.Info interface.
    message UserInfo {
      // The name that uniquely identifies this user among all active users.
      // +optional
      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pkg/kube/krt/README.md

    However, these objects are expected to have some properties, depending on their usage.
    These are *not* expressed as generic constraints due to limitations in Go's type system.
    
    * Each object `T` must have a unique `Key[T]` (which is just a typed wrapper around `string`) that uniquely identifies the object.
        Default implementations exist for Kubernetes objects, Istio `config.Config` objects, and `ResourceName() string` implementations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top