Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for getOther (0.36 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

            withValidityAssertion { analysisSession.symbolInfoProvider.getDeprecation(this, annotationUseSiteTarget) }
    
        /**
         * Gets the deprecation status of the getter of this property symbol. Returns null if the getter is not deprecated.
         */
        public val KaPropertySymbol.getterDeprecationStatus: DeprecationInfo?
            get() = withValidityAssertion { analysisSession.symbolInfoProvider.getGetterDeprecation(this) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    							"group":   "",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "batch",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "extensions",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    					},
    				},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/mutableManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<URI> getUri(); // abstract getter of type Property<T>
    
        @TaskAction
        void run() {
            System.out.println("Downloading " + getUri().get()); // Use the `uri` property
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 488 bytes
    - Viewed (0)
  4. pkg/scheduler/metrics/metrics.go

    func RegisterMetrics(extraMetrics ...metrics.Registerable) {
    	for _, metric := range extraMetrics {
    		legacyregistry.MustRegister(metric)
    	}
    }
    
    // GetGather returns the gatherer. It used by test case outside current package.
    func GetGather() metrics.Gatherer {
    	return legacyregistry.DefaultGatherer
    }
    
    // ActivePods returns the pending pods metrics with the label active
    func ActivePods() metrics.GaugeMetric {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirPropertyDelegationMethodsReference.kt

            val property = (expression.parent as? KtElement)?.getOrBuildFirSafe<FirProperty>(firResolveSession) ?: return emptyList()
            if (property.delegate == null) return emptyList()
            val getValueSymbol = (property.getter?.singleStatementOfType<FirReturnExpression>()?.result as? FirFunctionCall)?.getCalleeSymbol()
            val setValueSymbol = (property.setter?.singleStatementOfType<FirReturnExpression>()?.result as? FirFunctionCall)?.getCalleeSymbol()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/main_test.go

          secretVolumes:
          - name: client-custom-certs
            secretName: egress-gw-cacerts
            mountPath: /etc/certs/custom
    `
    }
    
    func setupApps(ctx resource.Context, appNs namespace.Getter,
    	serviceNs namespace.Getter, customCfg *[]echo.Config,
    ) error {
    	appNamespace := appNs.Get()
    	serviceNamespace := serviceNs.Get()
    	var customConfig []echo.Config
    	client := echo.Config{
    		Service:   "client",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pkg/registry/core/serviceaccount/storage/storage_test.go

    	return f.staticToken, nil
    }
    
    var _ token.TokenGenerator = fakeTokenGenerator{}
    
    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        override val callableId: CallableId? get() = withValidityAssertion { firSymbol.getCallableId() }
    
        override val getter: KaPropertyGetterSymbol
            get() = withValidityAssertion {
                builder.callableBuilder.buildGetterSymbol(firSymbol.getterSymbol!!)
            }
        override val javaGetterSymbol: KaFunctionSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                        }
                        fir.getter?.let { getter ->
                            methods.singleOrNull { it.returnType != PsiTypes.voidType() }?.let {
                                bindings.put(METHOD_FOR_FIR_FUNCTION, getter, Method(it.name, getAsmMethodSignatureWithCorrection(it)))
                            }
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    func UpdateEtcdDbSize(ep string, size int64) {
    	dbTotalSize.WithLabelValues(ep).Set(float64(size))
    }
    
    // SetStorageMonitorGetter sets monitor getter to allow monitoring etcd stats.
    func SetStorageMonitorGetter(getter func() ([]Monitor, error)) {
    	storageMonitor.setGetter(getter)
    }
    
    // UpdateLeaseObjectCount sets the etcd_lease_object_counts metric.
    func UpdateLeaseObjectCount(count int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top