Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for limiter (1.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.Deployment.json

                              "valuesValue"
                            ]
                          }
                        ]
                      },
                      "resources": {
                        "limits": {
                          "limitsKey": "0"
                        },
                        "requests": {
                          "requestsKey": "0"
                        }
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.json

                              "valuesValue"
                            ]
                          }
                        ]
                      },
                      "resources": {
                        "limits": {
                          "limitsKey": "0"
                        },
                        "requests": {
                          "requestsKey": "0"
                        }
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ReplicationController.json

                              "valuesValue"
                            ]
                          }
                        ]
                      },
                      "resources": {
                        "limits": {
                          "limitsKey": "0"
                        },
                        "requests": {
                          "requestsKey": "0"
                        }
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

                              "valuesValue"
                            ]
                          }
                        ]
                      },
                      "resources": {
                        "limits": {
                          "limitsKey": "0"
                        },
                        "requests": {
                          "requestsKey": "0"
                        }
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy_test.go

    }
    
    func getResourceRequirements(requests, limits api.ResourceList) api.ResourceRequirements {
    	res := api.ResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    func newContainer(name string, requests api.ResourceList, limits api.ResourceList) api.Container {
    	return api.Container{
    		Name:      name,
    		Resources: getResourceRequirements(requests, limits),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	// address above 1<<47 (which we never do).
    	//
    	// arm64 hardware (as of ARMv8) limits user addresses to 48
    	// bits, in the range [0, 1<<48).
    	//
    	// ppc64, mips64, and s390x support arbitrary 64 bit addresses
    	// in hardware. On Linux, Go leans on stricter OS limits. Based
    	// on Linux's processor.h, the user address space is limited as
    	// follows on 64-bit architectures:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. pkg/controller/history/controller_history_test.go

    		informerFactory.WaitForCacheSync(stop)
    		for i := range test.revisions {
    			informer.Informer().GetIndexer().Add(test.revisions[i])
    		}
    
    		history := NewHistory(client, informer.Lister())
    		revisions, err := history.ListControllerRevisions(test.parent, test.selector)
    		if err != nil {
    			t.Errorf("%s: %s", test.name, err)
    		}
    		got := make(map[string]bool)
    		for i := range revisions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	}
    	if encodingType != "" {
    		queryValue.Set("encoding-type", encodingType)
    	}
    	if prefix != "" {
    		queryValue.Set("prefix", prefix)
    	}
    	if delimiter != "" {
    		queryValue.Set("delimiter", delimiter)
    	}
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for a new multipart upload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    			return
    		}
    	}
    
    	if s3Error == ErrAccessDenied {
    		// Set prefix value for "s3:prefix" policy conditionals.
    		r.Header.Set("prefix", "")
    
    		// Set delimiter value for "s3:delimiter" policy conditionals.
    		r.Header.Set("delimiter", SlashSeparator)
    
    		n := 0
    		// Use the following trick to filter in place
    		// https://github.com/golang/go/wiki/SliceTricks#filter-in-place
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        app: metallb
      name: pod-lister
      namespace: metallb-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: pod-lister
    subjects:
    - kind: ServiceAccount
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top