Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 369 for practice (0.14 sec)

  1. src/cmd/go/internal/robustio/robustio.go

    // in this package do not completely eliminate spurious errors. However, they do
    // significantly reduce the rate of failure in practice.
    //
    // If so, the error will likely wrap one of:
    // The functions in this package do not completely eliminate spurious errors,
    // but substantially reduce their rate of occurrence in practice.
    package robustio
    
    // Rename is like os.Rename, but on Windows retries errors that may occur if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. tests/integration/security/policy_attachment_only/testdata/authz/gateway-api.yaml.tmpl

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        # Exposing port 80 isn't the recommended security practice 
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 729 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

            when:
            def consumer = versionAttribute('7.0')
            def producer = [
                versionAttribute('6.0'),
                versionAttribute('7.0'),
                versionAttribute('7.0-rc-1'), // this is bad practice: targeting a not-GA version
                versionAttribute('7.1'),
                versionAttribute('8.0')
            ]
    
            then:
            schema.matcher().matches(producer, consumer, ep) == [versionAttribute('7.0')]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/net/cgo_linux.go

    */
    import "C"
    
    // NOTE(rsc): In theory there are approximately balanced
    // arguments for and against including AI_ADDRCONFIG
    // in the flags (it includes IPv4 results only on IPv4 systems,
    // and similarly for IPv6), but in practice setting it causes
    // getaddrinfo to return the wrong canonical name on Linux.
    // So definitely leave it out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 642 bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

       * very flexible regarding wildcard rules, but this flexibility is not something currently used
       * in practice. To simplify the implementation, we've avoided implementing the flexible rules in
       * favor of supporting what's actually used in practice. That means if these assertions ever fail,
       * the implementation will need to be revisited to support a more flexible rule.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/issue43658.golden

    )
    
    func main() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    	// between runs with different PRNG seeds.
    	src := rand.NewSource(1)
    
    	// Create dumbell graph:
    	//
    	//  0       4
    	//  |\     /|
    	//  | 2 - 3 |
    	//  |/     \|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

    /**
     * The persistent ID of a potential build on disk.
     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
     * Builds of the same checkout over time will share the same workspace ID.
     *
     * This ID is persisted in the root build's project cache dir.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/dist/README

    5. Using go_bootstrap, build the remaining Go 1.x standard library and commands.
    
    Because of backward compatibility, although the steps above say Go 1.20.6,
    in practice any release ≥ Go 1.20.6 but < Go 1.x will work as the bootstrap base.
    Releases ≥ Go 1.x are very likely to work as well.
    
    See https://go.dev/s/go15bootstrap for more details about the original bootstrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_goline_order.txt

    # Using an old Go version, fails during module loading, but we rewrite the error to the
    # same one a switching version would use, without the auto-switch.
    # This is a misconfigured system that should not arise in practice.
    env TESTGO_VERSION=go1.21.1
    env TESTGO_VERSION_SWITCH=switch
    cp go.work go.work.orig
    ! go list
    stderr '^go: module . listed in go.work file requires go >= 1.21.2, but go.work lists go 1.21.1; to update it:\n\tgo work use$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/RenderableDependency.java

    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    
    /**
     * A renderable dependency may be a dependency OR something related
     * to a dependency, like a header. In practice, for a single actual
     * dependency, we may render multiple renderable dependencies.
     */
    public interface RenderableDependency {
        Object getId();
        String getName();
        @Nullable
        String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 10 22:44:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top