Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,073 for parens (0.14 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

    import javax.annotation.concurrent.Immutable;
    
    /**
     * Represents a group of problems.
     * <p>
     * Groups are organized in hierarchy where the parent group should represent the more broad problem group.
     * <p>
     * Two problem groups  are considered equal if their {@link #getName()} and their parents' are equal.
     *
     * @since 8.8
     * @see ProblemId
     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/TestReferenceResolveResultRenderer.kt

                is KaConstructorSymbol -> symbol.containingClassId?.asSingleFqName()
                is KaCallableSymbol -> symbol.callableId?.asSingleFqName()?.parent()
                is KaClassLikeSymbol -> symbol.classId?.asSingleFqName()?.parent()
                else -> null
            }
            when (nonLocalFqName) {
                null -> Unit
                FqName.ROOT -> return "ROOT"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 31 19:52:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: invalid-bind-cross-namespace
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: hostnames matched parent hostname "*.slctr-labels.example", but namespace
            "default" is not allowed by the parent
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

    John Howard <******@****.***> 1718225188 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    		return cci <= coreTags[i]
    	})
    	if i == len(coreTags) || coreTags[i] != cci {
    		return 0, false
    	}
    	return ID(i), true
    }
    
    // Parent returns the ID of the parent or the root ID if id is already the root.
    func (id ID) Parent() ID {
    	return parents[id]
    }
    
    // Tag converts id to an internal language Tag.
    func (id ID) Tag() language.Tag {
    	if int(id) >= len(coreTags) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

        }
    
        private static String toAbsolutePath(Collection<String> parents, String fileName) {
            int length = fileName.length() + parents.size()  + parents.stream()
                .mapToInt(String::length)
                .sum();
            StringBuilder buffer = new StringBuilder(length);
            for (String parent : parents) {
                buffer.append(parent);
                buffer.append(File.separatorChar);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    			routeKey = obj.Namespace
    			if parent.OriginalReference.Port != nil {
    				routes = augmentPortMatch(routes, *parent.OriginalReference.Port)
    				routeKey += fmt.Sprintf("/%d", *parent.OriginalReference.Port)
    			}
    			if parent.InternalKind == gvk.ServiceEntry {
    				vsHosts = serviceEntryHosts(ctx.ServiceEntry,
    					string(parent.OriginalReference.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http-not-selected
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: no hostnames matched parent hostname "*.domain.example"
          reason: NoMatchingListenerHostname
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

    private val PsiElement.visibilityForApproximation: Visibility
        get() {
            if (this !is PsiMember) return Visibilities.Local
            val containerVisibility =
                if (parent is KtLightClassForFacade) Visibilities.Public
                else (parent as? PsiClass)?.visibility ?: Visibilities.Local
            val visibility = visibility
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            private final VariantResolveMetadata.Identifier parent;
            private final String name;
    
            public NestedVariantIdentifier(VariantResolveMetadata.Identifier parent, String name) {
                this.parent = parent;
                this.name = name;
            }
    
            @Override
            public int hashCode() {
                return parent.hashCode() ^ name.hashCode();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top