Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,047 for based (0.05 sec)

  1. hack/verify-e2e-test-ownership.sh

            # unused, but if we ever wanted to have policies based on other tags...
            # tags: \$text[\$i] | [match("(\\\[[^\\\]]+\\\])"; "g").string],
            line: \$code[\$i] | "\(.FileName):\(.LineNumber)"
          }] + [{
            sig: ((\$leafText | match("\\\[(sig-[^\\\]]+)\\\]") | .captures[0].string) // "unknown"),
            text: \$leafText,
            # unused, but if we ever wanted to have policies based on other tags...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. src/internal/syscall/execenv/execenv_default.go

    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package execenv
    
    import "syscall"
    
    // Default will return the default environment
    // variables based on the process attributes
    // provided.
    //
    // Defaults to syscall.Environ() on all platforms
    // other than Windows.
    func Default(sys *syscall.SysProcAttr) ([]string, error) {
    	return syscall.Environ(), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 489 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    func traverse(files []*ast.File) []event {
    	// Preallocate approximate number of events
    	// based on source file extent.
    	// This makes traverse faster by 4x (!).
    	var extent int
    	for _, f := range files {
    		extent += int(f.End() - f.Pos())
    	}
    	// This estimate is based on the net/http package.
    	capacity := extent * 33 / 100
    	if capacity > 1e6 {
    		capacity = 1e6 // impose some reasonable maximum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    |<<manual-tests,Manual tests>>           |<<composite_builds.adoc#composite_builds,Gradle composite builds>>
    |<<unit-tests,Unit tests>>               |Any JVM-based test framework
    |<<integration-tests,Integration tests>> |Any JVM-based test framework
    |<<functional-tests,Functional tests>>   |Any JVM-based test framework and <<test_kit.adoc#test_kit,Gradle TestKit>>
    |======================
    
    [[manual-tests]]
    == Setting up manual tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/log/logr.go

    // interface does not have a concept of Debug/Info/Warn/Error as we do. Instead,
    // logging is based on Verbosity levels, where 0 is the most important. We treat
    // levels 0-3 as info level and 4+ as debug; there are no warnings. This
    // threshold is fairly arbitrary based on inspection of Kubernetes usage and
    // https://kubernetes.io/docs/reference/kubectl/cheatsheet/#kubectl-output-verbosity-and-debugging.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

      return if (cipherSuitesAsString != null) {
        // 3 options here for ordering
        // 1) Legacy Platform - based on the Platform/Provider existing ordering in
        // sslSocket.enabledCipherSuites
        // 2) OkHttp Client - based on MODERN_TLS source code ordering
        // 3) Caller specified but assuming the visible defaults in MODERN_CIPHER_SUITES are rejigged
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. operator/docker/Dockerfile.operator

    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  9. releasenotes/notes/36422.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 29359
    
    releaseNotes:
    - |
      **Added** support for hostname-based multi-network gateways for east-west traffic. The hostname will be resolved in
      the control plane and each of the IPs will be used as an endpoint. This behaviour can be disabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 11 19:28:24 UTC 2022
    - 378 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

        /**
         * Adds a class based rule that may modify the metadata of any resolved software component.
         *
         * @param rule the rule to be added
         * @return this
         *
         * @since 4.9
         */
        ComponentMetadataHandler all(Class<? extends ComponentMetadataRule> rule);
    
        /**
         * Adds a class based rule that may modify the metadata of any resolved software component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top