Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for getters (0.16 sec)

  1. pkg/kubelet/kubelet_node_status.go

    	var nodeAddressesFunc func() ([]v1.NodeAddress, error)
    	if kl.cloud != nil {
    		nodeAddressesFunc = kl.cloudResourceSyncManager.NodeAddresses
    	}
    	var setters []func(ctx context.Context, n *v1.Node) error
    	setters = append(setters,
    		nodestatus.NodeAddress(kl.nodeIPs, kl.nodeIPValidator, kl.hostname, kl.hostnameOverridden, kl.externalCloudProvider, kl.cloud, nodeAddressesFunc),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

                    .collect(Collectors.toList());
            }
            return Arrays.asList(
                getAccessorSpec(method, AccessorType.GETTER, annotationMirror),
                getAccessorSpec(method, AccessorType.SETTER, annotationMirror)
            );
        }
    
        private DeprecationSpec readDeprecationSpec(AnnotationMirror annotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/echos.go

    	// Ignored if Namespaces is non-empty. Defaults to 1.
    	NamespaceCount int
    
    	// Namespaces is the user-provided list of echo namespaces. If empty, NamespaceCount
    	// namespaces will be generated.
    	Namespaces []namespace.Getter
    
    	// NoExternalNamespace if true, no external namespace will be generated and no external echo
    	// instance will be deployed. Ignored if ExternalNamespace is non-nil.
    	NoExternalNamespace bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    type UntypedWrapper[T controllers.ComparableObject] struct {
    	reader kclient.Reader[T]
    }
    type getter interface {
    	Get(name, namespace string) controllers.Object
    }
    
    func NewUntypedWrapper[T controllers.ComparableObject](c kclient.Client[T]) getter {
    	return UntypedWrapper[T]{c}
    }
    
    func (u UntypedWrapper[T]) Get(name, namespace string) controllers.Object {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        KaSymbolWithVisibility,
        KaSymbolWithKind {
    
        public abstract val hasGetter: Boolean
        public abstract val hasSetter: Boolean
    
        public abstract val getter: KaPropertyGetterSymbol?
        public abstract val setter: KaPropertySetterSymbol?
        public abstract val backingFieldSymbol: KaBackingFieldSymbol?
    
        public abstract val hasBackingField: Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                public abstract class MyTransformAction implements TransformAction {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

         * to the complete type ({@link ComponentMetadata}) which provides more than what we want to expose in those
         * rules. In particular, the builder exposes setters, that we don't want on the component metadata type.
         */
        private static class SimpleComponentMetadataBuilder implements ComponentMetadataBuilder {
            private final ModuleVersionIdentifier id;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            return when (val property = propertyResolver.resolvePropertyRead(receiverKClass, dataProperty.name)) {
                is RuntimePropertyResolver.ReadResolution.ResolvedRead -> property.getter.getValue(receiverInstance)
                RuntimePropertyResolver.ReadResolution.UnresolvedRead -> error("cannot get property ${dataProperty.name} from the receiver class $receiverKClass")
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                is ConeLookupTagBasedType -> lookupTag.name.asString()
    
                // NOTE: Flexible types can occur not only as implicit return types,
                // but also as implicit parameter types, for example in setters with implicit types
                is ConeFlexibleType -> {
                    // since Kotlin decompiler always "renders" flexible types as their lower bound, we can do the same here
                    lowerBound.renderTypeAsKotlinType()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/common.go

    	if ok && *printConfig {
    		printConfiguration(&initCfg.ClusterConfiguration, os.Stdout, printer)
    	} else if !ok {
    		return nil, nil, nil, nil, cmdutil.TypeMismatchErr("printConfig", "bool")
    	}
    
    	// Use a real version getter interface that queries the API server, the kubeadm client and the Kubernetes CI system for latest versions
    	return client, upgrade.NewOfflineVersionGetter(upgrade.NewKubeVersionGetter(client), newK8sVersion), initCfg, upgradeCfg, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top