Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,166 for conf4 (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/CachedStoreFactoryTest.groovy

            def results1 = new Object()
            def results2 = new Object()
    
            def store1 = factory.createCachedStore("conf1")
            def store1b = factory.createCachedStore("conf1")
            def store2 = factory.createCachedStore("conf2")
    
            expect:
            store1.load(() -> results1) == results1
            store1.load(() -> { assert false }) == results1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            root.outgoingEdges >> [dep(selector1, 1, 2)]
    
            def conf1 = node(2, "org", "dep1", "1.0")
            def selector2 = selector(11, "org", "dep2", "1.0")
            conf1.outgoingEdges >> [dep(selector2, 2, 3)]
    
            def conf2 = node(2, "org", "dep1", "1.0")
            def selector3 = selector(12, "org", "dep3", "1.0")
            conf2.outgoingEdges >> [dep(selector3, 2, 4)]
    
            builder.start(root)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. .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)
  5. .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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

            }
        }
        configurations { conf1; conf2 }
        dependencies {
            conf1 'group:projectA:1.0'
            conf2 'group:projectA:1.+'
        }
    
        task cache {
            def conf1 = configurations.conf1
            doLast { println conf1.files }
        }
        task retrieve(type: Sync) {
            into 'libs'
            from configurations.conf2
        }
        """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyJavaModule.groovy

        void assertApiDependencies(String... expected) {
            if (expected.length == 0) {
                assert parsedModuleMetadata.variant('apiElements').dependencies.empty
                assert parsedIvy.dependencies.findAll { it.value.confs.contains('compile') }.isEmpty()
            } else {
                assert parsedModuleMetadata.variant('apiElements').dependencies*.coords as Set == expected as Set
                parsedIvy.assertConfigurationDependsOn('compile', expected)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializer.java

                for (Configuration conf : configurations) {
                    writeConfiguration(conf);
                }
            }
    
            private void writeConfiguration(Configuration conf) throws IOException {
                writeString(conf.getName());
                writeBoolean(conf.isTransitive());
                writeBoolean(conf.isVisible());
                writeStringList(conf.getExtendsFrom());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

                configurations {
                    conf1 {
                        assert canBeResolved
                        canBeConsumed = false
                    }
                    conf2 {
                        canBeResolved = false
                        assert canBeConsumed
                    }
                }
    
                dependencies {
                    conf1 "org:foo:1.0"
                    conf2 "org:bar:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.SerializeImagePulls = true
    			return conf
    		},
    	}, {
    		name: "specify ServerTLSBootstrap without enabling RotateKubeletServerCertificate",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.FeatureGates = map[string]bool{"RotateKubeletServerCertificate": false}
    			conf.ServerTLSBootstrap = true
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top