Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for cautious (0.29 sec)

  1. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

                    destinationDirectory = file('dest')
                    archiveFileName = 'test.jar'
                }
            """.stripIndent()
    
            createDir('test') {
                // Use an UTF-8 caution symbol in file name
                // that will create a mojibake if encoded using another charset
                file 'mojibakeā˜”.txt'
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/services.go

    type Services []Instances
    
    // GetByService finds the first Instances with the given Service name. It is possible to have multiple deployments
    // with the same service name but different namespaces (and therefore different FQDNs). Use caution when relying on
    // Service.
    func (d Services) GetByService(service string) Target {
    	for _, target := range d {
    		if target.Config().Service == service {
    			return target
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/README.vendor

    The vendor directory may be updated with 'go mod vendor'.
    A typical sequence might be:
    
        cd src  # or src/cmd
        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Note that 'go mod vendor' only copies packages that are transitively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    In other words, a standard Maven snapshot is a module that is continually evolving, it is a "changing module".
    
    CAUTION: Using dynamic versions and changing modules can lead to unreproducible builds. As new versions of a particular module are published, its API may become incompatible with your source code. Use this feature with caution!
    
    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
         * explicitly. In most cases, explicit type error handling should be preferred.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/clusterrole.yaml

      # istio configuration
      # removing CRD permissions can break older versions of Istio running alongside this control plane (https://github.com/istio/istio/issues/29382)
      # please proceed with caution
      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["get", "watch", "list"]
        resources: ["*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    [CAUTION]
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      # istio configuration
      # removing CRD permissions can break older versions of Istio running alongside this control plane (https://github.com/istio/istio/issues/29382)
      # please proceed with caution
      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["get", "watch", "list"]
        resources: ["*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/context.go

    		typeMap:   make(map[string][]ctxtEntry),
    		originIDs: make(map[Type]int),
    	}
    }
    
    // instanceHash returns a string representation of typ instantiated with targs.
    // The hash should be a perfect hash, though out of caution the type checker
    // does not assume this. The result is guaranteed to not contain blanks.
    func (ctxt *Context) instanceHash(orig Type, targs []Type) string {
    	assert(ctxt != nil)
    	assert(orig != nil)
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

     * org.gradle.api.Project#getLogger()}, {@link org.gradle.api.Task#getLogger()} and {@link
     * org.gradle.api.Script#getLogger()}.</p>
     * <br>
     * <p><b>CAUTION!</b>
     * Logging sensitive information (credentials, tokens, certain environment variables) above {@link Logger#debug} level is a security vulnerability.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top