Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 445 for parity (0.23 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

        override val isReflectType: Boolean
            get() = withValidityAssertion { descriptor.functionTypeKind.isReflectType }
    
        override val arity: Int
            get() = withValidityAssertion { descriptor.arity }
    
        override val hasContextReceivers: Boolean
            get() = withValidityAssertion { fe10Type.contextFunctionTypeParamsCount() > 0 }
    
        @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      rights and licenses granted hereunder, each Recipient hereby
      assumes sole responsibility to secure any other intellectual
      property rights needed, if any. For example, if a third party
      patent license is required to allow Recipient to Distribute the
      Program, it is Recipient's responsibility to acquire that license
      before distributing the Program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         * @param warning the text of the warning to match.
         * @param followup how are we planning to resolve the deprecation before it turns into a breakage;
         *      typically a URL pointing to an issue with the relevant third-party plugin. The actual value
         *      is ignored, the parameter is only present to remind us that a followup is necessary, and
         *      to record how it will happen.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/lib/ext/README.txt

    Use this directory to add third party extensions to Maven Core. These extensions can either extend or override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 23 19:41:57 UTC 2022
    - 143 bytes
    - Viewed (0)
  5. pkg/jwt/jwt.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package jwt
    
    const (
    	PolicyThirdParty = "third-party-jwt"
    	PolicyFirstParty = "first-party-jwt"
    )
    
    type JwksFetchMode int
    
    const (
    	// Istiod is used to indicate Istiod ALWAYS fetches the JWKs server
    	Istiod JwksFetchMode = iota
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 00:53:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LazilyInitializedFileCollection.java

    public abstract class LazilyInitializedFileCollection extends CompositeFileCollection {
    
        // Used in a third-party plugin Freefair AspectJ:
        //https://github.com/freefair/gradle-plugins/blob/fe992e9e8a3ed812c941aae02a594c8094da053c/aspectj-plugin/src/main/java/io/freefair/gradle/plugins/aspectj/internal/AspectJRuntime.java#L49
        // TODO Remove once the third-party usage is considered obsolete.
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/security.go

    	jwtPath := constants.ThirdPartyJwtPath
    	switch jwtPolicy {
    	case jwt.PolicyThirdParty:
    		log.Info("JWT policy is third-party-jwt")
    		jwtPath = constants.ThirdPartyJwtPath
    	case jwt.PolicyFirstParty:
    		log.Warnf("Using deprecated JWT policy 'first-party-jwt'; treating as 'third-party-jwt'")
    		jwtPath = constants.ThirdPartyJwtPath
    	default:
    		log.Info("Using existing certs")
    	}
    
    	o := secOpt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Gets the message associated with the test part.
      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Gets the message associated with the test part.
      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/alias.status.yaml.golden

        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: third-party-gateway
      namespace: istio-system
    spec: null
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: gateway
      namespace: istio-system
    spec: null
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top