Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Classes (0.16 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Project.ant(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Method <org.gradle.api.Project.artifacts(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *
         * Example:
         *   class Outer { // scope1  ClassId = Other
         *     class Inner { // scope2  ClassId = Other.Inner
         *       fun foo() {
         *         // Distance to scopes for classes from <element> in the order from the closest:
         *         //   scope2 -> scope3 -> scope1
         *         <element>
         *       }
         *       companion object { // scope3  ClassId = Other.Inner.Companion
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In previous versions of Gradle, it was possible for Java projects that had no declared dependencies to implicitly compile against Gradle's runtime classes.
    This means it was possible for some projects to compile without any declared dependencies even though they referenced Gradle runtime classes.
    We believe this situation is very unlikely to occur in real projects, as IDE integration and test execution would not work correctly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
      private static <V extends @Nullable Object> V getUninterruptibly(Future<V> future)
          throws ExecutionException {
        boolean interrupted = false;
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
      private static <V extends @Nullable Object> V getUninterruptibly(Future<V> future)
          throws ExecutionException {
        boolean interrupted = false;
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	// used to ensure we handle namespace updates for those keys.
    	namespaceLabelReferences := sets.New[string]()
    	classes := getGatewayClasses(r.GatewayResources, gatewaySupportedFeatures)
    	for _, obj := range r.Gateway {
    		obj := obj
    		kgw := obj.Spec.(*k8s.GatewaySpec)
    		controllerName, f := classes[string(kgw.GatewayClassName)]
    		if !f {
    			// No gateway class found, this may be meant for another controller; should be skipped.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    
      bool enable_dynamic_update_slice;
    };
    
    // Rewrites op of the template type initializing a TensorList with a list of ops
    // to generate an equivalent raw tensor. Derived classes are required to
    // override GetNumElements method.
    template <typename OpT>
    struct ConvertTensorListInitOp : public TensorListOpConverterBase<OpT> {
      using TensorListOpConverterBase<OpT>::TensorListOpConverterBase;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    func isServiceChainName(chainString string) bool {
    	// The chains returned from servicePortChainNameBase and
    	// servicePortEndpointChainNameBase will always have at least one "/" in them.
    	// Since none of our "stock" chain names use slashes, we can distinguish them this
    	// way.
    	return strings.Contains(chainString, "/")
    }
    
    func isAffinitySetName(set string) bool {
    	return strings.HasPrefix(set, servicePortEndpointAffinityNamePrefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top