Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for ft (0.02 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    "Not defined: $it"
                )
            }
        }
    
        @Test
        fun uuidsAreUnique() {
            val uuidList = model.stages.flatMap { it.functionalTests.map { ft -> ft.uuid } }
            assertEquals(uuidList.distinct(), uuidList)
        }
    
        @Test
        fun testsAreCorrectlyConfiguredForAllSubProjects() {
            model.subprojects.subprojects.filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    	pos := base.AutogeneratedPos
    	base.Pos = pos
    
    	// At the moment we don't support wrapping a method, we'd need machinery
    	// below to handle the receiver. Panic if we see this scenario.
    	ft := f.Nname.Type()
    	if ft.NumRecvs() != 0 {
    		base.ErrorfAt(f.Pos(), 0, "makeABIWrapper support for wrapping methods not implemented")
    		return
    	}
    
    	// Reuse f's types.Sym to create a new ODCLFUNC/function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/crypto/x509/root_windows.go

    		para.RequestedUsage.Usage.Length = 0
    		para.RequestedUsage.Usage.UsageIdentifiers = nil
    	}
    
    	var verifyTime *syscall.Filetime
    	if opts != nil && !opts.CurrentTime.IsZero() {
    		ft := syscall.NsecToFiletime(opts.CurrentTime.UnixNano())
    		verifyTime = &ft
    	}
    
    	// The default is to return only the highest quality chain,
    	// setting this flag will add additional lower quality contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    	}
    	ft := (*functype)(unsafe.Pointer(ftyp))
    	if ft.IsVariadic() {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string() + " because dotdotdot")
    	}
    	if ft.InCount != 1 {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string())
    	}
    	fint := ft.InSlice()[0]
    	switch {
    	case fint == etyp:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-Resume-HelloRetryRequest

    000000f0  42 c5 5c 95 7a 77 9a 7a  61 99 c6 44 1e e6 5d 71  |B.\.zw.za..D..]q|
    00000100  41 c8 77 d1 d4 b6 39 bb  38 57 41 b8 41 f2 02 96  |A.w...9.8WA.A...|
    00000110  d0 b0 5b 99 76 3c 2b 52  f2 8f 5f 33 94 fa 66 74  |..[.v<+R.._3..ft|
    00000120  cc f0 60 1b ee 0a 38 30  78 b2 9e 54 16 d6 71 0e  |..`...80x..T..q.|
    00000130  b2 ea 4e 0f 13 f0 6e 63  88 e7 9f 55 65 0b 00 00  |..N...nc...Ue...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/config/config.go

    	}
    	return out, nil
    }
    
    func (s *SelectionSpec) UnmarshalJSON(b []byte) error {
    	ft := []ResourceType{Namespace, Deployment, Pod, Label, Annotation, Container}
    	str := strings.TrimPrefix(strings.TrimSuffix(string(b), `"`), `"`)
    	for i, f := range strings.Split(str, "/") {
    		var err error
    		switch ft[i] {
    		case Namespace:
    			s.Namespaces = parseToIncludeTypeSlice(f)
    		case Deployment:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    // an error on transforming data from storage.
    type failingTransformer struct {
    }
    
    func (ft *failingTransformer) TransformFromStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, bool, error) {
    	return nil, false, fmt.Errorf("failed transformation")
    }
    
    func (ft *failingTransformer) TransformToStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, error) {
    	return data, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/internal/src/pos_test.go

    	f5 := NewLinePragmaBase(MakePos(f1, 5, 5), "f5", "f5", 10, 1)
    
    	// line directives from issue #19392
    	fp := NewFileBase("p.go", "p.go")
    	fc := NewLinePragmaBase(MakePos(fp, 4, 1), "c.go", "c.go", 10, 1)
    	ft := NewLinePragmaBase(MakePos(fp, 7, 1), "t.go", "t.go", 20, 1)
    	fv := NewLinePragmaBase(MakePos(fp, 10, 1), "v.go", "v.go", 30, 1)
    	ff := NewLinePragmaBase(MakePos(fp, 13, 1), "f.go", "f.go", 40, 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    type Filetime struct {
    	LowDateTime  uint32
    	HighDateTime uint32
    }
    
    // Nanoseconds returns Filetime ft in nanoseconds
    // since Epoch (00:00:00 UTC, January 1, 1970).
    func (ft *Filetime) Nanoseconds() int64 {
    	// 100-nanosecond intervals since January 1, 1601
    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    	nsec -= 116444736000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    			if Verbose() {
    				root.chatty = newChattyPrinter(root.w)
    			}
    			for _, ft := range fuzzTests {
    				if shouldFailFast() {
    					break
    				}
    				testName, matched, _ := tctx.match.fullName(nil, ft.Name)
    				if !matched {
    					continue
    				}
    				if mFuzz != nil {
    					if _, fuzzMatched, _ := mFuzz.fullName(nil, ft.Name); fuzzMatched {
    						// If this will be fuzzed, then don't run the seed corpus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top