Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,031 for plfeature (0.15 sec)

  1. guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

       */
    
      ANY(ZERO, ONE, SEVERAL);
    
      private final Set<Feature<? super Collection>> implied;
      private final @Nullable Integer numElements;
    
      CollectionSize(int numElements) {
        this.implied = Collections.emptySet();
        this.numElements = numElements;
      }
    
      CollectionSize(Feature<? super Collection>... implied) {
        // Keep the order here, so that PerCollectionSizeTestSuiteBuilder
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

    import org.graalvm.nativeimage.hosted.Feature
    import org.graalvm.nativeimage.hosted.RuntimeResourceAccess
    
    /**
     * Automatic configuration of OkHttp for native images.
     *
     * Currently, includes all necessary resources.
     */
    class OkHttpFeature : Feature {
      @IgnoreJRERequirement
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess?) {
        RuntimeResourceAccess.addResource(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. releasenotes/notes/drop-legacy-fsgroup-injection.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 21:39:30 UTC 2023
    - 227 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "allow-privileged", Value: "true"},
    			},
    		},
    		{
    			name: "test that feature-gates is working",
    			args: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    				"--allow-privileged=true",
    				"--feature-gates=EnableFoo=true,EnableBar=false",
    			},
    			expected: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle,LimitRanger"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. releasenotes/notes/49029.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 49004
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 17:29:38 UTC 2024
    - 220 bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_arm.go

    const (
    	hwcap_VFPv4 = 1 << 16
    	hwcap_IDIVA = 1 << 17
    	hwcap_LPAE  = 1 << 20
    )
    
    func doinit() {
    	options = []option{
    		{Name: "vfpv4", Feature: &ARM.HasVFPv4},
    		{Name: "idiva", Feature: &ARM.HasIDIVA},
    		{Name: "v7atomics", Feature: &ARM.HasV7Atomics},
    	}
    
    	// HWCAP feature bits
    	ARM.HasVFPv4 = isSet(HWCap, hwcap_VFPv4)
    	ARM.HasIDIVA = isSet(HWCap, hwcap_IDIVA)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            useLocation("<long>", 123)
    
            when:
            handler.featureUsed(deprecatedFeatureUsage('feature'))
    
            then:
            def events = outputEventListener.events
            events.size() == 1
            events[0].message == TextUtil.toPlatformLineSeparators('<long>: line 123\nfeature removal')
        }
    
        def 'logs deprecation warning once for each unique Gradle script location that appears first in the stack trace'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. releasenotes/notes/48818.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: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. releasenotes/notes/scope-root-ca-configmap.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Updated** `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces where istiod creates istio-ca-root-cert configmap
         if `ENABLE_ENHANCED_RESOURCE_SCOPING` feature flag is enabled.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 17 16:44:10 UTC 2022
    - 383 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/preview/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    // tag::enabling-feature-preview[]
    tasks.withType<JavaCompile>().configureEach {
        options.compilerArgs.add("--enable-preview")
    }
    
    tasks.withType<Test>().configureEach {
        jvmArgs("--enable-preview")
    }
    
    tasks.withType<JavaExec>().configureEach {
        jvmArgs("--enable-preview")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
Back to top