Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for hard (0.06 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    	resourceQuota := &corev1.ResourceQuota{}
    	resourceQuota.Name = "quota"
    	resourceQuota.Namespace = "test"
    	resourceQuota.Status = corev1.ResourceQuotaStatus{
    		Hard: corev1.ResourceList{},
    		Used: corev1.ResourceList{},
    	}
    	resourceQuota.Status.Hard[corev1.ResourceMemory] = resource.MustParse("2Gi")
    	resourceQuota.Status.Used[corev1.ResourceMemory] = resource.MustParse("1Gi")
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. docs/en/data/people.yml

      url: https://github.com/alejsdev
    - login: hard-coders
      count: 10
      avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
      url: https://github.com/hard-coders
    - login: KaniKim
      count: 10
      avatarUrl: https://avatars.githubusercontent.com/u/19832624?u=40f8f7f3f36d5f2365ba2ad0b40693e60958ce70&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    				if m != nil {
    					r.Matches = []k8s.HTTPRouteMatch{*m}
    				}
    				vs, err := convertHTTPRoute(r, ctx, obj, n, !mesh)
    				// This was a hard error
    				if vs == nil {
    					res.error = err
    					return conversionResult{error: err}
    				}
    				// Got an error but also routes
    				if err != nil {
    					res.error = err
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                    module("org:d:1.0") {
                        module("org:a:2.0")
                    }
                }
            }
        }
    
        def "evicted hard dependency shouldn't add constraint on range"() {
            given:
            4.times { mavenRepo.module("org", "e", "${it + 1}").publish() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    			allProviders := append(authzServer.Providers(), localAuthzServer.Providers()...)
    			for _, provider := range allProviders {
    				t.NewSubTest(provider.Name()).Run(func(t framework.TestContext) {
    					// The ext-authz server is hard-coded to allow requests from any service account ending in
    					// "/sa/a". Since the namespace is ignored, we use ns2.B for our denied app (rather than ns2.A).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    			// listeners and then add a catch all egress listener for all
    			// other ports. Doing so allows people to restrict the set of
    			// services exposed on one or more listeners, and avoid hard
    			// port conflicts like tcp taking over http or http taking over
    			// tcp, or simply specify that of all the listeners that Istio
    			// generates, the user would like to have only specific sets of
    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. src/runtime/mprof.go

    		// then there'll also be a runtime.systemstack frame. To keep stack
    		// traces somewhat consistent whether or not static lock ranking is
    		// enabled, we'd like to skip those. But it's hard to tell how long
    		// we've been on the system stack so accept an extra frame in that case,
    		// with a leaf of "runtime.unlockWithRank runtime.unlock" instead of
    		// "runtime.unlock".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    // gracePeriodOverride if specified allows the caller to override the pod default grace period.
    // only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    // it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // Configuration for the resource quotas for the CNI DaemonSet.
    message ResourceQuotas {
      // Controls whether to create resource quotas or not for the CNI DaemonSet.
      google.protobuf.BoolValue enabled = 1;
    
      // The hard limit on the number of pods in the namespace where the CNI DaemonSet is deployed.
      int64 pods = 2;
    }
    
    // Configuration for CPU or memory target utilization for HorizontalPodAutoscaler target.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	// of the limit.
    	//
    	// The purpose of shooting lower than the limit is to ensure that, once
    	// close to the limit, the scavenger is working hard to maintain it. If
    	// we have a memory limit set but are far away from it, there's no harm
    	// in leaving up to 100-retainExtraPercent live, and it's more efficient
    	// anyway, for the same reasons that retainExtraPercent exists.
    	reduceExtraPercent = 5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top