Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for dev2 (0.1 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    	}{
    		{
    			available:               sets.New[string]("dev1", "dev2"),
    			fromAffinityExpected:    sets.New[string]("dev2"),
    			notFromAffinityExpected: sets.New[string]("dev1"),
    			withoutTopologyExpected: sets.New[string](),
    		},
    		{
    			available:               sets.New[string]("dev1", "dev2", "dev3", "dev4"),
    			fromAffinityExpected:    sets.New[string]("dev2", "dev3", "dev4"),
    			notFromAffinityExpected: sets.New[string]("dev1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
            def dep2 = withColorVariants(remoteRepo.module("group", "thing2", "1.2")).publish().allowAll()
            withColorVariants(remoteRepo.module("group", "thing3", "1.2")).dependsOn(dep1).dependsOn(dep2).publish().allowAll()
    
            setupBuildWithColorTransformThatTakesUpstreamArtifacts()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            registry.configure(ModelActionRole.Mutate) { it.path("target").action(Bean, BiActions.doNothing()) }
    
            when:
            registry.register(ModelRegistrations.bridgedInstance(ModelReference.of("dep2", Bean), new Bean()).descriptor("dep2 creator").build())
    
            then:
            noExceptionThrown()
    
            when:
            registry.bindAllReferences()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    				iota := check.iota // capture for use in closure below (go.dev/issue/22345)
    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    				// body refers. Instead, type-check as soon as possible,
    				// but before the enclosing scope contents changes (go.dev/issue/22992).
    				check.later(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    	c := &dnsConfig{search: []string{"go.dev.", "onion."}}
    	got := c.nameList("www")
    	if !slices.Equal(got, []string{"www.", "www.go.dev."}) {
    		t.Fatalf(`nameList("www") = %v, want "www.", "www.go.dev."`, got)
    	}
    
    	got = c.nameList("www.onion")
    	if !slices.Equal(got, []string{"www.onion.go.dev."}) {
    		t.Fatalf(`nameList("www.onion") = %v, want "www.onion.go.dev."`, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		// go.dev/issue/45096
    		{`package issue45096; func _[T interface{ ~int8 | ~int16 | ~int32 }](x T) { _ = x < 0 }`, `0`, `T`},
    
    		// go.dev/issue/47895
    		{`package p; import "unsafe"; type S struct { f int }; var s S; var _ = unsafe.Offsetof(s.f)`, `s.f`, `int`},
    
    		// go.dev/issue/50093
    		{`package u0a; func _[_ interface{int}]() {}`, `int`, `int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org.utils", "dep2", '2.0').publish()
            createDirs("impl", "dep1", "dep2")
            settingsFile << 'include "impl", "dep1", "dep2"'
    
            buildFile << """
                $common
    
                project(":dep1") {
                    group "org.utils"
                    version = '1.6'
                }
    
                project(":dep2") {
                    group "org.utils"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  8. src/runtime/map.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makemap_small
    func makemap_small() *hmap {
    	h := new(hmap)
    	h.hash0 = uint32(rand())
    	return h
    }
    
    // makemap implements Go map creation for make(map[k]v, hint).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(root.ToGraph(graph.get()));
    
      for (Node* n : graph->nodes()) {
        if (absl::EndsWith(n->name(), /*suffix=*/"dev0")) {
          n->set_assigned_device_name(string(xla_gpu_dev0));
        } else if (absl::EndsWith(n->name(), /*suffix=*/"dev1")) {
          n->set_assigned_device_name(string(xla_gpu_dev1));
        }
      }
      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            def dep1 = metadata.dependencies[0]
            dep1.selector == moduleId('group-two', 'artifact-one', '11')
            dep1.scope == MavenScope.Compile
    
            def dep2 = metadata.dependencies[1]
            dep2.selector == moduleId('group-two', 'artifact-three', '11')
            dep2.scope == MavenScope.Compile
    
            def inheritedDep = metadata.dependencies[2]
            inheritedDep.selector == moduleId('group-two', 'artifact-two', '1.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
Back to top