Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for conf1 (0.39 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf("conf")
            when:
            def dep = conf.getTaskDependencyFromProjectDependency(false, "bar") as TasksFromDependentProjects
            then:
            dep.taskName == "bar"
            dep.configurationName == "conf"
        }
    
        def "mutations are prohibited after resolution"() {
            def conf = conf("conf")
            resolver.resolveGraph(conf) >> graphResolved()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
                configurations {
                    conf
                    conf2
                    conf3
                    conf4
                }
                dependencies {
                    conf 'org:a:1.0', 'org:b:1.0'
                    conf2 'org:a:1.0', 'org:c:1.0'
                    conf3 'org:b:1.0', 'org:c:1.0'
                    conf4 'org:b:1.0', 'org:c:1.0', 'org:d:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    	if err != nil {
    		return nil, err
    	}
    	conf := &resolvConfTest{
    		dir:            dir,
    		path:           path.Join(dir, "resolv.conf"),
    		resolverConfig: &resolvConf,
    	}
    	conf.initOnce.Do(conf.init)
    	return conf, nil
    }
    
    func (conf *resolvConfTest) write(lines []string) error {
    	f, err := os.OpenFile(conf.path, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0600)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    	}
    	return f
    }
    
    func typecheck(src string, conf *Config, info *Info) (*Package, error) {
    	fset := token.NewFileSet()
    	f := mustParse(fset, src)
    	if conf == nil {
    		conf = &Config{
    			Error:    func(err error) {}, // collect all errors
    			Importer: importer.Default(),
    		}
    	}
    	return conf.Check(f.Name.Name, fset, []*ast.File{f}, info)
    }
    
    func mustTypecheck(src string, conf *Config, info *Info) *Package {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public void runDependencyActions() {
            runActionInHierarchy(conf -> {
                conf.defaultDependencyActions.execute(conf.dependencies);
                conf.withDependencyActions.execute(conf.dependencies);
    
                // Discard actions after execution
                conf.defaultDependencyActions = ImmutableActionSet.empty();
                conf.withDependencyActions = ImmutableActionSet.empty();
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      $search_list = (Get-DnsClient).ConnectionSpecificSuffixSearchList
      $conf = ""
      ForEach ($ip in $server_ips)  {
        $conf = $conf + "nameserver $ip`r`n"
      }
      $conf = $conf + "search $search_list"
      # Do not put hostdns.conf into the CNI config directory so as to
      # avoid the container runtime treating it as CNI config.
      $hostdns_conf = "${env:CNI_DIR}\hostdns.conf"
      New-Item -Force -ItemType file ${hostdns_conf} | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
        conf("org.example:bar:1.0")
    }
    
    tasks.register("filterDependencies") {
        val files: FileCollection = conf.incoming.artifactView {
            componentFilter {
                when(it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    func mergeKubeletConfigurations(kubeletConfig *kubeletconfiginternal.KubeletConfiguration, kubeletDropInConfigDir string) error {
    	const dropinFileExtension = ".conf"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    		allocatedDevices:  make(map[string]sets.Set[string]),
    		podDevices:        newPodDevices(),
    		checkpointManager: ckm,
    	}
    
    	testManager.podDevices.insert("pod1", "con1", resourceName1,
    		constructDevices([]string{"dev1", "dev2"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev1": "/dev/r1dev1", "/dev/r1dev2": "/dev/r1dev2"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    		pr.Push = other.Push
    	}
    
    	// Do not merge when any one is empty
    	if len(pr.ConfigsUpdated) == 0 || len(other.ConfigsUpdated) == 0 {
    		pr.ConfigsUpdated = nil
    	} else {
    		for conf := range other.ConfigsUpdated {
    			pr.ConfigsUpdated.Insert(conf)
    		}
    	}
    
    	return pr
    }
    
    // CopyMerge two update requests together. Unlike Merge, this will not mutate either input.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top