Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,110 for conf1 (0.06 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                        confAttrs.transitive = 'false'
                    }
                    conf(confAttrs)
                }
            }
            builder.publications {
                artifacts.each { art ->
                    if (!art.undeclared) {
                        Set<String> confs = []
                        if (art.conf) {
                            confs = [art.conf]
                        } else {
                            variants.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultIvyModuleResolveMetadataTest.groovy

        }
    
        def exclude(String name, List<String> confs = []) {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId("group", name), confs as String[], "exact")
            excludes.add(exclude)
            exclude
        }
    
        def artifact(String name, List<String> confs = []) {
            artifacts.add(new Artifact(new DefaultIvyArtifactName(name, "type", "ext", "classifier"), confs as Set<String>))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. hack/logcheck.conf

    # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
    #
    # By default, structured logging call parameters are checked, but usage of
    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. .github/workflows/mint/nginx-1-node.conf

                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  /var/log/nginx/access.log  main;
        sendfile        on;
        keepalive_timeout  65;
    
        # include /etc/nginx/conf.d/*.conf;
    
        upstream minio {
            server minio1:9000;
        }
    
        upstream console {
            ip_hash;
            server minio1:9001;
        }
    
        server {
            listen       9000;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. .github/workflows/mint/nginx-4-node.conf

                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  /var/log/nginx/access.log  main;
        sendfile        on;
        keepalive_timeout  65;
    
        # include /etc/nginx/conf.d/*.conf;
    
        upstream minio {
            server minio1:9000 max_fails=1 fail_timeout=10s;
            server minio2:9000 max_fails=1 fail_timeout=10s;
            server minio3:9000 max_fails=1 fail_timeout=10s;
        }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/mint/nginx-8-node.conf

                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  /var/log/nginx/access.log  main;
        sendfile        on;
        keepalive_timeout  65;
    
        # include /etc/nginx/conf.d/*.conf;
    
        upstream minio {
            server minio1:9000 max_fails=1 fail_timeout=10s;
            server minio2:9000 max_fails=1 fail_timeout=10s;
            server minio3:9000 max_fails=1 fail_timeout=10s;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

                    dependencies[key].confs += ivyDependency.confs
                } else {
                    dependencies[key] = ivyDependency
                }
            }
    
            ivy.dependencies.exclude.each { exclude ->
                exclusions << new IvyDescriptorDependencyExclusion(org: exclude.@org, module: exclude.@module, name: exclude.@artifact, type: exclude.@type, ext: exclude.@ext, conf: exclude.@conf, matcher: exclude.@matcher)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/net/testdata/search-single-dot-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:01:14 UTC 2022
    - 67 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

            given:
            repositories {
                maven("""content {
                    onlyForConfigurations("conf2")
                }""")
            }
            buildFile << """
                configurations {
                    conf2
                }
                dependencies {
                    conf "org:foo:1.0"
                    conf2 "org:foo:1.0"
                }
                tasks.register("verify") {
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_conformance_test.go

    	"path/filepath"
    	"testing"
    
    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	"sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top