Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Configurable (0.21 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.util.Configurable.configure(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Configurable.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	InsecureSkipVerify bool
    
    	// CipherSuites is a list of enabled TLS 1.0–1.2 cipher suites. The order of
    	// the list is ignored. Note that TLS 1.3 ciphersuites are not configurable.
    	//
    	// If CipherSuites is nil, a safe default list is used. The default cipher
    	// suites might change over time. In Go 1.22 RSA key exchange based cipher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            //
            // https://kotlinlang.org/docs/reference/java-interop.html#getters-and-setters
            //
            // This code assumes all configurable Boolean property getters follow the `is` prefix convention.
            //
            private String booleanPropertyNameFor(String propertyName) {
                return "is" + StringUtils.capitalize(propertyName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      uint32 autoscaleMin = 3;
    
      // Maximum number of replicas in the HorizontalPodAutoscaler for Pilot.
      uint32 autoscaleMax = 4;
    
      // See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior
      google.protobuf.Struct autoscaleBehavior = 40;
    
      // Number of replicas in the Pilot Deployment.
      uint32 replicaCount = 5 [deprecated = true];
    
      // Image name used for Pilot.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:test_logging]]
    == Test logging
    
    Gradle allows fine-tuned control over events that are logged to the console.
    Logging is configurable on a per-log-level basis and by default, the following events are logged:
    
    [cols="1,1,1"]
    |===
    |When the log level is |Events that are logged | Additional configuration
    | `ERROR`, `QUIET` or `WARNING`
    | None
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `SimpleFileCollection` has been removed — use link...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		reportGatewayStatus(r, obj, classInfo, gatewayServices, servers, err)
    	}
    	// Insert a parent for Mesh references.
    	gwMap[meshParentKey] = []*parentInfo{
    		{
    			InternalName: "mesh",
    			// Mesh has no configurable AllowedKinds, so allow all supported
    			AllowedKinds: []k8s.RouteGroupKind{
    				{Group: (*k8s.Group)(ptr.Of(gvk.HTTPRoute.Group)), Kind: k8s.Kind(gvk.HTTPRoute.Kind)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    * Fix gce.getDiskByNameUnknownZone logic. ([#24452](https://github.com/kubernetes/kubernetes/pull/24452), [@a-robinson](https://github.com/a-robinson))
    * Make etcd cache size configurable ([#23914](https://github.com/kubernetes/kubernetes/pull/23914), [@jsravn](https://github.com/jsravn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ===== The following classes are now officially recognized as public API:
    - `GradleVersion`
    - `Path`
    - `Configurable`
    
    ===== The following classes have known usages in external plugins and are now deprecated and set for removal in Gradle 8.0:
    
    - `VersionNumber`
    - `TextUtil`
    - `WrapUtil`
    - `RelativePathUtil`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Groups ops into functions that only contain one dialect._
    
    Factors operations into subroutines such that all functions only
    contain a single dialect. Which of the dialects are allowed in the
    "top" function is configurable.
    
    For example, the code
      x.a()
      x.b()
      %c = y.c()
      x.d(%c)
    would be transformed into something like
      call @x_1()
      %c = call @y_1()
      call @x_2(%c)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top