Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for Namelen (0.12 sec)

  1. pilot/pkg/config/monitor/monitor_test.go

    			return errors.New("protocol has not been updated")
    		}
    
    		return nil
    	}).Should(Succeed())
    
    	g.Eventually(func() []config.Config {
    		return store.List(gvk.Gateway, "")
    	}).Should(HaveLen(0))
    }
    
    func TestMonitorFileSnapshot(t *testing.T) {
    	ts := &testState{
    		ConfigFiles: map[string][]byte{"gateway.yml": []byte(statusRegressionYAML)},
    	}
    
    	ts.testSetup(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/config/schema/collection/schemas_test.go

    		Proto:        "google.protobuf.Struct",
    	}.MustBuild()
    )
    
    func TestSchemas_Basic(t *testing.T) {
    	g := NewWithT(t)
    
    	schemas := collection.SchemasFor(emptyResource)
    	g.Expect(schemas.All()).To(HaveLen(1))
    	g.Expect(schemas.All()[0]).To(Equal(emptyResource))
    }
    
    func TestSchemas_MustAdd(t *testing.T) {
    	g := NewWithT(t)
    	defer func() {
    		r := recover()
    		g.Expect(r).To(BeNil())
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_freebsd.go

    	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))
    }
    
    func Pipe(p []int) error {
    	return Pipe2(p, 0)
    }
    
    //sysnb pipe2(p *[2]_C_int, flags int) (err error)
    
    func Pipe2(p []int, flags int) error {
    	if len(p) != 2 {
    		return EINVAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_linux_test.go

    150 23 1:58 / /media/nfs_vol rw,relatime shared:89 - nfs4 172.18.4.223:/srv/nfs rw,vers=4.0,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=172.18.4.223,local_lock=none,addr=172.18.4.223
    `
    	tempDir, filename, err := writeFile(info)
    	if err != nil {
    		t.Fatalf("cannot create temporary file: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top