Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,431 for uniqueId (0.17 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

                this
            }
    
            int getTestCount() {
                List<Integer> counts = testClassResults*.testCount
                List<Integer> uniques = counts.unique()
                if (uniques.size() == 1) {
                    return uniques.first()
                }
                throw new IllegalStateException("Multiple different test counts ${counts}")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentResult.java

    /**
     * The result of resolving a component.
     *
     * @since 2.0
     */
    public interface ComponentResult {
        /**
         * <p>Returns the identifier of this component. This can be used to uniquely identify the component within the current build, but it is not necessarily unique between
         * different builds.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 28 14:22:52 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/resources/Resource.java

         *
         * @return human readable name, should not be null
         */
        String getDisplayName();
    
        /**
         * Uniform resource identifier that uniquely describes this resource
         *
         * @return unique URI, should not be null
         */
        URI getURI();
    
        /**
         * Short name that concisely describes this resource
         *
         * @return concise base name, should not be null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementAdapter.java

         */
        String getName(T element);
    
        /**
         * Returns the original identity name of the given element which
         * may be used to uniquely identify the element if the name returned
         * by getName() is not unique in the hierarchy.
         *
         * @param element the element, cannot be null
         * @return the identity name of the element, never null
         */
        String getIdentityName(T element);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    */
    
    package user
    
    // Info describes a user that has been authenticated to the system.
    type Info interface {
    	// GetName returns the name that uniquely identifies this user among all
    	// other active users.
    	GetName() string
    	// GetUID returns a unique value for a particular user that will change
    	// if the user is removed from the system and another user is added with
    	// the same name.
    	GetUID() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    3. <<nameddomainobjectlist,`NamedDomainObjectList<T>`>>: Similar to `NamedDomainObjectSet`, but represents a list of objects where order matters. Each element has a unique name associated with it, and you can access elements by index as well as by name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/testing/match.go

    			}
    		}
    		i++
    	}
    
    	a = append(a, s)
    	if len(b) == 0 {
    		return a
    	}
    	return append(b, a)
    }
    
    // unique creates a unique name for the given parent and subname by affixing it
    // with one or more counts, if necessary.
    func (m *matcher) unique(parent, subname string) string {
    	base := parent + "/" + subname
    
    	for {
    		n := m.subNames[base]
    		if n < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top