Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for ALLOW (0.04 sec)

  1. pkg/kubelet/pod_workers_test.go

    		expectedWaitingToStartStaticPodsByFullname map[string][]types.UID
    		allowed                                    bool
    		allowedEver                                bool
    	}{
    		{
    			// TODO: Do we want to allow non-static pods with the same full name?
    			// Note that it may disable the force deletion of pods.
    			desc: "non-static pod",
    			pod:  newNamedPod("uid-0", "ns", "test", false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    				return
    			}
    		}
    
    		if globalIAMSys.LDAPConfig.Enabled() {
    			// We don't allow internal group manipulation in this API when LDAP
    			// is enabled for now.
    			err = errIAMActionNotAllowed
    		} else {
    			updatedAt, err = globalIAMSys.AddUsersToGroup(ctx, updReq.Group, updReq.Members)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. .bazelrc

    build:android --copt=-w
    build:ios --copt=-w
    build:linux --host_copt=-w
    build:macos --copt=-w
    build:windows --copt=/W0
    build:windows --host_copt=/W0
    
    # Suppress most C++ compiler warnings to reduce log size but allow
    # for specific warnings to still be present.
    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    			`<img on{{"load"}}="alert({{"loaded"}})">`,
    			// Treated as JS since quotes are inserted.
    			`<img onload="alert(&#34;loaded&#34;)">`,
    		},
    		{
    			"bad dynamic attribute name 1",
    			// Allow checked, selected, disabled, but not JS or
    			// CSS attributes.
    			`<input {{"onchange"}}="{{"doEvil()"}}">`,
    			`<input ZgotmplZ="doEvil()">`,
    		},
    		{
    			"bad dynamic attribute name 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    			// Since application protocol filter chain match has been added to the http filter chain, a fall through filter chain will be
    			// appended to the listener later to allow arbitrary egress TCP traffic pass through when its port is conflicted with existing
    			// HTTP services, which can happen when a pod accesses a non registry service.
    			if listenerOpts.bind.Primary() == actualWildcards[0] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call `ObjectInputStream.defaultReadObject`;
    - a `writeReplace` method to allow the class to nominate a replacement to be written;
    - a `readResolve` method to allow the class to nominate a replacement for the object just read;
    
    The following _Java Object Serialization_ features are **not** supported:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	if denyNotFound {
    		require.ErrorContains(t, err, "no params found for policy binding with `Deny` parameterNotFoundAction")
    	} else {
    		require.NoError(t, err, "Allow not found expects no error when no params found. Policy should have been skipped")
    	}
    	require.Empty(t, getAndResetObservedParams(), "policy should not have been evaluated")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/BUILD

            "//third_party/odml/infra/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
            "//waymo/accelerator/alpine/tools/...",
            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
            "//research/language_modeling/sentence_explorer/ondevice/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	// if the number of rewrite iterations reaches itersLimit we will
    	// at that point turn on cycle detection. Instead of a fixed limit,
    	// size the limit according to func size to allow for cases such
    	// as the one in issue #66773.
    	itersLimit := f.NumBlocks()
    	if itersLimit < 20 {
    		itersLimit = 20
    	}
    	var iters int
    	var states map[string]bool
    	for {
    		change := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top