Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,233 for plfeature (0.16 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	aa64pfr1  uint64 /* A64 Processor Feature Register 1 */
    	aa64zfr0  uint64 /* A64 SVE Feature ID Register 0 */
    	mvfr0     uint32 /* Media and VFP Feature Register 0 */
    	mvfr1     uint32 /* Media and VFP Feature Register 1 */
    	mvfr2     uint32 /* Media and VFP Feature Register 2 */
    	pad       uint32
    	clidr     uint64 /* Cache Level ID Register */
    	ctr       uint64 /* Cache Type Register */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager_test.go

    		// we have to parse this from KnownFeatures, because usage of mutable FeatureGate is not allowed in unit tests
    		feature := featureGateRegex.FindString(featureText)
    		if strings.Contains(featureText, string(featuregate.Alpha)) && feature != "AllAlpha" {
    			alphaFeatures.Insert(feature)
    		}
    
    	}
    
    	for name, controller := range NewControllerDescriptors() {
    		if len(controller.GetAliases()) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. .github/labels.json

              "pattern": "/question/i"
            }
          ]
        },
        "feature": {
          "requires": 1,
          "conditions": [
            {
              "type": "titleMatches",
              "pattern": "/feature/i"
            },
            {
              "type": "descriptionMatches",
              "pattern": "/Describe the feature/i"
            }
          ]
        },
        "without_playground": {
          "requires": 6,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 19 03:49:03 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/plugins_providers.go

    		logger.Info("Skip registration of plugin since feature flag is enabled", "plugin", inTreePluginName, "feature", pluginInfo.pluginUnregisterFeature)
    		return plugins, nil
    	}
    	plugins = append(plugins, pluginInfo.pluginProbeFunction()...)
    	return plugins, nil
    }
    
    type pluginInfo struct {
    	pluginMigrationFeature  featuregate.Feature
    	pluginUnregisterFeature featuregate.Feature
    	pluginProbeFunction     probeFn
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/enhancement.yaml

    name: Enhancement Tracking Issue
    description: Provide supporting details for a feature in development
    labels: kind/feature
    body:
      - type: textarea
        id: feature
        attributes:
          label: What would you like to be added?
          description: |
            Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

    import org.gradle.api.provider.Provider;
    
    /**
     * Status of a feature in a build that affects Gradle behavior,
     * and may impose additional requirements on plugins or build scripts.
     * <p>
     * It is possible to check if the feature is {@link #getActive() active} in the current build.
     * The {@link #getRequested() requested} property shows whether the user opted in or opted out from the feature.
     *
     * @see BuildFeatures
     * @since 8.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/features/FeaturesResolveIntegrationTest.groovy

                        capability('org', 'feature-1', '1.0')
                        attribute('org.gradle.usage', 'java-runtime')
                        attribute('org.gradle.libraryelements', 'jar')
                        attribute('org.gradle.category', 'library')
                        artifact('feat1')
                    }
                    variant('feature2') {
                        capability('org', 'feature-2', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:29:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-fixtures/src/main/java/org/gradle/api/plugins/JavaTestFixturesPlugin.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build.gradle.kts

    tasks.register("checkFeatures") {
        group = "verification"
        description = "Run all feature tests"
        dependsOn(gradle.includedBuild("admin-feature").task(":config:check"))
        dependsOn(gradle.includedBuild("user-feature").task(":data:check"))
        dependsOn(gradle.includedBuild("user-feature").task(":table:check"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 428 bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

    name: Feature Enhancement Request
    description: I want to make an existing feature better
    labels: ["type=enhancement"]
    body:
      - type: markdown
        attributes:
          value: >
            Filing feature requests is one of the most popular ways to contribute to Guava.
    
    
            Be aware, though: most feature requests are not accepted, even if they're suggested by
            a full-time Guava team member. [Feedback](https://stackoverflow.com/a/4543114) from our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top