Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for UC (0.02 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/prove.go

    				lim.umax = uint64(lim.max)
    			}
    		case unsigned:
    			uc := w.AuxUnsigned()
    			switch r {
    			case lt:
    				lim.umax = uc - 1
    			case lt | eq:
    				lim.umax = uc
    			case gt | eq:
    				lim.umin = uc
    			case gt:
    				lim.umin = uc + 1
    			case lt | gt:
    				lim = old
    				if uc == lim.umin {
    					lim.umin++
    				}
    				if uc == lim.umax {
    					lim.umax--
    				}
    			case eq:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/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: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    		}
    		uc := us.UnstructuredContent()
    
    		selectableFieldsSet = fields.Set{}
    		for _, sf := range a.selectableFieldSet {
    			if sf.err != nil {
    				return nil, fmt.Errorf("unexpected error parsing jsonPath: %w", sf.err)
    			}
    			results, err := sf.fieldPath.FindResults(uc)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top