Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 364 for JSpecify (0.2 sec)

  1. operator/pkg/translate/translate_common.go

    	if err != nil {
    		return false, false, fmt.Errorf("error finding component enablement path: %s in helm value.yaml tree", enabledPath)
    	}
    	if !found {
    		// Some components do not specify enablement should be treated as enabled if the root node in the component subtree exists.
    		_, found, err := tpath.Find(valueSpec, util.ToYAMLPath(valuePath))
    		if err != nil {
    			return false, false, err
    		}
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/values.yaml

      revision: ""
    
      # The customized CA address to retrieve certificates for the pods in the cluster.
      # CSR clients such as the Istio Agent and ingress gateways can use this to specify the CA endpoint.
      caAddress: ""
    
      # The customized XDS address to retrieve configuration.
      # This should include the port - 15012 for Istiod. TLS will be used with the certificates in "istiod-ca-cert" secret.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Alternatively, you could specify a different JVM installation for the build using the <<build_environment.adoc#sec:gradle_configuration_properties,`org.gradle.java.home` Gradle property>> or programmatically through the Tooling API.
    
    Building on the <<toolchains.adoc#toolchains,toolchain feature>>, you can now use declarative criteria to specify the JVM requirements for the build.
    
    === Daemon JVM criteria
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. build/root/Makefile

    #     debugging.  Any other value is ignored.
    #
    # Example:
    #   make
    #   make all
    #   make all WHAT=cmd/kubelet GOFLAGS=-v
    #   make all DBG=1
    #     Note: Specify DBG=1 for building unstripped binaries, which allows you to
    #     use code debugging tools like delve. When DBG is unspecified, it defaults
    #     to "-s -w" which strips debug information.
    endef
    .PHONY: all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    ====
    
    [.multi-language-text.lang-kotlin]
    The link:https://kotlinlang.org/docs/delegated-properties.html[Kotlin delegated properties] are part of the Gradle Kotlin DSL.
    You need to explicitly specify the type as `String`.
    If you need to branch depending on the presence of the property, you can also use `String?` and check for `null`.
    
    [.multi-language-text.lang-groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. tests/integration/README.md

    | --- |
    
    You will need to provide a K8s cluster to run the tests against.
    (See [here](https://github.com/istio/istio/blob/master/tests/integration/GKE.md)
    for info about how to set up a suitable GKE cluster.)
    You can specify the kube config file that should be used to use for connecting to the cluster, through
    command-line:
    
    ```console
    $ go test ./... -p 1 --istio.test.kube.config ~/.kube/config
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    ### 1.1.1 General form
    
    The basic formatting of Javadoc blocks is as seen in this example:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            then:
            result.assertHasErrorOutput("gradle-wrapper.properties contains distributionSha256Sum property, but the wrapper configuration does not have one. " +
                "Specify one in the wrapper task configuration or with the --gradle-distribution-sha256-sum task option")
        }
    
        private writeValidDistributionHash() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                    throw new UnresolvableModelException(
                            String.format(
                                    "The requested parent version range '%s' does not specify an upper bound",
                                    parent.getVersion()),
                            parent.getGroupId(),
                            parent.getArtifactId(),
                            parent.getVersion());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2/types.go

    type HPAScalingPolicyType string
    
    const (
    	// PodsScalingPolicy is a policy used to specify a change in absolute number of pods.
    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    	// PercentScalingPolicy is a policy used to specify a relative amount of change with respect to
    	// the current number of pods.
    	PercentScalingPolicy HPAScalingPolicyType = "Percent"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top