Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for erator (0.38 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

         * ```
         * annotationsList.hasAnnotation(classId) == annotationsList.annotations.any { it.classId == classId }
         * ```
         * @param classId [ClassId] to search
         */
        public operator fun contains(classId: ClassId): Boolean
    
        @Deprecated("Use 'contains' instead.", replaceWith = ReplaceWith("contains(classId)"))
        public fun hasAnnotation(classId: ClassId): Boolean = contains(classId)
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

                )
    
        private class UserDataPropertyWithDefault<in R : UserDataHolder, T>(val key: KeyWithDefaultValue<T>) {
            operator fun getValue(thisRef: R, desc: KProperty<*>): T =
                thisRef.getUserData(key) ?: error("A user data key with a default value should guarantee a non-null value.")
    
            operator fun setValue(thisRef: R, desc: KProperty<*>, value: T) {
                thisRef.putUserData(key, value)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

            task = new ResourceCleaningCompilationTask(task, fileManager);
            return task;
        }
    
        private static boolean emptySourcepathIn(List<String> options) {
            Iterator<String> optionsIter = options.iterator();
            while (optionsIter.hasNext()) {
                String current = optionsIter.next();
                if (current.equals("-sourcepath") || current.equals("--source-path")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/go/ast/66339.md

    The new [Preorder] function returns a convenient iterator over all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 95 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

            --inputTrackingDisabledCounterForThread
        }
    }
    
    
    private
    operator fun <T> ThreadLocal<T>.getValue(thisRef: Any?, property: KProperty<*>) = get()
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    
    /**
     * Provides efficient access to a property.
     */
    interface PropertyDelegate {
        operator fun <T> getValue(receiver: Any?, property: KProperty<*>): T
    }
    
    
    /**
     * Provides efficient access to a mutable dynamic property.
     */
    interface MutablePropertyDelegate : PropertyDelegate {
        operator fun <T> setValue(receiver: Any?, property: KProperty<*>, value: T)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    {{- if eq .Values.cni.provider "multus" }}
    apiVersion: k8s.cni.cncf.io/v1
    kind: NetworkAttachmentDefinition
    metadata:
      name: {{ template "name" . }}
      namespace: default
      labels:
        operator.istio.io/component: "Cni"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 231 bytes
    - Viewed (0)
  8. operator/pkg/validate/validate_values_test.go

    // limitations under the License.
    
    package validate
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"testing"
    
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/test/env"
    )
    
    var repoRootDir string
    
    func init() {
    	repoRootDir = env.IstioSrc
    }
    
    func TestValidateValues(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/resourcequota.yaml

    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KaAbstractResolver.kt

                KtTokens.PERCEQ -> KaCompoundAccess.CompoundAssign.Kind.REM_ASSIGN
                KtTokens.DIVEQ -> KaCompoundAccess.CompoundAssign.Kind.DIV_ASSIGN
                else -> error("unexpected operator $operationToken")
            }
            return compoundAssignKind
        }
    
        protected fun KtUnaryExpression.getInOrDecOperationKind(): KaCompoundAccess.IncOrDecOperation.Kind {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top