Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for UC (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/util/users/users_linux.go

    				if g.name != uc.name {
    					return nil, nil, errors.Errorf("user %q has GID %d but the group with that GID is not named %q",
    						uc.name, g.id, uc.name)
    				}
    				goto skipUser // Valid group GID and name; skip
    			}
    			return nil, nil, errors.Errorf("could not find group with GID %d for user %q", user.gid, user.name)
    		}
    		u = append(u, uc)
    	skipUser:
    	}
    	// validate groups
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/err2.go

    	// issue 13467
    	var x2 rune = '✈'
    	var _ rune = C.transform(x2) // ERROR HERE: C\.int
    
    	// issue 13635: used to output error about C.unsignedchar.
    	// This test tests all such types.
    	var (
    		_ C.uchar         = "uc"  // ERROR HERE: C\.uchar
    		_ C.schar         = "sc"  // ERROR HERE: C\.schar
    		_ C.ushort        = "us"  // ERROR HERE: C\.ushort
    		_ C.uint          = "ui"  // ERROR HERE: C\.uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. android-test/src/androidTest/java/okhttp/android/test/letsencrypt/LetsEncryptClientTest.kt

            A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW
            T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH
            B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC
            B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv
            KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn
            OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                throw new UncheckedIOException(e);
            }
        }
    
        public static Properties loadProperties(URL url) {
            try {
                URLConnection uc = url.openConnection();
                uc.setUseCaches(false);
                return loadProperties(uc.getInputStream());
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top