Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,363 for inter (0.19 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

    
        class TopLevel {
            val configuredLazy = lazy { Inner() }
            val added = mutableListOf<Inner>()
    
            @Suppress("unused")
            @Configuring
            fun configuring(block: Inner.() -> Unit = { }) {
                configuredLazy.value.block()
            }
    
            @Adding
            fun adding(block: Inner.() -> Unit = { }) =
                Inner().also(block).also(added::add)
    
            @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. test/typeparam/issue53087.go

    	M()
    }
    
    type S struct {
    	str string
    }
    
    func (s *S) M() {}
    
    var _ I = &S{}
    
    type CloningMap[K comparable, V any] struct {
    	inner map[K]V
    }
    
    func (cm CloningMap[K, V]) With(key K, value V) CloningMap[K, V] {
    	result := CloneBad(cm.inner)
    	result[key] = value
    	return CloningMap[K, V]{result}
    }
    
    func CloneBad[M ~map[K]V, K comparable, V any](m M) M {
    	r := make(M, len(m))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 16:23:09 UTC 2023
    - 930 bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodStatus status = 3;
    }
    
    // Pod affinity is a group of inter pod affinity scheduling rules.
    message PodAffinity {
      // If the affinity requirements specified by this field are not met at
      // scheduling time, the pod will not be scheduled onto the node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).
    	// +optional
    	PodAntiAffinity *PodAntiAffinity
    }
    
    // PodAffinity is a group of inter pod affinity scheduling rules.
    type PodAffinity struct {
    	// NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented.
    	// If the affinity requirements specified by this field are not met at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

     *
     * Inner classes are included because they are accessible from a value of the outer class. For example:
     *
     * ```
     * class Outer {
     *     inner class Inner
     * }
     *
     * fun foo() {
     *     val outer = Outer()
     *     outer.Inner()
     * }
     * ```
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AccessInCurrentReceiverOnlyTest.kt

                """
                inner {
                    x = 1
                    y = 1
                    f()
                }
                """.trimIndent()
            )
    
            assertTrue { result.errors.isEmpty() }
        }
    
        @Test
        fun `access on a property is not allowed`() {
            val result = schema.resolve(
                """
                inner.x = 1
                inner.y = 1
                inner.f()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule3.txt

        inner (anonymous) class MainKt$ArticleScreenContent$1
        inner (anonymous) class MainKt$ArticleScreenContent$1$1
        method <init>(p0: java.lang.String): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): kotlin.jvm.functions.Function0
    }
    
    public final class MainKt {
        // source: 'main.kt'
        inner (anonymous) class MainKt$ArticleScreenContent$1
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

        }
    
        private boolean implementedDirectly(CtClass interf, CtClass c) {
            return c.interfaces.any { it.name == interf.name }
        }
    
        private boolean addedInterfaceIsIncubatingOrInternal(CtClass interf, CtClass c) {
            return (isIncubating(interf) && !isIncubating(c)) || isInternal(interf)
        }
    
        private boolean isIncubating(CtClass c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/gofmt/simplify.go

    	// matches the outer literal's element type exactly, the inner
    	// literal type may be omitted
    	if inner, ok := x.(*ast.CompositeLit); ok {
    		if match(nil, typ, reflect.ValueOf(inner.Type)) {
    			inner.Type = nil
    		}
    	}
    	// if the outer literal's element type is a pointer type *T
    	// and the element is & of a composite literal of type T,
    	// the inner &T may be omitted.
    	if ptr, ok := astType.(*ast.StarExpr); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Interner.java

       * equal to each other. If two {@linkplain Object#equals equal} inputs are given to this method,
       * both calls will return the same instance. That is, {@code intern(a).equals(a)} always holds,
       * and {@code intern(a) == intern(b)} if and only if {@code a.equals(b)}. Note that {@code
       * intern(a)} is permitted to return one instance now and a different instance later if the
       * original interned instance was garbage-collected.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top