Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for UC (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		finalSeats:    1,
    	}
    }
    
    func (uc uniformClient) setSplit() uniformClient {
    	uc.split = true
    	return uc
    }
    
    func (uc uniformClient) setInitWidth(seats uint64) uniformClient {
    	uc.initialSeats = seats
    	return uc
    }
    
    func (uc uniformClient) pad(finalSeats int, duration time.Duration) uniformClient {
    	uc.finalSeats = uint64(finalSeats)
    	uc.padDuration = duration
    	return uc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/net/splice_linux.go

    //
    // If spliceTo returns handled == false, it has performed no work.
    func spliceTo(w io.Writer, c *netFD) (written int64, err error, handled bool) {
    	uc, ok := w.(*UnixConn)
    	if !ok || uc.fd.net != "unix" {
    		return
    	}
    
    	written, handled, err = pollSplice(&uc.fd.pfd, &c.pfd, 1<<63-1)
    	return written, wrapSyscallError("splice", err), handled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. test/convT2X.go

    	}
    
    	// Test that non-interface types can be sent on a chan interface{}.
    	const n = 100
    	uc := make(chan interface{})
    	go func() {
    		for i := 0; i < n; i++ {
    			select {
    			case uc <- nil:
    			case uc <- u32:
    			case uc <- u64:
    			case uc <- u128:
    			}
    		}
    	}()
    	for i := 0; i < n; i++ {
    		if got := <-uc; got != nil && got != u32 && got != u64 && got != u128 {
    			println("recv: i", i, "got", got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 23:09:05 UTC 2012
    - 3.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue33013.dir/b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package b
    
    import "./a"
    
    type Service uint64
    type ServiceDesc struct {
    	X int
    	uc
    }
    
    type uc interface {
    	f() a.G
    }
    
    var q int
    
    func RS(svcd *ServiceDesc, server interface{}, qq uint8) *Service {
    	defer func() { q += int(qq) }()
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 403 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/tsan_shared.go

    #include <stdlib.h>
    #include <string.h>
    #include <ucontext.h>
    
    void check_params(int signo, siginfo_t *info, void *context) {
    	ucontext_t* uc = (ucontext_t*)(context);
    
    	if (info->si_signo != signo) {
    		fprintf(stderr, "info->si_signo does not match signo.\n");
    		abort();
    	}
    
    	if (uc->uc_stack.ss_size == 0) {
    		fprintf(stderr, "uc_stack has size 0.\n");
    		abort();
    	}
    }
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_unix_test.go

    	var uc *net.UnixConn
    	for fd := uintptr(3); fd <= 10; fd++ {
    		f := os.NewFile(fd, "unix-conn")
    		var ok bool
    		netc, _ := net.FileConn(f)
    		uc, ok = netc.(*net.UnixConn)
    		if ok {
    			break
    		}
    	}
    	if uc == nil {
    		fmt.Println("failed to find unix fd")
    		return
    	}
    
    	// Make a file f to send to our parent process on uc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. src/runtime/os_netbsd.go

    	}
    
    	var uc ucontextt
    	getcontext(unsafe.Pointer(&uc))
    
    	// _UC_SIGMASK does not seem to work here.
    	// It would be nice if _UC_SIGMASK and _UC_STACK
    	// worked so that we could do all the work setting
    	// the sigmask and the stack here, instead of setting
    	// the mask here and the stack in netbsdMstart.
    	// For now do the blocking manually.
    	uc.uc_flags = _UC_SIGMASK | _UC_CPU
    	uc.uc_link = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/log/uds.go

    			},
    		},
    		Timeout: time.Second,
    	}
    	uc := &udsCore{
    		client:  c,
    		url:     "http://unix" + path,
    		enc:     zapcore.NewJSONEncoder(defaultEncoderConfig),
    		buffers: make([]*buffer.Buffer, 0),
    	}
    	for l := zapcore.DebugLevel; l <= zapcore.FatalLevel; l++ {
    		if baseCore.Enabled(l) {
    			uc.minimumLevel = l
    			break
    		}
    	}
    	return zapcore.NewTee(baseCore, uc)
    }
    
    // Enabled implements zapcore.Core.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/enums.kt

    enum class A {
        B, C;
        fun d(){}
        val e: Int = 10
    }
    
    class X {
        private Y {
            enum class U {
                UB, UC;
                fun ud(){}
                val ue: Int = 10
            }
        }
    
         class P {
            enum class W {
                WB, WC;
                fun wd(){}
                val we: Int = 10
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 327 bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/tr/stopwords.txt

    seksen
    sen
    senden
    seni
    senin
    siz
    sizden
    sizi
    sizin
    şey
    şeyden
    şeyi
    şeyler
    şöyle
    şu
    şuna
    şunda
    şundan
    şunları
    şunu
    tarafından
    trilyon
    tüm
    üç
    üzere
    var
    vardı
    ve
    veya
    ya
    yani
    yapacak
    yapılan
    yapılması
    yapıyor
    yapmak
    yaptı
    yaptığı
    yaptığını
    yaptıkları
    yedi
    yerine
    yetmiş
    yine
    yirmi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.5K bytes
    - Viewed (0)
Back to top