Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for excluded (0.24 sec)

  1. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "decodableVersions": {
                "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "set"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.withUnknownList[0] != self.withUnknownList[1]",
    				"self.withUnknownList[1] == self.withUnknownList[2]",
    				"self.withUnknownList[3] == self.withUnknownList[4]",
    
    				// fields specified on the object schema that are unknown because the field's schema is unknown are also included equality checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // forEachG calls fn on every G from allgs.
    //
    // forEachG takes a lock to exclude concurrent addition of new Gs.
    func forEachG(fn func(gp *g)) {
    	lock(&allglock)
    	for _, gp := range allgs {
    		fn(gp)
    	}
    	unlock(&allglock)
    }
    
    // forEachGRace calls fn on every G from allgs.
    //
    // forEachGRace avoids locking, but does not exclude addition of new Gs during
    // execution, which may be missed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		// check the overlapping match from the first prefix information
    		for routeIndex, routePrefix := range matchHTTPRoutes {
    			for rIndex := routeIndex + 1; rIndex < len(matchHTTPRoutes); rIndex++ {
    				// exclude the duplicate-match cases which have been validated above
    				if strings.Compare(matchHTTPRoutes[rIndex].Prefix, routePrefix.Prefix) == 0 {
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	ds := newDaemonSet("foo")
    	ds2 := newDaemonSet("foo2")
    	cases := map[string]struct {
    		includeDeletedTerminal bool
    		wantedPods             []*v1.Pod
    		ignoredPods            []*v1.Pod
    	}{
    		"exclude deleted terminal pods": {
    			wantedPods: []*v1.Pod{
    				newPod("matching-owned-0-", "node-0", simpleDaemonSetLabel, ds),
    				newPod("matching-orphan-0-", "node-0", simpleDaemonSetLabel, nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org/codehaus/plexus/util/DirectoryScanner.class package org.codehaus.plexus.util; public synchronized class DirectoryScanner { public static final String[] DEFAULTEXCLUDES; protected java.io.File basedir; protected String[] includes; protected String[] excludes; protected java.util.Vector filesIncluded; protected java.util.Vector filesNotIncluded; protected java.util.Vector filesExcluded; protected java.util.Vector dirsIncluded; protected java.util.Vector dirsNotIncluded; protected java.util.Vector dirsExcluded;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Match post-expansion calls, register version.
    (SelectN [0] call:(StaticCall {sym} dst src (Const(64|32) [sz]) mem))
    	&& sz >= 0
    	&& call.Uses == 1 // this will exclude all calls with results
    	&& isSameCall(sym, "runtime.memmove")
    	&& isInlinableMemmove(dst, src, int64(sz), config)
    	&& clobber(call)
    	=> (Move {types.Types[types.TUINT8]} [int64(sz)] dst src mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top