Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for isPath (0.28 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererOtherModifiersProvider.kt

                    if (symbol is KaNamedClassOrObjectSymbol) {
                        if (symbol.isExternal) add(KtTokens.EXTERNAL_KEYWORD)
                        if (symbol.isInline) add(KtTokens.INLINE_KEYWORD)
                        if (symbol.isData) add(KtTokens.DATA_KEYWORD)
                        if (symbol.isFun) add(KtTokens.FUN_KEYWORD)
                        if (symbol.isInner) add(KtTokens.INNER_KEYWORD)
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/RejectedByAttributesVersion.java

            for (AttributeMatcher.MatchingDescription<?> description : matchingDescription) {
                builder.node("Attribute '" + description.getRequestedAttribute().getName() + "'");
                if (description.isMatch()) {
                    builder.append(" matched. ");
                } else {
                    builder.append(" didn't match. ");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin_dryrun_test.go

    	return ns.path
    }
    
    func (*mockNetNs) Fd() uintptr {
    	return 0
    }
    
    func (*mockNetNs) Close() error {
    	return nil
    }
    
    type netNsFunc func(nspath string) (ns.NetNS, error)
    
    func generateMockGetNsFunc(netNs string) netNsFunc {
    	return func(nspath string) (ns.NetNS, error) {
    		return &mockNetNs{path: netNs}, nil
    	}
    }
    
    func buildDryrunConf() string {
    	return fmt.Sprintf(
    		mockConfTmpl,
    		"1.0.0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	base     uint64
    	baseErr  error // Any eventual error while computing the base.
    	isData   bool
    	// Mapping information. Relevant only for ELF files, nil otherwise.
    	m *elfMapping
    }
    
    // computeBase computes the relocation base for the given binary file only if
    // the elfMapping field is set. It populates the base and isData fields and
    // returns an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                }
                validateNameIsNotBuildSrc(buildName, buildDir);
                Path idPath = buildPath != null ? buildPath : assignPath(rootBuild, buildName, buildDir);
                BuildIdentifier buildIdentifier = idFor(idPath);
    
                includedBuild = includedBuildFactory.createBuild(buildIdentifier, buildDefinition, isImplicit, rootBuild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/go/ast/import.go

    	// Reassign each comment to the spec on the same line.
    	// Sort the comments by new position.
    	slices.SortFunc(specs, func(a, b Spec) int {
    		ipath := importPath(a)
    		jpath := importPath(b)
    		r := cmp.Compare(ipath, jpath)
    		if r != 0 {
    			return r
    		}
    		iname := importName(a)
    		jname := importName(b)
    		r = cmp.Compare(iname, jname)
    		if r != 0 {
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/VariantContext.groovy

                String getName() {
                    return normalizedDimensionValue
                }
            }
    
            static class MissingVariantDimension extends VariantDimension {
                final String asPath = ""
                final String asPublishingName = ""
                final String asVariantName = ""
                final String name = ""
    
                private MissingVariantDimension(String dimensionName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiNamedClassOrObjectSymbol.kt

            bindingContext[BindingContext.CLASS, psi]
        }
    
        override val isInner: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.INNER_KEYWORD) }
    
        override val isData: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.DATA_KEYWORD) }
    
        override val isInline: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtClassLikeSymbol.kt

        KaSymbolWithModality,
        KaSymbolWithVisibility,
        KaNamedSymbol,
        KaContextReceiversOwner {
    
        public abstract val isInner: Boolean
        public abstract val isData: Boolean
        public abstract val isInline: Boolean
        public abstract val isFun: Boolean
    
        public abstract val isExternal: Boolean
    
        public abstract val companionObject: KaNamedClassOrObjectSymbol?
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func ParseTilePath(path string) (Tile, error) {
    	f := strings.Split(path, "/")
    	if len(f) < 4 || f[0] != "tile" {
    		return Tile{}, &badPathError{path}
    	}
    	h, err1 := strconv.Atoi(f[1])
    	isData := false
    	if f[2] == "data" {
    		isData = true
    		f[2] = "0"
    	}
    	l, err2 := strconv.Atoi(f[2])
    	if err1 != nil || err2 != nil || h < 1 || l < 0 || h > 30 {
    		return Tile{}, &badPathError{path}
    	}
    	w := 1 << uint(h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top