Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for dev2 (0.04 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // using the HCI protocol.
    type SockaddrHCI struct {
    	Dev     uint16
    	Channel uint16
    	raw     RawSockaddrHCI
    }
    
    func (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_BLUETOOTH
    	sa.raw.Dev = sa.Dev
    	sa.raw.Channel = sa.Channel
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrHCI, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	os.Setenv("GOPPC64", goppc64)
    	os.Setenv("GORISCV64", goriscv64)
    	os.Setenv("GOROOT", goroot)
    
    	// Set GOBIN to GOROOT/bin. The meaning of GOBIN has drifted over time
    	// (see https://go.dev/issue/3269, https://go.dev/cl/183058,
    	// https://go.dev/issue/31576). Since we want binaries installed by 'dist' to
    	// always go to GOROOT/bin anyway.
    	os.Setenv("GOBIN", gorootBin)
    
    	// Make the environment more predictable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top