Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 413 for retLine (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			haveRetArg         bool
    			retLine            []int
    		)
    
    		flushRet := func() {
    			if fn != nil && fn.vars["ret"] != nil && !haveRetArg && len(retLine) > 0 {
    				v := fn.vars["ret"]
    				resultStr := fmt.Sprintf("%d-byte ret+%d(FP)", v.size, v.off)
    				if abi == "ABIInternal" {
    					resultStr = "result register"
    				}
    				for _, line := range retLine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

                }
                return null;
            }
        }
    
        /**
         * Retains strong references to the keys and values via the key's ClassLoader. This allows the ClassLoader to be collected.
         */
        private static class DefaultClassMap<V> extends AbstractCrossBuildInMemoryCache<Class<?>, V> {
            // Currently retains strong references to types that are not loaded using a VisitableURLClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

    }
    
    
    internal
    data class StandardEditorPosition(
        private val line: Int,
        private val column: Int = 0
    ) : EditorPosition, Serializable {
    
        override fun getLine() = line
    
        override fun getColumn() = column
    }
    
    
    internal
    abstract class AbstractKotlinDslScriptsModelBuilder : ToolingModelBuilder {
    
        companion object {
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

        def "close when lock has never been acquired"() {
            when:
            cacheAccess.close()
    
            then:
            0 * _
        }
    
        def "acquires lock then runs action and retains lock on completion"() {
            def action = Mock(Supplier)
            def lock = Mock(FileLock)
    
            when:
            cacheAccess.withFileLock(action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java
    
    class ApiClassExtractorAnnotationsTest extends ApiClassExtractorTestSupport {
    
        void "annotations on class are retained"() {
            given:
            def api = toApi([
                A  : '@Ann public class A {}',
                Ann: '''
                    import java.lang.annotation.ElementType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    	policy := getPersistentVolumeClaimRetentionPolicy(set)
    	const retain = apps.RetainPersistentVolumeClaimRetentionPolicyType
    	if policy.WhenScaled == retain && policy.WhenDeleted == retain {
    		// On a retain policy, it's not a problem for different controller to be managing the claims.
    		return false
    	}
    	for _, ownerRef := range claim.GetOwnerReferences() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    // EachListItemWithAlloc works like EachListItem, but avoids retaining references to the items slice in obj.
    // It does this by making a shallow copy of non-pointer items in obj.
    //
    // If the items passed to fn are not retained, or are retained for the same duration, use EachListItem instead for memory efficiency.
    func EachListItemWithAlloc(obj runtime.Object, fn func(runtime.Object) error) error {
    	return eachListItem(obj, fn, true)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/dns/dns.go

    			if err := apiclient.CreateOrRetainConfigMap(client, coreDNSConfigMap, kubeadmconstants.CoreDNSConfigMap); err != nil {
    				return err
    			}
    		}
    	} else {
    		// If the Corefile is modified and doesn't require any migration, it'll be retained for the benefit of the user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
        formed by whitespace-only events must be retained.
        -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Striped.java

        return lazy(stripes, WeakSafeReadWriteLock::new);
      }
      /**
       * ReadWriteLock implementation whose read and write locks retain a reference back to this lock.
       * Otherwise, a reference to just the read lock or just the write lock would not suffice to ensure
       * the {@code ReadWriteLock} is retained.
       */
      private static final class WeakSafeReadWriteLock implements ReadWriteLock {
        private final ReadWriteLock delegate;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top