Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 244 for Rs (0.08 sec)

  1. src/net/fd_plan9.go

    }
    
    func (fd *netFD) init() error {
    	// stub for future fd.pd.Init(fd)
    	return nil
    }
    
    func (fd *netFD) name() string {
    	var ls, rs string
    	if fd.laddr != nil {
    		ls = fd.laddr.String()
    	}
    	if fd.raddr != nil {
    		rs = fd.raddr.String()
    	}
    	return fd.net + ":" + ls + "->" + rs
    }
    
    func (fd *netFD) ok() bool { return fd != nil && fd.ctl != nil }
    
    func (fd *netFD) destroy() {
    	if !fd.ok() {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 04 16:01:50 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. pkg/api/testing/serialization_test.go

    	// explicitly set the selector to something that is convertible to old-style selectors
    	// (since normally we'll fuzz the selectors with things that aren't convertible)
    	rs.Spec.Selector = &metav1.LabelSelector{
    		MatchLabels: map[string]string{
    			"foo": "bar",
    			"baz": "quux",
    		},
    	}
    
    	t.Logf("rs._internal.apps -> rs.v1.apps")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta2/defaults_test.go

    							Labels: map[string]string{
    								"foo": "bar",
    							},
    						},
    					},
    				},
    			},
    			expectReplicas: 3,
    		},
    	}
    
    	for _, test := range tests {
    		rs := &test.rs
    		obj2 := roundTrip(t, runtime.Object(rs))
    		rs2, ok := obj2.(*appsv1beta2.ReplicaSet)
    		if !ok {
    			t.Errorf("unexpected object: %v", rs2)
    			t.FailNow()
    		}
    		if rs2.Spec.Replicas == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/go.go

    			relocs := ctxt.loader.Relocs(s)
    			for i := 0; i < relocs.Count(); i++ {
    				if rs := relocs.At(i).Sym(); rs != 0 {
    					if ctxt.loader.SymType(rs) == sym.Sxxx && !ctxt.loader.AttrLocal(rs) {
    						// sanity check
    						if len(ctxt.loader.Data(rs)) != 0 {
    							panic("expected no data on undef symbol")
    						}
    						su := ctxt.loader.MakeSymbolUpdater(rs)
    						su.SetType(sym.SUNDEFEXT)
    					}
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/ProjectUtils.java

                Repository repo, ArtifactRepositoryFactory artifactRepositoryFactory, PlexusContainer c)
                throws InvalidRepositoryException {
            RepositorySystem repositorySystem = rs(c);
            RepositorySystemSession session = rss(c);
    
            ArtifactRepository repository = repositorySystem.buildArtifactRepository(repo);
    
            if (session != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. pkg/kubelet/status/state/state_mem.go

    	return nil
    }
    
    func (s *stateMemory) SetResizeStatus(rs PodResizeStatus) error {
    	s.Lock()
    	defer s.Unlock()
    	prs := make(map[string]v1.PodResizeStatus)
    	for k, v := range rs {
    		prs[k] = v
    	}
    	s.podResizeStatus = prs
    	klog.V(3).InfoS("Updated pod resize state", "resizes", rs)
    	return nil
    }
    
    func (s *stateMemory) deleteContainer(podUID string, containerName string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/defaults_test.go

    							Labels: map[string]string{
    								"foo": "bar",
    							},
    						},
    					},
    				},
    			},
    			expectReplicas: 3,
    		},
    	}
    
    	for _, test := range tests {
    		rs := &test.rs
    		obj2 := roundTrip(t, runtime.Object(rs))
    		rs2, ok := obj2.(*appsv1.ReplicaSet)
    		if !ok {
    			t.Errorf("unexpected object: %v", rs2)
    			t.FailNow()
    		}
    		if rs2.Spec.Replicas == nil {
    			t.Errorf("unexpected nil Replicas")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue33013.dir/c.go

    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Something(s int64) int64
    	Another(pxp a.G) int32
    }
    
    func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service {
    	return b.RS(sd, server, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 361 bytes
    - Viewed (0)
  9. src/net/fd_unix.go

    }
    
    func (fd *netFD) init() error {
    	return fd.pfd.Init(fd.net, true)
    }
    
    func (fd *netFD) name() string {
    	var ls, rs string
    	if fd.laddr != nil {
    		ls = fd.laddr.String()
    	}
    	if fd.raddr != nil {
    		rs = fd.raddr.String()
    	}
    	return fd.net + ":" + ls + "->" + rs
    }
    
    func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa syscall.Sockaddr, ret error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import_test.go

    	}()
    	allowMissingModuleImports = true
    	RootMode = NoRoot
    
    	ctx := context.Background()
    	rs := LoadModFile(ctx)
    
    	for _, tt := range importTests {
    		t.Run(strings.ReplaceAll(tt.path, "/", "_"), func(t *testing.T) {
    			// Note that there is no build list, so Import should always fail.
    			m, err := queryImport(ctx, tt.path, rs)
    
    			if tt.err == "" {
    				if err != nil {
    					t.Fatalf("queryImport(_, %q): %v", tt.path, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 15:29:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top