Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for Option (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  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/controller/garbagecollector/garbagecollector_test.go

    				}
    			}
    
    			{
    				var actualClientActions []string
    				for _, action := range ctx.metadataClient.Actions() {
    					s := fmt.Sprintf("%s %s", action.GetVerb(), action.GetResource())
    					if action.GetNamespace() != "" {
    						s += " ns=" + action.GetNamespace()
    					}
    					if get, ok := action.(clientgotesting.GetAction); ok && get.GetName() != "" {
    						s += " name=" + get.GetName()
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

            }
    
            @Override
            public void forEach(Consumer<? super Entry<K, V>> action) {
              forEachEntry(action);
            }
          };
        }
    
        void forEachEntry(Consumer<? super Entry<K, V>> action) {
          entryIterator().forEachRemaining(action);
        }
    
        @Override
        public void clear() {
          Iterators.clear(entryIterator());
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    	_p0, status = syscall.UTF16PtrFromString(name)
    	if status != nil {
    		return
    	}
    	return _DnsQuery(_p0, qtype, options, extra, qrs, pr)
    }
    
    func _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top