Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 148 for scouse (0.25 sec)

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

    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeHiddenCandidateError
    import org.jetbrains.kotlin.fir.resolve.substitution.substitutorByMap
    import org.jetbrains.kotlin.fir.scopes.impl.declaredMemberScope
    import org.jetbrains.kotlin.fir.scopes.unsubstitutedScope
    import org.jetbrains.kotlin.fir.symbols.SymbolInternals
    import org.jetbrains.kotlin.fir.symbols.impl.*
    import org.jetbrains.kotlin.fir.types.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("dependency-scope-inheritance/sub");
            String scope = (String) pom.getValue("dependencies[1]/scope");
            assertEquals("compile", scope);
        }
    
        @Test
        void testDependencyScope() throws Exception {
            buildPom("dependency-scope/sub");
        }
    
        // This will fail on a validation error if incorrect
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
      // "Cluster" means that only cluster-scoped resources will match this rule.
      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

      creationTimestamp: null
      name: bfdprofiles.metallb.io
    spec:
      group: metallb.io
      names:
        kind: BFDProfile
        listKind: BFDProfileList
        plural: bfdprofiles
        singular: bfdprofile
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.passiveMode
          name: Passive Mode
          type: boolean
        - jsonPath: .spec.transmitInterval
          name: Transmit Interval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <p>Service interfaces can be annotated with {@link org.gradle.internal.service.scopes.StatefulListener} to indicate that services instances that implement the interface should
     * be registered as a listener of that type. Alternatively, service implementations can be annotated with {@link org.gradle.internal.service.scopes.ListenerService} to indicate that the should be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    type Rule = v1.Rule
    
    // ScopeType specifies a scope for a Rule.
    type ScopeType = v1.ScopeType
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = v1.ClusterScope
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = v1.NamespacedScope
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * Consumable configurations should not have their dependencies, hierarchy, attributes, etc. modified after they have been published or consumed as a variant.
    * Dependency scope configurations should not have their dependencies, constraints, etc. modified after a configuration that extends from them are observed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Causes a trace (including the source file path, the current line
    // number, and the given message) to be included in every test failure
    // message generated by code in the current scope.  The effect is
    // undone when the control leaves the current scope.
    //
    // The message argument can be anything streamable to std::ostream.
    //
    // In the implementation, we include the current line number as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    // for by the next pacing up date. Underestimating the fragmentation however
    // could lead to performance degradation. Handling this case is not within the
    // scope of the scavenger. Situations where the amount of fragmentation balloons
    // over the course of a single GC cycle should be considered pathologies,
    // flagged as bugs, and fixed appropriately.
    //
    // An additional factor of retainExtraPercent is added as a buffer to help ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Java or Groovy, this mismatch did not cause problems at compile time.
    In Kotlin, this mismatch made valid code difficult to write because the language would not allow you to pass null.
    
    One particular example was returning `null` from a `Provider#map` or `Provider#flatMap`. In both APIs, Gradle allows you to return null, but in the Kotlin DSL this was considered illegal.
    
    This correction may cause compilation errors in code that expected non-null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top