Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 177 for greatest (1.76 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// should be allowed by the policy. This field cannot be defined if the port field
    	// is not defined or if the port field is defined as a named (string) port.
    	// The endPort must be equal or greater than port.
    	// +optional
    	EndPort *int32 `json:"endPort,omitempty" protobuf:"bytes,3,opt,name=endPort"`
    }
    
    // DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    func getCostErrorMessage(costName string, expressionCost, costLimit uint64) string {
    	exceedFactor := float64(expressionCost) / float64(costLimit)
    	var factor string
    	if exceedFactor > 100.0 {
    		// if exceedFactor is greater than 2 orders of magnitude, the rule is likely O(n^2) or worse
    		// and will probably never validate without some set limits
    		// also in such cases the cost estimation is generally large enough to not add any value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	}
    
    	cache := store.rlock()
    	defer store.runlock()
    
    	v, ok := cache.iamPolicyDocsMap[name]
    	if !ok {
    		return r, errNoSuchPolicy
    	}
    	return v, nil
    }
    
    // SetPolicy - creates a policy with name.
    func (store *IAMStoreSys) SetPolicy(ctx context.Context, name string, policy policy.Policy) (time.Time, error) {
    	if policy.IsEmpty() || name == "" {
    		return time.Time{}, errInvalidArgument
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. cmd/iam.go

    	sys.usersSysType = t
    }
    
    // GetUsersSysType - returns the users system type for this IAM
    func (sys *IAMSys) GetUsersSysType() UsersSysType {
    	return sys.usersSysType
    }
    
    // NewIAMSys - creates new config system object.
    func NewIAMSys() *IAMSys {
    	return &IAMSys{
    		usersSysType: MinIOUsersSysType,
    		configLoaded: make(chan struct{}),
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			knownTypes:      sets.NewString(string("Webhook")),
    			repeatableTypes: sets.NewString(string("Webhook")),
    		},
    		{
    			name: "timeout shouldn't be greater than 30seconds",
    			configuration: api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{
    					{
    						Type: "Webhook",
    						Name: "default",
    						Webhook: &api.WebhookConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    			// will affect the addresses), and so we cannot write
    			// the Elf64_Rela.r_offset now. Instead we delay it
    			// until after the 'address' phase of the linker is
    			// complete. We do this via Addaddrplus, which creates
    			// a new R_ADDR relocation which will be resolved in
    			// the 'reloc' phase.
    			//
    			// These synthetic static R_ADDR relocs must be skipped
    			// now, or else we will be caught in an infinite loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task finalizer = createTask("finalizer")
            Task finalizerDep = task("finalizerDep", type: Async)
            Task a = task("a", type: Async, finalizedBy: [finalizer])
            // Note: this task must be "ordered" greater than the finalizer to trigger the issue
            Task b = task("zz", type: Async, dependsOn: [finalizerDep])
            relationships(finalizer, dependsOn: [finalizerDep, b])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		print("system huge page size (", physHugePageSize, ") must be a power of 2\n")
    		throw("bad system huge page size")
    	}
    	if physHugePageSize > maxPhysHugePageSize {
    		// physHugePageSize is greater than the maximum supported huge page size.
    		// Don't throw here, like in the other cases, since a system configured
    		// in this way isn't wrong, we just don't have the code to support them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    			newattr(dwh, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, getattr(hchan, dwarf.DW_AT_byte_size).Value, nil)
    		})
    
    		d.newrefattr(die, dwarf.DW_AT_type, d.defptrto(dwhs))
    	}
    }
    
    // createUnitLength creates the initial length field with value v and update
    // offset of unit_length if needed.
    func (d *dwctxt) createUnitLength(su *loader.SymbolBuilder, v uint64) {
    	if isDwarf64(d.linkctxt) {
    		su.AddUint32(d.arch, 0xFFFFFFFF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	svc1Ips := []string{"128.0.0.1"}
    	portNames := []string{"tcp-port"}
    	// Create 1 endpoint that refers to a pod in the same namespace.
    	createEndpoints(t, controller, "svc1", "nsA", portNames, svc1Ips, nil, nil)
    
    	// Creates 100 endpoints that refers to a pod in a different namespace.
    	fakeSvcCounts := 100
    	for i := 0; i < fakeSvcCounts; i++ {
    		svcName := fmt.Sprintf("svc-fake-%d", i)
    		createServiceWait(controller, svcName, "nsfake", nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top