Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for Option (0.24 sec)

  1. cmd/site-replication.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: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/batch/validation/validation_test.go

    					PodFailurePolicy: &batch.PodFailurePolicy{
    						Rules: []batch.PodFailurePolicyRule{{
    							Action: batch.PodFailurePolicyActionIgnore,
    							OnPodConditions: []batch.PodFailurePolicyOnPodConditionsPattern{{
    								Type:   api.DisruptionTarget,
    								Status: api.ConditionTrue,
    							}},
    						}, {
    							Action: batch.PodFailurePolicyActionFailJob,
    							OnPodConditions: []batch.PodFailurePolicyOnPodConditionsPattern{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		storage.requestedFieldSelector = options.FieldSelector
    	}
    	storage.requestedResourceVersion = ""
    	if options != nil {
    		storage.requestedResourceVersion = options.ResourceVersion
    	}
    	storage.requestedResourceNamespace = request.NamespaceValue(ctx)
    	if err := storage.errors["watch"]; err != nil {
    		return nil, err
    	}
    	storage.fakeWatch = watch.NewFake()
    	return storage.fakeWatch, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // Instruction layout.
    
    const (
    	r0iszero = 1
    )
    
    const (
    	// R bit option in prefixed load/store/add D-form operations
    	PFX_R_ABS   = 0 // Offset is absolute
    	PFX_R_PCREL = 1 // Offset is relative to PC, RA should be 0
    )
    
    const (
    	// The preferred hardware nop instruction.
    	NOP = 0x60000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/strategy_test.go

    						Rules: []batch.PodFailurePolicyRule{
    							{
    								Action: batch.PodFailurePolicyActionFailJob,
    								OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    									Operator: batch.PodFailurePolicyOnExitCodesOpIn,
    									Values:   []int32{2},
    								},
    							},
    							{
    								Action: batch.PodFailurePolicyActionFailIndex,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    				// Do not signal error and continue to search
    				// for matching EVEX-encoded form.
    				z += int(yt.zoffset)
    				continue
    			}
    
    			switch o.prefix {
    			case Px1: // first option valid only in 32-bit mode
    				if ctxt.Arch.Family == sys.AMD64 && z == 0 {
    					z += int(yt.zoffset) + xo
    					continue
    				}
    			case Pq: // 16 bit escape and opcode escape
    				ab.Put2(Pe, Pm)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in: &security_beta.AuthorizationPolicy{
    				Action: security_beta.AuthorizationPolicy_CUSTOM,
    			},
    			valid: false,
    		},
    		{
    			name:        "dry-run-invalid-action-audit",
    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in: &security_beta.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		var updated *apps.DaemonSet
    		clientset.PrependReactor("update", "daemonsets", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    			if action.GetSubresource() != "status" {
    				return false, nil, nil
    			}
    			if u, ok := action.(core.UpdateAction); ok {
    				updated = u.GetObject().(*apps.DaemonSet)
    			}
    			return false, nil, nil
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. 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)
Back to top