Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Option (0.22 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				fakeClock.Step(time.Second)
    			}
    
    			for _, action := range test.actions {
    				switch {
    				case action.podPopped != nil:
    					popPod(t, logger, q, action.podPopped)
    				case action.eventHappens != nil:
    					q.MoveAllToActiveOrBackoffQueue(logger, *action.eventHappens, nil, nil, nil)
    				case action.podEnqueued != nil:
    					err := q.AddUnschedulableIfNotPresent(logger, action.podEnqueued, q.SchedulingCycle())
    					if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    			UnavailableReplicas: 4,
    		},
    	}
    
    	tests := []struct {
    		deployment apps.Deployment
    		options    printers.GenerateOptions
    		expected   []metav1.TableRow
    	}{
    		// Test Deployment with no generate options.
    		{
    			deployment: testDeployment,
    			options:    printers.GenerateOptions{},
    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			},
    		},
    	}
    
    	onExitCodeRules := []batch.PodFailurePolicyRule{
    		{
    			Action: batch.PodFailurePolicyActionIgnore,
    			OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    				Operator: batch.PodFailurePolicyOnExitCodesOpIn,
    				Values:   []int32{1, 2, 3},
    			},
    		},
    		{
    			Action: batch.PodFailurePolicyActionFailJob,
    			OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    				}
    			}
    		}
    		if in.GetProvider() != nil && in.Action != security_beta.AuthorizationPolicy_CUSTOM {
    			errs = appendErrors(errs, fmt.Errorf("`provider` must not be with non CUSTOM action, found %s", in.Action))
    		}
    
    		if in.Action == security_beta.AuthorizationPolicy_DENY && in.Rules == nil {
    			errs = appendErrors(errs, fmt.Errorf("DENY action without `rules` is meaningless as it will never be triggered, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    }
                }
            """
        }
    
        def multiProjectWithJarSizeTransform(Map options = [:]) {
            String paramValue = options.paramValue ?: "1"
            String fileValue = options.fileValue ?: "String.valueOf(input.length())"
            boolean incremental = options.incremental ?: false
    
            """
                ext.paramValue = $paramValue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    			testKubelet.fakeKubeClient.AddReactor("get", "configmaps", func(action core.Action) (bool, runtime.Object, error) {
    				var err error
    				if tc.configMap == nil {
    					err = apierrors.NewNotFound(action.GetResource().GroupResource(), "configmap-name")
    				}
    				return true, tc.configMap, err
    			})
    			testKubelet.fakeKubeClient.AddReactor("get", "secrets", func(action core.Action) (bool, runtime.Object, error) {
    				var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    						actions := kubeClient.Actions()
    						if len(actions) == 0 {
    							t.Logf("No action yet")
    							return false, nil
    						}
    						for _, action := range actions {
    							if action.GetVerb() == "patch" {
    								var (
    									err          error
    									patchAction  = action.(core.PatchActionImpl)
    									patchContent = patchAction.GetPatch()
    								)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/gcprog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.publish.maven.MavenPom.getPackaging()> does not have raw return type assignable to org.gradle.api.provider.Property in (MavenPom.java:0)
    Method <org.gradle.api.publish.maven.MavenPom.issueManagement(org.gradle.api.Action)> does not have raw return type assignable to org.gradle.api.provider.Provider in (MavenPom.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top