Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for ungetc (0.35 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func port_getn(port int, pe *portEvent, max uint32, nget *uint32, timeout *Timespec) (n int, err error) {
    	r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procport_getn)), 5, uintptr(port), uintptr(unsafe.Pointer(pe)), uintptr(max), uintptr(unsafe.Pointer(nget)), uintptr(unsafe.Pointer(timeout)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    		return allErrs
    	}
    
    	if obj.Spec.Selector == nil {
    		return allErrs // This case should already have been checked in caller.  No need for more errors.
    	}
    
    	// If somehow uid was unset then we would get "controller-uid=" as the selector
    	// which is bad.
    	if obj.ObjectMeta.UID == "" {
    		allErrs = append(allErrs, field.Required(field.NewPath("metadata").Child("uid"), ""))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.setenv("GOROOT", tg.path("home/go"))
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go")
    
    	tg.setenv("GOROOT", tg.path("home/go")+"/")
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go/")
    }
    
    func TestDefaultGOPATHPrintedSearchList(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        abstract boolean isSupportsBuildOperations()
    
        abstract DomainObjectCollection<T> getContainer()
    
        abstract T getA()
    
        abstract T getB()
    
        abstract T getC()
    
        abstract <S extends T> S getD()
    
        Class<T> getType() {
            return a.class
        }
    
        @SuppressWarnings("GrUnnecessaryPublicModifier")
        public <S extends T> Class<S> getOtherType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	unreserve  change
    	prebind    change
    	postbind   change
    	postfilter change
    }
    
    func TestPlugin(t *testing.T) {
    	testcases := map[string]struct {
    		nodes       []*v1.Node // default if unset is workerNode
    		pod         *v1.Pod
    		claims      []*resourcev1alpha2.ResourceClaim
    		classes     []*resourcev1alpha2.ResourceClass
    		schedulings []*resourcev1alpha2.PodSchedulingContext
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. src/regexp/testdata/testregex.c

    T("    each test. All array elements from 0 to nmatch-1 must be specified\n");
    T("    in the outcome. Unspecified endpoints (offset -1) are denoted by ?.\n");
    T("    Unset endpoints (offset -2) are denoted by X. {x}(o:n) denotes a\n");
    T("    matched (?{...}) expression, where x is the text enclosed by {...},\n");
    T("    o is the expression ordinal counting from 1, and n is the length of\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	ldflags   string // If non-empty, build with -ldflags=X
    	buildmode string // If non-empty, -buildmode flag
    
    	env []string // Environment variables to add, as KEY=VAL. KEY= unsets a variable
    
    	runOnHost bool // When cross-compiling, run this test on the host instead of guest
    
    	// variant, if non-empty, is a name used to distinguish different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        val result = Builder()
        result.scheme = scheme
        result.encodedUsername = encodedUsername
        result.encodedPassword = encodedPassword
        result.host = host
        // If we're set to a default port, unset it in case of a scheme change.
        result.port = if (port != defaultPort(scheme)) port else -1
        result.encodedPathSegments.clear()
        result.encodedPathSegments.addAll(encodedPathSegments)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Watch(ctx context.Context, key string, opts storage.ListOptions) (watch.Interface, error) {
    	pred := opts.Predicate
    	// if the watch-list feature wasn't set and the resourceVersion is unset
    	// ensure that the rv from which the watch is being served, is the latest
    	// one. "latest" is ensured by serving the watch from
    	// the underlying storage.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		"no params found for policy binding with `Deny` parameterNotFoundAction")
    	require.Len(t, passedParams, 0)
    }
    
    // Show that policy still gets evaluated with `nil` param if paramRef & namespaceParamRef
    // are both unset
    func TestEmptyParamRef(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    	datalock := sync.Mutex{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top