Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 172 for conf1 (0.05 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    					return true, nil, apierrors.NewServerTimeout(
    						schema.GroupResource{}, "create", 0)
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "super-admin.conf: admin.conf cannot create CRB, create CRB with super-admin.conf, return client from admin.conf",
    			setupAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

            }
            buildFile << """
                def quality = Attribute.of("quality", String)
    
                configurations {
                    conf.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, Usage.JAVA_API))
                    conf.attributes.attribute(quality, 'qa')
                }
    
                class AttributeRule implements ComponentMetadataRule {
                    Attribute targetAttribute
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.artifact(name: "foo", type: "jar", ext: "jar", conf: "default")
            module.artifact(name: "foo-sources", type: "jar", ext: "jar", conf: "sources")
            module.artifact(name: "foo-javadoc", type: "jar", ext: "jar", conf: "javadoc")
            module.artifact(name: "foo-api", type: "jar", ext: "jar", conf: "default")
            module.artifact(name: "foo-api-sources", type: "jar", ext: "jar", conf: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	// In go/types, conf._EnableAlias is controlled by gotypesalias.
    	conf._EnableAlias = gotypesalias.Value() != "0"
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		fset:    fset,
    		pkg:     pkg,
    		Info:    info,
    		version: asGoVersion(conf.GoVersion),
    		objMap:  make(map[Object]*declInfo),
    		impMap:  make(map[importKey]*Package),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            given:
            Assume.assumeTrue isWellBehaved(mavenCompatible, gradleCompatible)
    
            buildFile << """
                dependencies {
                    conf "org.utils:api:${selector}"
                    conf "org.utils:lib:1.+"
                }
    
                configurations.all {
                    resolutionStrategy {
                        componentSelection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. test/inline.go

    func Conv(v uint64) uint64 { // ERROR "can inline Conv"
    	return conv2(conv2(conv2(v))) // ERROR "inlining call to (conv1|conv2)"
    }
    func conv2(v uint64) uint64 { // ERROR "can inline conv2"
    	return conv1(conv1(conv1(conv1(v)))) // ERROR "inlining call to conv1"
    }
    func conv1(v uint64) uint64 { // ERROR "can inline conv1"
    	return uint64(uint64(uint64(uint64(uint64(uint64(uint64(uint64(uint64(uint64(uint64(v)))))))))))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                            assert project(":api").configurations.conf.state == Configuration.State.UNRESOLVED
    
                            configurations.conf.resolve()
    
                            assert configurations.conf.state == Configuration.State.RESOLVED
                            assert project(":api").configurations.conf.state == Configuration.State.UNRESOLVED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

            for (SoftwareComponentVariant variant : component.getUsages()) {
                String conf = mapVariantNameToIvyConfiguration(variant.getName());
                configurations.maybeCreate(conf);
                if (defaultShouldExtend(variant)) {
                    defaultConfiguration.extend(conf);
                }
            }
    
            return configurations;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                }
            }
    
            buildFile << """
                dependencies {
                   conf "$first"
                   conf "$second"
                }
    
                if ($failOnVersionConflict) {
                   configurations.conf.resolutionStrategy.failOnVersionConflict()
                }
                configurations.conf.resolutionStrategy.capabilitiesResolution.all { selectHighestVersion() }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/issues_test.go

    		t.Fatal("expected syntax error")
    	}
    
    	var conf Config
    	conf.Check(f.PkgName.Value, []*syntax.File{f}, nil) // must not panic
    }
    
    func TestIssue61938(t *testing.T) {
    	const src = `
    package p
    
    func f[T any]() {}
    func _()        { f() }
    `
    	// no error handler provided (this issue)
    	var conf Config
    	typecheck(src, &conf, nil) // must not panic
    
    	// with error handler (sanity check)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top