Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 286 for forbidden (0.25 sec)

  1. android/guava/src/com/google/common/collect/TreeTraverser.java

     *   /|\      |
     *  / | \     f
     * a  b  c
     * }</pre>
     *
     * <p>can be iterated over in preorder (hdabcegf), postorder (abcdefgh), or breadth-first order
     * (hdegabcf).
     *
     * <p>Null nodes are strictly forbidden.
     *
     * <p>Because this is an abstract class, not an interface, you can't use a lambda expression to
     * implement it:
     *
     * <pre>{@code
     * // won't work
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    	}
    	// New defaults under PodTemplateSpec are only acceptable if they would not be applied when reading data from a previous release.
    	// Forbidden: adding a new field `MyField *bool` and defaulting it to a non-nil value
    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    		),
    		errs: field.ErrorList{
    			field.Forbidden(field.NewPath("spec"), ""),
    		},
    	}, {
    		name:   "update pod management policy 1",
    		old:    mkStatefulSet(&validPodTemplate, tweakPodManagementPolicy("")),
    		update: mkStatefulSet(&validPodTemplate, tweakPodManagementPolicy(apps.OrderedReadyPodManagement)),
    		errs: field.ErrorList{
    			field.Forbidden(field.NewPath("spec"), ""),
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    				},
    			},
    			err:  "Forbidden: pod updates may not change fields other than ",
    			test: "update pod spec OS to a valid value, featuregate disabled",
    		}, {
    			new: core.Pod{
    				Spec: core.PodSpec{
    					SchedulingGates: []core.PodSchedulingGate{{Name: "foo"}},
    				},
    			},
    			old:  core.Pod{},
    			err:  "Forbidden: only deletion is allowed, but found new scheduling gate 'foo'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            }
          }
        }
    
        /** Returns a strategy to satisfy [request] using [cacheResponse]. */
        fun compute(): CacheStrategy {
          val candidate = computeCandidate()
    
          // We're forbidden from using the network and the cache is insufficient.
          if (candidate.networkRequest != null && request.cacheControl.onlyIfCached) {
            return CacheStrategy(null, null)
          }
    
          return candidate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

       * sent.
       */
      private fun recover(
        e: IOException,
        call: RealCall,
        userRequest: Request,
        requestSendStarted: Boolean,
      ): Boolean {
        // The application layer has forbidden retries.
        if (!client.retryOnConnectionFailure) return false
    
        // We can't send the request body again.
        if (requestSendStarted && requestIsOneShot(e, userRequest)) return false
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	}
    
    	// we should not allow any new request to use this waitgroup any longer
    	if err := target.Add(1); err == nil ||
    		!strings.Contains(err.Error(), "add with positive delta after Wait is forbidden") {
    		t.Errorf("expected Add to return error while in waiting mode: %v", err)
    	}
    
    	// make sure that RateLimitedSafeWaitGroup passes the right
    	// request count to the limiter factory.
    	if factory.countGot != n2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    		if err := validateWhenUnsatisfiable(p.Child("whenUnsatisfiable"), c.WhenUnsatisfiable); err != nil {
    			allErrs = append(allErrs, err)
    		}
    		if c.LabelSelector != nil {
    			f := field.Forbidden(p.Child("labelSelector"), "constraint must not define a selector, as they deduced for each pod")
    			allErrs = append(allErrs, f)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

                                "content": {"application/json": {"schema": {}}},
                            },
                            "404": {"description": "Not found"},
                            "403": {"description": "Operation forbidden"},
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. security/pkg/k8s/configutil_test.go

    					map[string]string{dataName: "test-data"})),
    			},
    			expectedErr: "",
    			clientMod:   createConfigMapNamespaceDeletingClient,
    		},
    		{
    			name:              "creation: namespace is forbidden",
    			existingConfigMap: nil,
    			caBundle:          caBundle,
    			meta:              metav1.ObjectMeta{Namespace: constants.KubeSystemNamespace, Name: configMapName},
    			expectedActions: []ktesting.Action{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top