Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for getPerm (0.14 sec)

  1. cmd/kubeadm/app/phases/upgrade/compute_test.go

    						EtcdVersion:    "",
    					},
    				},
    			},
    			allowExperimental: false,
    			errExpected:       false,
    		},
    		{
    			name: "no version provided to offline version getter does not change behavior",
    			vg: NewOfflineVersionGetter(&fakeVersionGetter{
    				clusterVersion:   v1Y1.String(),
    				componentVersion: v1Y1.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

                        firDeclaration.findAnnotationTypeRef(annotationEntry) ?: (firDeclaration as? FirProperty)?.run {
                            backingField?.findAnnotationTypeRef(annotationEntry)
                                ?: getter?.findAnnotationTypeRef(annotationEntry)
                                ?: setter?.findAnnotationTypeRef(annotationEntry)
                        }
                    } else null
                }
                else -> null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                for (parameter in ktSymbol.typeParameters) {
                    yieldAll(parameter.withImplicitSymbols())
                }
            }
    
            if (ktSymbol is KaPropertySymbol) {
                yieldAll(ktSymbol.getter.withImplicitSymbols())
                yieldAll(ktSymbol.setter.withImplicitSymbols())
            }
    
            if (ktSymbol is KaFunctionLikeSymbol) {
                for (parameter in ktSymbol.valueParameters) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.pb.go

    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetFollowRedirects() bool {
    	if x != nil {
    		return x.FollowRedirects
    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetCert() string {
    	if x != nil {
    		return x.Cert
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
            vararg args: Any,
        ) {
            printer.append(property.name).append(": ")
            renderFunctionCall(property.getter, printer, renderSymbolsFully, args)
        }
    
        private fun KaSession.renderFunctionCall(
            function: KFunction<*>,
            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    In this case, the relative path of the input files can be used to identify them.
    
    Note that it is possible to override property annotations from the base class by overriding the getter of the base class and annotating that method.
    
    .Custom cacheable BundleTask
    ====
    include::sample[dir="snippets/buildCache/cacheable-bundle-task/kotlin",files="build.gradle.kts[tags=bundle-task]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-46743`](https://youtrack.jetbrains.com/issue/KT-46743) Incremental compilation doesn't process usages of Java property in Kotlin code if getter is removed
    - [`KT-60522`](https://youtrack.jetbrains.com/issue/KT-60522) Incremental compilation doesn't process usages of Java property in Kotlin code if return type of getter changes
    - [`KT-56963`](https://youtrack.jetbrains.com/issue/KT-56963) Add MPP/Jvm incremental compilation tests for both K1 and K2 modes
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            executer.withArgument("-Dprop=abc")
            run("thing")
    
            then:
            skipped(":thing")
        }
    
        def "can define task with abstract Property<#type> getter"() {
            given:
            buildFile << """
                class Param<T> {
                    T display
                    String toString() { display.toString() }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <ul>
     *
     * <li>The {@code Task} object itself. This includes any property getters and setters declared by the {@code Task}
     * implementation class.  The properties of this scope are readable or writable based on the presence of the
     * corresponding getter and setter methods.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	}
    	for i := range a.lazyCerts {
    		la, lb := a.lazyCerts[i], b.lazyCerts[i]
    		if !bytes.Equal(la.rawSubject, lb.rawSubject) {
    			return false
    		}
    		ca, err := la.getCert()
    		if err != nil {
    			panic(err)
    		}
    		cb, err := la.getCert()
    		if err != nil {
    			panic(err)
    		}
    		if !ca.Equal(cb) {
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top