Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,753 for fooleak (0.13 sec)

  1. test/escape2.go

    var F Foo
    var pf *Foo
    
    func (f *Foo) fooleak() { // ERROR "leaking param: f$"
    	pf = f
    }
    
    func (f *Foo) foonoleak() { // ERROR "f does not escape$"
    	F.x = f.x
    }
    
    func (f *Foo) Leak() { // ERROR "leaking param: f$"
    	f.fooleak()
    }
    
    func (f *Foo) NoLeak() { // ERROR "f does not escape$"
    	f.foonoleak()
    }
    
    func foo41(x int) { // ERROR "moved to heap: x$"
    	F.xx = &x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2n.go

    var F Foo
    var pf *Foo
    
    func (f *Foo) fooleak() { // ERROR "leaking param: f$"
    	pf = f
    }
    
    func (f *Foo) foonoleak() { // ERROR "f does not escape$"
    	F.x = f.x
    }
    
    func (f *Foo) Leak() { // ERROR "leaking param: f$"
    	f.fooleak()
    }
    
    func (f *Foo) NoLeak() { // ERROR "f does not escape$"
    	f.foonoleak()
    }
    
    func foo41(x int) { // ERROR "moved to heap: x$"
    	F.xx = &x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/boolean-attributes.module

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 260 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, -2, new boolean[] {true});
        testRotate(new boolean[] {true}, -1, new boolean[] {true});
        testRotate(new boolean[] {true}, 0, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/spec/AbstractConfigurationReportSpec.java

        public abstract boolean isIncludeVariants();
        public abstract boolean isIncludeRuleSchema();
        public abstract boolean isIncludeExtensions();
        public abstract boolean isIncludeExtensionsRecursively();
    
        public Optional<String> getSearchTarget() {
            return Optional.ofNullable(searchTarget);
        }
        public boolean isSearchForSpecificVariant() {
            return null != searchTarget;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

        private final List<ExcludeMetadata> excludes;
        private final List<IvyArtifactName> artifactNames;
        private final boolean force;
        private final boolean changing;
        private final boolean transitive;
        private final boolean constraint;
        private final boolean endorsing;
        private final boolean fromLock;
        private final String reason;
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

    public class MinimalScalaCompileOptions implements Serializable {
        private boolean failOnError = true;
        private boolean deprecation = true;
        private boolean unchecked = true;
        private String debugLevel;
        private boolean optimize;
        private String encoding;
        private boolean force;
        private List<String> additionalParameters;
        private boolean listFiles;
        private String loggingLevel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, -2, new boolean[] {true});
        testRotate(new boolean[] {true}, -1, new boolean[] {true});
        testRotate(new boolean[] {true}, 0, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private boolean configurationCacheDebug;
        private boolean configurationCacheIgnoreInputsInTaskGraphSerialization = false;
        private int configurationCacheMaxProblems = 512;
        private @Nullable String configurationCacheIgnoredFileSystemCheckInputs = null;
        private boolean configurationCacheRecreateCache;
        private boolean configurationCacheQuiet;
        private boolean searchUpwards = true;
        private boolean useEmptySettings = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

        @Nonnull
        Session getSession();
    
        @Nonnull
        Optional<Path> getPath();
    
        @Nonnull
        Optional<Source> getSource();
    
        boolean isAllowStubModel();
    
        boolean isRecursive();
    
        boolean isProcessPlugins();
    
        @Nonnull
        static ProjectBuilderRequest build(@Nonnull Session session, @Nonnull Source source) {
            return builder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top