Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 371 for disallow (0.31 sec)

  1. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // Healthy pods will be subject to the PDB for eviction.
      //
      // Additional policies may be added in the future.
      // Clients making eviction decisions should disallow eviction of unhealthy pods
      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/sync/atomic/type.go

    var _ = &Pointer[int]{}
    
    // A Pointer is an atomic pointer of type *T. The zero value is a nil *T.
    type Pointer[T any] struct {
    	// Mention *T in a field to disallow conversion between Pointer types.
    	// See go.dev/issue/56603 for more details.
    	// Use *T, not T, to avoid spurious recursive type definition errors.
    	_ [0]*T
    
    	_ noCopy
    	v unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/net/http/httptest/recorder_test.go

    			rec := NewRecorder()
    			h.ServeHTTP(rec, r)
    			for _, check := range tt.checks {
    				if err := check(rec); err != nil {
    					t.Error(err)
    				}
    			}
    		})
    	}
    }
    
    // issue 39017 - disallow Content-Length values such as "+3"
    func TestParseContentLength(t *testing.T) {
    	tests := []struct {
    		cl   string
    		want int64
    	}{
    		{
    			cl:   "3",
    			want: 3,
    		},
    		{
    			cl:   "+3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 23:17:38 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. src/net/http/internal/chunked.go

    	//
    	// A sender can use chunk extensions to add arbitrary amounts of additional
    	// data per byte read. ("1;very long extension\r\nX\r\n" to send "X".)
    	// We don't want to disallow extensions (although we discard them),
    	// but we also don't want to allow a sender to reduce the signal/noise ratio
    	// arbitrarily.
    	//
    	// We track the amount of excess overhead read,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_cache_test.go

    		c.ClearAll()
    		// prevented, this is stale token
    		c.Add(ep1, &model.PushRequest{Start: t2}, any2)
    		if got := c.Get(ep1); got != nil {
    			t.Fatalf("expected no cache, but got %v", got)
    		}
    	})
    
    	t.Run("disallow write with stale token after clear", func(t *testing.T) {
    		c := model.NewXdsCache()
    		t1 := time.Now()
    
    		c.Add(ep1, &model.PushRequest{Start: t1}, any1)
    		c.ClearAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. pkg/registry/apps/replicaset/strategy.go

    		groupVersion := schema.GroupVersion{Group: requestInfo.APIGroup, Version: requestInfo.APIVersion}
    		switch groupVersion {
    		case extensionsv1beta1.SchemeGroupVersion:
    			// no-op for compatibility
    		default:
    			// disallow mutation of selector
    			allErrs = append(allErrs, apivalidation.ValidateImmutableField(newReplicaSet.Spec.Selector, oldReplicaSet.Spec.Selector, field.NewPath("spec").Child("selector"))...)
    		}
    	}
    
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/HostAndPort.java

       *
       * <p>URI formatting requires that IPv6 literals be surrounded by brackets, like "[2001:db8::1]".
       * Chain this call after {@link #fromString(String)} to increase the strictness of the parser, and
       * disallow IPv6 literals that don't contain these brackets.
       *
       * <p>Note that this parser identifies IPv6 literals solely based on the presence of a colon. To
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/HostAndPort.java

       *
       * <p>URI formatting requires that IPv6 literals be surrounded by brackets, like "[2001:db8::1]".
       * Chain this call after {@link #fromString(String)} to increase the strictness of the parser, and
       * disallow IPv6 literals that don't contain these brackets.
       *
       * <p>Note that this parser identifies IPv6 literals solely based on the presence of a colon. To
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1/types.go

    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    	// if they encounter an unrecognized policy in this field.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

    property.set([1])
    """
    
            when:
            fails()
    
            then:
            failure.assertHasCause("The value for this property is final and cannot be changed any further.")
        }
    
        def "can disallow changes to a property using API without finalizing value"() {
            given:
            buildFile """
    Integer counter = 0
    def provider = providers.provider { [++counter, ++counter] }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top