Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 785 for Identifier (0.17 sec)

  1. pkg/cluster/id.go

    // limitations under the License.
    
    package cluster
    
    import "istio.io/istio/pkg/util/identifier"
    
    // ID is the unique identifier for a k8s cluster.
    type ID string
    
    func (id ID) Equals(other ID) bool {
    	return identifier.IsSameOrEmpty(string(id), string(other))
    }
    
    func (id ID) String() string {
    	return string(id)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 24 22:10:04 UTC 2021
    - 866 bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/common.go

    		{
    			Resource: &ast.Resource{Identifier: "Address", Kind: "Address", Version: "internal", Group: "internal"},
    		},
    		{
    			Resource: &ast.Resource{Identifier: "DNSName", Kind: "DNSName", Version: "internal", Group: "internal"},
    		},
    	}, inp.Entries...)
    
    	sort.Slice(kindEntries, func(i, j int) bool {
    		return strings.Compare(kindEntries[i].Resource.Identifier, kindEntries[j].Resource.Identifier) < 0
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ProjectIdentifier.java

         *
         * @return the path, never null
         * @since 3.3
         */
        String getProjectPath();
    
        /**
         * Identifier of the build this project is a member of.
         *
         * @return build identifier, never null.
         */
        BuildIdentifier getBuildIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryTest.groovy

            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            1 * resolver.operatingSystem >> JansiOperatingSystemSupport.MAC_OS_X.identifier
            0 * resolver.platform
            jansiLibrary.platform == JansiOperatingSystemSupport.MAC_OS_X.identifier
            jansiLibrary.filename == MAC_OSX_LIB_FILENAME
            jansiLibrary.resourcePath ==  "/META-INF/native/" + jansiLibrary.path
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/AsyncEventBus.java

       * identifier} as the bus's name for logging purposes.
       *
       * @param identifier short name for the bus, for logging purposes.
       * @param executor Executor to use to dispatch events. It is the caller's responsibility to shut
       *     down the executor after the last event has been posted to this event bus.
       */
      public AsyncEventBus(String identifier, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

    public interface ArtifactResolutionDetails {
        /**
         * The identifier of the module being looked for in this repository
         * @return the module identifier
         */
        ModuleIdentifier getModuleId();
    
        /**
         * The module component identifier of the module being looked for in this repository,
         * which includes a version.
         * @return the module version identifier. If it's a version listing, then this will
         * be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ParameterAwareBuildControllerAdapterTest.groovy

            then:
            result == modelView
    
            and:
            1 * adapter.unpack(modelElement) >> targetElement
            1 * delegate.getModel(targetElement, _, null) >> { def target, ModelIdentifier identifier, parameter ->
                assert identifier.name == 'GradleBuild'
                assert parameter == null
                return Stub(BuildResult) {
                    getModel() >> model
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

         */
        void resolveNextConflict(Action<RESULT> resolutionAction);
    
        /**
         * Indicates if the identifier is a known participant in a conflict
         *
         * @param id the identifier to check
         * @return {@code true} if the identifier is part of a conflict, {@code false} otherwise
         */
        boolean hasKnownConflictFor(ModuleVersionIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/internal/types/testdata/examples/methods.go

    // is declared through that receiver declaration, it must be an identifier.
    // It cannot possibly be some other type because the receiver type is not
    // instantiated with concrete types, it is standing for the parameterized
    // receiver type.
    func (t T1[[ /* ERROR "must be an identifier" */ ]int]) m2() {}
    
    // Note that using what looks like a predeclared identifier, say int,
    // as type parameter in this situation is deceptive and considered bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintChanges.java

            .put(AbsolutePathFingerprintingStrategy.IDENTIFIER, AbsolutePathFingerprintCompareStrategy.INSTANCE)
            .put(NameOnlyFingerprintingStrategy.IDENTIFIER, NormalizedPathFingerprintCompareStrategy.INSTANCE)
            .put(RelativePathFingerprintingStrategy.IDENTIFIER, NormalizedPathFingerprintCompareStrategy.INSTANCE)
            .put(IgnoredPathFingerprintingStrategy.IDENTIFIER, IgnoredPathCompareStrategy.INSTANCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top