Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,359 for kindOf (0.43 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

                return PsiEquivalenceUtil.areElementsEquivalent(psiClass, otherPsiClass)
            }
            return symbolEquals(other)
        }
    
        /**
         * All kinds of non-local named class or object symbols must have the same kind of hash code. The class ID is the best option, as the
         * same class/object may be represented by multiple different symbols.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/reflect/badlinkname.go

    func badlinkname_rtype_IsVariadic(*rtype) bool
    
    //go:linkname badlinkname_rtype_Key reflect.(*rtype).Key
    func badlinkname_rtype_Key(*rtype) Type
    
    //go:linkname badlinkname_rtype_Kind reflect.(*rtype).Kind
    func badlinkname_rtype_Kind(*rtype) Kind
    
    //go:linkname badlinkname_rtype_Len reflect.(*rtype).Len
    func badlinkname_rtype_Len(*rtype) int
    
    //go:linkname badlinkname_rtype_Method reflect.(*rtype).Method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * of [modificationEventKind]. This allows [AbstractSessionInvalidationTest] to check all modification event kinds with the same original
     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/log/slog/value_test.go

    		if !got.Equal(test.want) {
    			t.Errorf("%v (%[1]T): got %v (kind %s), want %v (kind %s)",
    				test.in, got, got.Kind(), test.want, test.want.Kind())
    		}
    	}
    }
    
    func TestValueAny(t *testing.T) {
    	for _, want := range []any{
    		nil,
    		LevelDebug + 100,
    		time.UTC, // time.Locations treated specially...
    		KindBool, // ...as are Kinds
    		[]Attr{Int("a", 1)},
    		int64(2),
    		uint64(3),
    		true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/apis.go

    			klog.Infof("API group %q is not enabled, skipping.", groupName)
    			continue
    		}
    
    		// Remove resources that serving kinds that are removed.
    		// We do this here so that we don't accidentally serve versions without resources or openapi information that for kinds we don't serve.
    		// This is a spot above the construction of individual storage handlers so that no sig accidentally forgets to check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

                    specialBlockKind != null -> when (seenBlock) {
                        null -> seenBlock = specialBlockKind
                        specialBlockKind -> duplicates += node
                        else -> error("unexpected mixed kinds of special blocks in one resolved DOM")
                    }
    
                    seenBlock == null -> outOfOrderNodes += node
                }
            }
            return seenBlock?.let { seen ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

    }
    
    
    interface SoftwareTypeConventionRepository {
        fun findConventions(softwareTypeName: String): SoftwareTypeConventionResolutionResults?
    }
    
    
    /**
     * Transformation logic for the kinds of resolution results that appear in conventions.
     * For any of the supported result records, supports replacing the `conventions { ... }` receiver in it with
     * the given [targetBaseReceiver].
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
    	// Some subresources do not return normal resources, these will have null or empty return types.
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// acceptedTypes describes the kinds that this endpoint accepts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	Transport TransportConfig
    
    	Codec runtime.Codec
    	// EncodeVersioner is the same groupVersioner used to build the
    	// storage encoder. Given a list of kinds the input object might belong
    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

        static List<Spec> specs() {
            [Kind.values(), Language.values()].combinations().collect { Kind kind, Language language ->
                new Spec(language, kind)
            }
        }
    
        @Immutable
        static class Spec {
            Language language
            Kind kind
    
            @Override
            String toString() {
                "$language project ($kind)"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top