Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,897 for delegated (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		if err != nil && s.RemoteKubeConfigFileOptional {
    			if err != rest.ErrNotInCluster {
    				klog.Warningf("failed to read in-cluster kubeconfig for delegated authentication: %v", err)
    			}
    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authentication kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.kt

        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
                fir.delegate.symbol.callableId
            } else null
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

     * implementations and replacing them with a "stub" that will throw an
     * {@link UnsupportedOperationException} if called at runtime. All members (including but
     * not limited to stripped and stubbed methods) are delegated to a {@link ClassWriter}
     * responsible for writing new API classes.
     */
    public class MethodStubbingApiMemberAdapter extends ClassVisitor {
    
        private static final String UOE_METHOD = "$unsupportedOpEx";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/AppendableWriter.java

    import java.io.Writer;
    import javax.annotation.CheckForNull;
    
    /**
     * Writer that places all output on an {@link Appendable} target. If the target is {@link Flushable}
     * or {@link Closeable}, flush()es and close()s will also be delegated to the target.
     *
     * @author Alan Green
     * @author Sebastian Kanthak
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    class AppendableWriter extends Writer {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/TypedDomainObjectContainerWrapperTest.groovy

                    value = "changed"
                }
            }
    
            then:
            container.asList() == [created]
            created.value == "changed"
        }
    
        def "register methods delegated to parent"() {
            given:
            def container = parent.containerWithType(CreatedSubType)
            container.register("createdOne")
            container.register("createdTwo") {
                it.value = "changed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

            fixture.assertStateStored {
                projectsConfigured(":", ":a", ":b")
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28204")
        def "access to #description delegated property value is causing a violation"() {
            given:
            settingsFile << """
                include("a")
            """
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

                ?: throw IllegalStateException(
                    "Element '$name' of type '${it::class.java.name}' from container '$this' cannot be cast to '${T::class.qualifiedName}'."
                )
        }
    
    
    /**
     * Delegated property getter that locates extensions.
     */
    inline operator fun <reified T : Any> ExtensionContainer.getValue(thisRef: Any?, property: KProperty<*>): T =
        getByName<T>(property.name)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

        /**
         * This is a performance optimization which avoids using BeanDynamicObject to wrap the Script object.
         * Using BeanDynamicObject would be wasteful, because most of the interesting properties and methods
         * are delegated to the script target. Doing this delegation explicitly avoids
         * us going through the methodMissing/propertyMissing protocol that BeanDynamicObject would use.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    }
    
    // Validate validates RuntimeConfig with a list of registries.
    // Usually this list only has one element, the apiserver registry of the process.
    // But in the advanced (and usually not recommended) case of delegated apiservers there can be more.
    // Validate will filter out the known groups of each registry.
    // If anything is left over after that, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * e.g,
         * ```
         * interface A { fun x() }
         * class B(a: A) : A by a
         * ```
         * the `B.foo` function will be generated by Kotlin compiler
         */
        DELEGATED,
    
    
        JAVA_SYNTHETIC_PROPERTY,
    
        /**
         * Declaration is backing field of some member property
         * A symbol kind of [KaBackingFieldSymbol]
         *
         * @see KaBackingFieldSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top