Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for sic (0.06 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    	if features.EnableMCSHost {
    		sic := &serviceImportCacheImpl{
    			Controller: c,
    		}
    
    		sic.serviceImports = kclient.NewDelayedInformer[controllers.Object](sic.client, mcs.ServiceImportGVR, kubetypes.DynamicInformer, kclient.Filter{
    			ObjectFilter: sic.client.ObjectFilter(),
    		})
    		// Register callbacks for events.
    		registerHandlers(sic.Controller, sic.serviceImports, "ServiceImports", sic.onServiceImportEvent, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_freebsd_arm.go

    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_freebsd_386.go

    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go

    	msghdr.Iovlen = int32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic
    
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_errors.txt

    -- badimport/go.mod --
    module example.com/badimport
    
    go 1.16
    -- badimport/badimport.go --
    package badimport
    
    import "example.net/oops"
    -- badimport/syntaxerror/syntaxerror.go --
    pack-age syntaxerror // sic
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/syscall/syscall_darwin_arm64.go

    // Implemented in the runtime package (runtime/sys_darwin_64.go)
    func syscallX(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    func badFormatAt(info *types.Info, e ast.Expr) int {
    	tv, ok := info.Types[e]
    	if !ok { // no type info, assume good
    		return -1
    	}
    
    	t, ok := tv.Type.(*types.Basic) // sic, no unalias
    	if !ok || t.Info()&types.IsString == 0 {
    		return -1
    	}
    
    	if tv.Value == nil {
    		return -1
    	}
    
    	return strings.Index(constant.StringVal(tv.Value), badFormat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/unicode/utf8/utf8_test.go

    	{string("\xc0\x80"), false},             // U+0000 encoded in two bytes: incorrect
    	{string("\xed\xa0\x80"), false},         // U+D800 high surrogate (sic)
    	{string("\xed\xbf\xbf"), false},         // U+DFFF low surrogate (sic)
    }
    
    func TestValid(t *testing.T) {
    	for _, tt := range validTests {
    		if Valid([]byte(tt.in)) != tt.out {
    			t.Errorf("Valid(%q) = %v; want %v", tt.in, !tt.out, tt.out)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. src/fmt/scan.go

    }
    
    func (s *ss) notEOF() {
    	// Guarantee there is data to be read.
    	if r := s.getRune(); r == eof {
    		panic(io.EOF)
    	}
    	s.UnreadRune()
    }
    
    // accept checks the next rune in the input. If it's a byte (sic) in the string, it puts it in the
    // buffer and returns true. Otherwise it return false.
    func (s *ss) accept(ok string) bool {
    	return s.consume(ok, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/vcs.go

    			_, err = f.Seek(0, io.SeekStart)
    		}
    	} else if r.cmd.vcs == "fossil" {
    		// If you run
    		//	fossil zip -R .fossil --name prefix trunk /tmp/x.zip
    		// fossil fails with "unable to create directory /tmp" [sic].
    		// Change the command to run in /tmp instead,
    		// replacing the -R argument with an absolute path.
    		args := r.cmd.readZip(rev, subdir, r.remote, filepath.Base(f.Name()))
    		for i := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top