Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for toidentifier (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultComponentSelectorConverter.java

                DefaultProjectComponentSelector projectSelector = (DefaultProjectComponentSelector) selector;
                ProjectComponentIdentifier projectId = projectSelector.toIdentifier();
                LocalComponentGraphResolveState projectComponent = localComponentRegistry.getComponent(projectId);
                ModuleVersionIdentifier moduleVersionId = projectComponent.getModuleVersionId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:59 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

            return calculatedValueFactory.create(toDisplayName(identifier), () -> resolveModule((ModuleComponentIdentifier) identifier, componentOverrideMetadata));
        }
    
        @Override
        public boolean isFetchingMetadataCheap(ComponentIdentifier identifier) {
            if (identifier instanceof ModuleComponentIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/templates/collections.go.tmpl

    {{ .CustomImport }}
      "reflect"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    {{- end}}
    )
    
    var (
    {{ range .Entries }}
    	{{ .Resource.Identifier }} = resource.Builder {
    			Identifier: "{{ .Resource.Identifier }}",
    			Group: "{{ .Resource.Group }}",
    			Kind: "{{ .Resource.Kind }}",
    			Plural: "{{ .Resource.Plural }}",
    			Version: "{{ .Resource.Version }}",
    			{{- if .Resource.VersionAliases }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirArrayOfSymbolProvider.kt

        internal val arrayOf = Name.identifier("arrayOf")
        internal val arrayTypeToArrayOfCall = run {
            StandardClassIds.primitiveArrayTypeByElementType.values + StandardClassIds.unsignedArrayTypeByElementType.values
        }.associateWith { it.correspondingArrayOfCallFqName() }
    
        private fun ClassId.correspondingArrayOfCallFqName(): Name =
            Name.identifier("${shortClassName.identifier.replaceFirstChar(Char::lowercaseChar)}Of")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pkg/config/schema/collections/collections.agent.gen.go

    	istioioapisecurityv1beta1 "istio.io/api/security/v1beta1"
    	istioioapitelemetryv1alpha1 "istio.io/api/telemetry/v1alpha1"
    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/config/schema/collections/collections.gen.go

    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    	"istio.io/istio/pkg/config/validation/envoyfilter"
    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Command.java

     */
    public class Command extends Message implements Serializable {
        private final UUID identifier;
        private final byte[] token;
    
        public Command(UUID identifier, byte[] token) {
            this.identifier = identifier;
            this.token = token;
        }
    
        /**
         * Returns the authentication token for this command.
         */
        public byte[] getToken() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/SymbolPointerExceptions.kt

        IllegalStateException("Could not create a symbol pointer for local symbol $identifier") {
        public constructor(klass: KClass<*>) : this(klass.java.simpleName)
    }
    
    public class UnsupportedSymbolKind(identifier: String, kind: KaSymbolKind) : IllegalStateException(
        "For symbol with kind = KaSymbolKind.${kind.name} was $identifier"
    ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 908 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

        String CACHE_DISPLAY_NAME = "Generated Gradle JARs cache";
    
        /**
         * Returns the generated jar uniquely identified by {@code identifier}.
         *
         * If the jar is not found in the cache the given {@code creator} action will be invoked to create it.
         *
         * @param identifier the jar identifier (for example, {@code "api"}).
         * @param creator the action that will create the file should it not be found in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) }}
    	gvk.{{.Resource.Identifier}}: func(r runtime.Object) config.Config {
    		obj := r.(*{{ .IstioAwareClientImport }}.{{.Resource.Kind}})
    		return config.Config{
    		  Meta: config.Meta{
    		  	GroupVersionKind:  gvk.{{.Resource.Identifier}},
    		  	Name:              obj.Name,
    		  	Namespace:         obj.Namespace,
    		  	Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top