Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 401 for getPerm (0.33 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiKotlinPropertySymbol.kt

        override val hasSetter: Boolean
            get() = withValidityAssertion { psi.isVar }
    
        override val getter: KaPropertyGetterSymbol
            get() = withValidityAssertion {
                val getter = psi.getter ?: return KaFe10PsiDefaultPropertyGetterSymbol(psi, analysisContext)
                return KaFe10PsiPropertyGetterSymbol(getter, analysisContext)
            }
    
        override val setter: KaPropertySetterSymbol?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/controlplane/reconcilers/helpers_test.go

    	errors := []error{}
    
    	updates := []k8stesting.UpdateAction{}
    	creates := []k8stesting.CreateAction{}
    	for _, action := range fakeClient.Actions() {
    		if action.GetVerb() == "update" {
    			updates = append(updates, action.(k8stesting.UpdateAction))
    		} else if action.GetVerb() == "create" {
    			creates = append(creates, action.(k8stesting.CreateAction))
    		}
    	}
    
    	if len(creates) != len(expectedCreates) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

            int matchCount = 0;
            for (int i = 0; i < tokens.size(); i++) {
                final String term = tokens.get(i).getTerm();
                final String reading = readingTokens.get(i).getTerm();
                switch (term) {
                case "fess":
                    matchCount++;
                    assertEquals("fess", reading);
                    break;
                case "検索":
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    		return authorizer.DecisionAllow, "", nil
    	}
    
    	if len(user.GetGroups()) > 1 && user.GetGroups()[1] == "group-impersonater" && a.GetVerb() == "impersonate" && a.GetResource() == "groups" {
    		return authorizer.DecisionAllow, "", nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

        String getName();
    
        /**
         * The getter methods for a particular type.
         *
         * This list will only ever contain more than one method when there are getter methods with <b>different</b> return types.
         * If a getter is declared multiple times by this type (through inheritance) with identical return types, only one method object will be present for the type.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/deprecationFromLibrary.kt

        @get:Deprecated("Deprecated getter")
        @set:Deprecated("Deprecated setter")
        var deprecatedProperty: Int = 0
            get() = field
            set(value) {
                field = value
            }
    
        @Deprecated("Deprecated function")
        fun deprecatedFunction() {
    
        }
    
        @get:Deprecated("Deprecated getter")
        @set:Deprecated("Deprecated setter")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 06 16:13:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CompositeCallInterceptionTest.groovy

            "normal getter"       | "call site" | "getTestString()"                             | { it.testString }                    | false
            "boolean getter"      | "call site" | "isTestFlag()"                                | { it.testFlag }                      | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. test/typeparam/genembed.go

    	val T
    }
    
    func (b *B[T]) get() T {
    	return b.val
    }
    
    type getter[T any] interface {
    	get() T
    }
    
    //go:noinline
    func doGet[T any](i getter[T]) T {
    	return i.get()
    }
    
    //go:noline
    func doGet2[T any](i interface{}) T {
    	i2 := i.(getter[T])
    	return i2.get()
    }
    
    func main() {
    	a := A[int]{B: B[int]{3}}
    	var i getter[int] = &a
    
    	if got, want := doGet(i), 3; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 901 bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime_cache.go

    }
    
    type podsGetter interface {
    	GetPods(context.Context, bool) ([]*Pod, error)
    }
    
    // NewRuntimeCache creates a container runtime cache.
    func NewRuntimeCache(getter podsGetter, cachePeriod time.Duration) (RuntimeCache, error) {
    	return &runtimeCache{
    		getter:      getter,
    		cachePeriod: cachePeriod,
    	}, nil
    }
    
    // runtimeCache caches a list of pods. It records a timestamp (cacheTime) right
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime_cache_fake.go

    	r.Lock()
    	defer r.Unlock()
    	return r.pods
    }
    
    // NewTestRuntimeCache creates a new instance of TestRuntimeCache.
    func NewTestRuntimeCache(getter podsGetter) *TestRuntimeCache {
    	return &TestRuntimeCache{
    		runtimeCache: runtimeCache{
    			getter: getter,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top