Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 780 for retLine (0.12 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtKlibSourceFileNameProvider.kt

    @KaAnalysisNonPublicApi
    public interface KaKlibSourceFileProviderMixIn : KaSessionMixIn {
        /**
         * If [KtDeclaration] is a deserialized, klib based symbol, then information about the original
         * [SourceFile] might be retained.
         */
        public fun KaDeclarationSymbol.getKlibSourceFileName(): String? =
            withValidityAssertion { analysisSession.klibSourceFileProvider.getKlibSourceFileName(this) }
    }
    
    @KaAnalysisNonPublicApi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSet.java

    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector;
    
    /**
     * Represents a container of artifacts, possibly made up of several different variants.
     *
     * Instances are retained during the lifetime of a build, so should avoid retaining unnecessary state.
     */
    public interface ArtifactSet {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/debug/mod.go

    			last = new(Module)
    			bi.Deps = append(bi.Deps, last)
    			*last, err = readModuleLine(elem)
    			if err != nil {
    				return nil, err
    			}
    		case strings.HasPrefix(line, repLine):
    			elem := strings.Split(line[len(repLine):], tab)
    			if len(elem) != 3 {
    				return nil, fmt.Errorf("expected 3 columns for replacement; got %d", len(elem))
    			}
    			if last == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (1)
  4. docs/debugging/README.md

            "fe012443-6ba9-4ef2-bb94-b729d2060c78/test123/testw3c.pdf/xl.meta": {"Version...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

           *
           * Maybe there is a way to avoid this cycle. But we think the cycle is safe enough to ignore:
           * Each task is retained for only as long as it is running -- so it's retained only as long as
           * it would already be retained by the underlying executor.
           *
           * If the cycle test starts reporting this cycle in the future, we should add an entry to
           * cycle_suppress_list.txt.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelViewClosedException.java

    import org.gradle.model.internal.type.ModelType;
    
    /**
     * Thrown when at attempt is made to mutate a subject of a rule after the rule has completed.
     * <p>
     * This can potentially happen when a reference to the subject is retained during a rule and then used afterwards,
     * Such as when an anonymous inner class or closure “closes over” the subject.
     */
    @Incubating
    public class ModelViewClosedException extends ReadOnlyModelViewException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                                    statisticsSinceLastBuild.getNumberOfWatchedHierarchies());
                                LOGGER.warn("Virtual file system retained information about {} files, {} directories and {} missing files since last build",
                                    statisticsSinceLastBuild.getRetainedRegularFiles(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultLineInFileLocation.java

            super(path);
            this.line = line;
            this.column = column;
            this.length = length;
        }
    
        @Override
        public int getLine() {
            return line;
        }
    
        @Override
        public int getColumn() {
            return column;
        }
    
        @Override
        public int getLength() {
            return length;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLineInFileLocation.java

            super(path);
            this.line = line;
            this.column = column;
            this.length = length;
        }
    
        @Override
        public int getLine() {
            return line;
        }
    
        @Override
        public int getColumn() {
            return column;
        }
    
        @Override
        public int getLength() {
            return length;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/LICENSE

     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     *
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     *
     * 2. Redistributions in binary form must reproduce the above copyright
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top