Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fs2 (0.01 sec)

  1. 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)
  2. 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)
Back to top