Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 597 for supportsL7 (0.22 sec)

  1. CHANGELOG/CHANGELOG-1.2.md

    ReplicationController, but its [selector](http://kubernetes.io/docs/user-guide/labels/#label-selectors) is more general (supports set-based selector; whereas ReplicationController
    only supports equality-based selector).
      * Scale subresource support is now expanded to ReplicaSets along with
    ReplicationControllers and Deployments. Scale now supports two different types
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu.go

    // current X86/AMD64 platform. If the current platform
    // is not X86/AMD64 then all feature flags are false.
    //
    // X86 is padded to avoid false sharing. Further the HasAVX
    // and HasAVX2 are only set if the OS supports XMM and YMM
    // registers in addition to the CPUID feature bit being set.
    var X86 struct {
    	_                   CacheLinePad
    	HasAES              bool // AES hardware implementation (AES NI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            and:
            handler.createComponentMetadataProcessor(context).processMetadata(metadata.asImmutable())
    
            then:
            closuresCalled.sort() == [1, 2, 3]
        }
    
        def "supports rule with typed ComponentMetaDataDetails parameter"() {
            def metadata = ivyMetadata()
            def capturedDetails = null
            handler.all { ComponentMetadataDetails details ->
                capturedDetails = details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

    }
    
    class DeferActivationTransposeForAddOp : public OpRewritePattern<AddOp> {
     public:
      using OpRewritePattern<AddOp>::OpRewritePattern;
    
      LogicalResult match(AddOp op) const override {
        // Only supports the case for 2D convolution.
        const Value lhs = op.getOperand(0);
        if (!HasRankOf(lhs, /*rank=*/4)) return failure();
    
        const Value rhs = op.getOperand(1);
        Operation* rhs_op = rhs.getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/archive/tar/common.go

    				return FormatUnknown, nil, headerError{"invalid sparse holes"}
    			}
    			if h.Typeflag == TypeGNUSparse {
    				whyOnlyGNU = "only GNU supports TypeGNUSparse"
    				format.mayOnlyBe(FormatGNU)
    			} else {
    				whyNoGNU = "GNU supports sparse files only with TypeGNUSparse"
    				format.mustNotBe(FormatGNU)
    			}
    			whyNoUSTAR = "USTAR does not support sparse files"
    			format.mustNotBe(FormatUSTAR)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

                """${intro}  - Problem: In version catalog ${catalog}, unsupported version catalog format ${unsupported}.
    
        Reason: This version of Gradle only supports format version ${expected}.
    
        Possible solution: Try to upgrade to a newer version of Gradle which supports the catalog format version ${unsupported}.
    
        ${documentation}"""
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/quantize.cc

      }
    
      static bool AllowDynamicRangeQuantizedOperand(
          Operation* quantized_op, const quant::CustomOpMap& custom_op_map) {
        // Collect the input if dynamic range quantization is on and the op supports
        // it.
        return quantization_trait == kDynamicRangeQuantization &&
               (dyn_cast_or_null<DynamicRangeQuantizedOpInterface>(quantized_op) ||
                IsQuantizableCustomOp(quantized_op, custom_op_map));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * as the new interface provides much richer information and much better handling of parallel operations that run during the build.
         * </p>
         *
         * <p>Supported by Gradle 2.5 or later. Gradle 2.4 supports {@link OperationType#TEST} operations only. Ignored for older versions.</p>
         *
         * @param listener The listener
         * @return this
         * @since 2.5
         */
        @SuppressWarnings("overloads")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                return idx < expression.length() ? expression.substring(idx) : "<EOF>";
            }
        }
    
        private ReflectionValueExtractor() {}
    
        /**
         * <p>The implementation supports indexed, nested and mapped properties.</p>
         * <ul>
         * <li>nested properties should be defined by a dot, i.e. "user.address.street"</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Whether or not classes without source location should be instrumented. Defaults to {@code false}.
         *
         * This property is only taken into account if the used JaCoCo version supports this option (JaCoCo version &gt;= 0.7.6)
         */
        @Input
        public boolean isIncludeNoLocationClasses() {
            return includeNoLocationClasses;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top