Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 982 for parens (2.95 sec)

  1. src/crypto/elliptic/params.go

    		return specific.ScalarBaseMult(k)
    	}
    
    	return curve.ScalarMult(curve.Gx, curve.Gy, k)
    }
    
    func matchesSpecificCurve(params *CurveParams) (Curve, bool) {
    	for _, c := range []Curve{p224, p256, p384, p521} {
    		if params == c.Params() {
    			return c, true
    		}
    	}
    	return nil, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. fastapi/params.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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 (1)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	// along with any parent tiles needed
    	// for authentication. For most calls,
    	// the parents are being fetched anyway.
    	indexTileOrder := make([]int, len(indexes))
    	for i, x := range indexes {
    		if x >= StoredHashIndex(0, r.tree.N) {
    			return nil, fmt.Errorf("indexes not in tree")
    		}
    
    		tile, _, _ := tileForIndex(h, x)
    
    		// Walk up parent tiles until we find one we've requested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                else -> null
            }
        }
    
        private fun PsiElement.getContainingPsiDeclaration(): KtDeclaration? {
            for (parent in parents) {
                if (parent is KtDeclaration && parent !is KtDestructuringDeclaration) {
                    return parent.originalDeclaration ?: parent
                }
            }
    
            return null
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top