Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 325 for Enabled (0.16 sec)

  1. platforms/enterprise/enterprise/build.gradle.kts

    }
    
    description = "Services and utilities needed by Develocity plugin"
    
    errorprone {
        disabledChecks.addAll(
            "SameNameButDifferent", // 4 occurrences
        )
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":build-operations"))
        api(project(":base-services"))
        api(project(":configuration-cache"))
        api(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/AbstractInjectedClasspathInstrumentationStrategy.kt

            return if (isThirdPartyAgentPresent) {
                // Currently, the build logic instrumentation can interfere with Java agents, such as Jacoco
                // So, disable or fail or whatever based on which execution modes are enabled
                whenThirdPartyAgentPresent()
            } else {
                CachedClasspathTransformer.StandardTransform.BuildLogic
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/build.gradle.kts

    description = "Plugins for integration with native projects in XCode and Visual Studio IDEs"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.plist)
        api(project(":base-ide-plugins"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    )
    
    // instrumentationScope is OpenTelemetry instrumentation scope name
    const instrumentationScope = "k8s.io/kubernetes/pkg/kubelet/images"
    
    // When RuntimeClassInImageCriAPI feature gate is enabled, imageRecord is
    // indexed as imageId-RuntimeHandler
    const imageIndexTupleFormat = "%s,%s"
    
    // ImageGarbageCollectedTotalReason* specify the reason why an image was garbage collected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    		return
    	}
    	if lastErr = s.EgressSelector.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.APIServerTracing) {
    		if lastErr = s.Traces.ApplyTo(genericConfig.EgressSelector, genericConfig); lastErr != nil {
    			return
    		}
    	}
    	// wrap the definitions to revert any changes from disabled features
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

      else
          echo "ERROR: Some of ETCD_APISERVER_CA_KEY, ETCD_APISERVER_CA_CERT, ETCD_APISERVER_SERVER_KEY, ETCD_APISERVER_SERVER_CERT, ETCD_APISERVER_CLIENT_KEY and ETCD_APISERVER_CLIENT_CERT are missing, mTLS between etcd server and kube-apiserver cannot be enabled. Please provide all mTLS credential."
          exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. manifests/addons/values-grafana.yaml

    # Avoid creating a bunch of RBAC rules for features we are not enabling
    rbac:
      create: false
      pspEnabled: false
    
    # Disable test pods
    testFramework:
      enabled: false
    
    podLabels:
      sidecar.istio.io/inject: "false"
    
    # Demo only, so we will have no authentication
    admin:
      existingSecret: ""
    ldap:
      existingSecret: true
    env:
      GF_SECURITY_ADMIN_USER: "admin"
      GF_SECURITY_ADMIN_PASSWORD: "admin"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Consumers will instead see the versions that your release resolved.
    
    Locking is enabled per <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,dependency configuration>>.
    Once enabled, you must create an initial lock state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		LowThresholdPercent:  int(kubeCfg.ImageGCLowThresholdPercent),
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) {
    		imageGCPolicy.MaxAge = kubeCfg.ImageMaximumGCAge.Duration
    	} else if kubeCfg.ImageMaximumGCAge.Duration != 0 {
    		klog.InfoS("ImageMaximumGCAge flag enabled, but corresponding feature gate is not enabled. Ignoring flag.")
    	}
    
    	enforceNodeAllocatable := kubeCfg.EnforceNodeAllocatable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

    description = "Collection of test fixtures for performance tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top