Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,031 for plfeature (0.21 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaPlugin.java

            project.getTasks().withType(ScalaDoc.class).configureEach(scalaDoc -> {
                scalaDoc.getConventionMapping().map("classpath", (Callable<FileCollection>) () -> {
                    ConfigurableFileCollection files = project.files();
                    files.from(feature.getSourceSet().getOutput());
                    files.from(feature.getSourceSet().getCompileClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_ppc64x.go

    //go:build ppc64 || ppc64le
    
    package cpu
    
    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "darn", Feature: &PPC64.HasDARN},
    		{Name: "scv", Feature: &PPC64.HasSCV},
    		{Name: "power9", Feature: &PPC64.IsPOWER9},
    	}
    
    	osinit()
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func Name() string {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 651 bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: community, triage
    assignees: ''
    
    ---
    
    **Is your feature request related to a problem? Please describe.**
    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

            }
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "capabilities of base are preserved"() {
            given:
            repository {
                'org.test:moduleA:1.0' {
                    variant('special-variant') {
                        attribute('howspecial', 'notso')
                        capability('special-feature')
                        capability('crazy-feature')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/validation.go

    		if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.StorageVersionAPI) {
    			return nil
    		}
    		return []error{fmt.Errorf("UnknownVersionInteroperabilityProxy feature requires StorageVersionAPI feature flag to be enabled")}
    	}
    	return nil
    }
    
    func validateUnknownVersionInteroperabilityProxyFlags(options *Options) []error {
    	err := []error{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

        def "emits deprecation warnings when enabling inactive #feature feature"() {
            given:
            settingsFile << """
                enableFeaturePreview('$feature')
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("enableFeaturePreview('$feature') has been deprecated. This is scheduled to be removed in Gradle 8.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    	}{
    		{
    			description:                  "oldPod.FSGroupChangePolicy=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          nofsGroupPod,
    			newPodHasFSGroupChangePolicy: true,
    			expectPolicyInPod:            true,
    		},
    		{
    			description:                  "oldPod=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          func() *api.Pod { return nil },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/PerCollectionSizeTestSuiteBuilder.java

        // Copy this set, so we can modify it.
        Set<Feature<?>> features = Helpers.copyToSet(getFeatures());
        @SuppressWarnings("rawtypes") // class literals
        List<Class<? extends AbstractTester>> testers = getTesters();
    
        logger.fine(" Testing: " + name);
    
        // Split out all the specified sizes.
        Set<Feature<?>> sizesToTest = Helpers.<Feature<?>>copyToSet(CollectionSize.values());
        sizesToTest.retainAll(features);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. releasenotes/notes/istioctl_completion-ns.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 21:11:35 UTC 2021
    - 992 bytes
    - Viewed (0)
  10. releasenotes/notes/otel-builtin-labels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
Back to top