Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for fs2 (0.28 sec)

  1. src/os/types_unix.go

    func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    func (fs *fileStat) Sys() any           { return &fs.sys }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	return fs1.sys.Dev == fs2.sys.Dev && fs1.sys.Ino == fs2.sys.Ino
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 776 bytes
    - Viewed (0)
  2. src/os/types_plan9.go

    func (fs *fileStat) Mode() FileMode     { return fs.mode }
    func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    func (fs *fileStat) Sys() any           { return fs.sys }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	a := fs1.sys.(*syscall.Dir)
    	b := fs2.sys.(*syscall.Dir)
    	return a.Qid.Path == b.Qid.Path && a.Type == b.Type && a.Dev == b.Dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 797 bytes
    - Viewed (0)
  3. src/os/types_windows.go

    		}
    	}
    	fs.name = filepathlite.Base(path)
    	return nil
    }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	e := fs1.loadFileId()
    	if e != nil {
    		return false
    	}
    	e = fs2.loadFileId()
    	if e != nil {
    		return false
    	}
    	return fs1.vol == fs2.vol && fs1.idxhi == fs2.idxhi && fs1.idxlo == fs2.idxlo
    }
    
    // For testing.
    func atime(fi FileInfo) time.Time {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/os/types.go

    // SameFile only applies to results returned by this package's [Stat].
    // It returns false in other cases.
    func SameFile(fi1, fi2 FileInfo) bool {
    	fs1, ok1 := fi1.(*fileStat)
    	fs2, ok2 := fi2.(*fileStat)
    	if !ok1 || !ok2 {
    		return false
    	}
    	return sameFile(fs1, fs2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/identity.go

    			t1.NumResults() != t2.NumResults() ||
    			t1.IsVariadic() != t2.IsVariadic() {
    			return false
    		}
    
    		fs1 := t1.ParamsResults()
    		fs2 := t2.ParamsResults()
    		for i, f1 := range fs1 {
    			if !identical(f1.Type, fs2[i].Type, flags, assumedEqual) {
    				return false
    			}
    		}
    		return true
    
    	case TARRAY:
    		if t1.NumElem() != t2.NumElem() {
    			return false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    			}
    		})
    	}
    }
    
    func TestFlowSchemaSpecChanged(t *testing.T) {
    	fs1 := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{},
    	}
    	fs2 := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{
    			MatchingPrecedence: 1,
    		},
    	}
    	fs1Defaulted := &flowcontrolv1.FlowSchema{
    		Spec: flowcontrolv1.FlowSchemaSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arch.go

    	register["FA2"] = riscv.REG_FA2
    	register["FA3"] = riscv.REG_FA3
    	register["FA4"] = riscv.REG_FA4
    	register["FA5"] = riscv.REG_FA5
    	register["FA6"] = riscv.REG_FA6
    	register["FA7"] = riscv.REG_FA7
    	register["FS2"] = riscv.REG_FS2
    	register["FS3"] = riscv.REG_FS3
    	register["FS4"] = riscv.REG_FS4
    	register["FS5"] = riscv.REG_FS5
    	register["FS6"] = riscv.REG_FS6
    	register["FS7"] = riscv.REG_FS7
    	register["FS8"] = riscv.REG_FS8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				// account for unblocking the goroutine that waits on cancelation
    				counter.Add(1)
    				cancel2()
    			}()
    			req2, idle2a := qs.StartRequest(ctx2, &fcrequest.WorkEstimate{InitialSeats: 1}, 2, "", "fs2", "test", "two", queueNoteFn(2))
    			if idle2a {
    				t.Error("2nd StartRequest returned idle")
    			}
    			if req2 != nil {
    				idle2b := req2.Finish(func() {
    					t.Error("Executing req2")
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

    - Fix libct/cg/fs2: fixed GetStats for unsupported hugetlb error on Raspbian Bullseye ([#106912](https://github.com/kubernetes/kubernetes/pull/106912), [@Letme](https://github.com/Letme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top