Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for rulesv4 (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    // (for example AMD64.rules) contain rules specific to the architecture in the
    // filename. The rules here apply to every architecture.
    //
    // The code for parsing this file lives in rulegen.go; this file generates
    // ssa/rewritegeneric.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // shifts
    // hardware instruction uses only the low 6 bits of the shift
    // we compare to 64 to ensure Go semantics for large shifts
    // Rules about rotates with non-const shift are based on the following rules,
    // if the following rules change, please also modify the rules based on them.
    
    // check shiftIsBounded first, if shift value is proved to be valid then we
    // can do the shift directly.
    // left shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    						Name: "",
    					},
    				},
    				Rules: []*security_beta.Rule{{}},
    			},
    			valid: false,
    		},
    		{
    			name: "custom-nil-provider",
    			in: &security_beta.AuthorizationPolicy{
    				Action: security_beta.AuthorizationPolicy_CUSTOM,
    				Rules:  []*security_beta.Rule{{}},
    			},
    			valid: false,
    		},
    		{
    			name: "custom-invalid-rule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonSuccessPolicy,
    						Message: "Matched rules at index 0",
    					},
    					{
    						Type:    batch.JobComplete,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonSuccessPolicy,
    						Message: "Matched rules at index 0",
    					},
    				},
    			},
    		},
    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. cluster/gce/util.sh

      fi
    }
    
    function delete-all-firewall-rules() {
      local -a fws
      kube::util::read-array fws < <(gcloud compute firewall-rules list --project "${NETWORK_PROJECT}" --filter="network=${NETWORK}" --format="value(name)")
      if (( "${#fws[@]}" > 0 )); then
        echo "Deleting firewall rules remaining in network ${NETWORK}: ${fws[*]}"
        delete-firewall-rules "${fws[@]}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    		} else {
    			rMap[id] = rl
    		}
    	}
    
    	var rules []lifecycle.Rule
    	for _, rule := range rMap {
    		rules = append(rules, rule)
    	}
    
    	// no rules, return
    	if len(rules) == 0 {
    		return []byte{}, nil
    	}
    
    	// get final list for write
    	finalLcCfg := lifecycle.Lifecycle{
    		XMLName:         xmlName,
    		Rules:           rules,
    		ExpiryUpdatedAt: &updatedAt,
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation_test.go

    				},
    			}},
    		},
    		}, true),
    		expectedError: `webhooks[0].rules[0].operations: Required value, webhooks[0].rules[1].operations: Required value`,
    	}, {
    		name: "\"\" is NOT a valid operation",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			Rules: []admissionregistration.RuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    			},
    		},
    	}
    	successPolicy := &batch.SuccessPolicy{
    		Rules: []batch.SuccessPolicyRule{
    			{
    				SucceededIndexes: ptr.To("1,3-7"),
    				SucceededCount:   ptr.To[int32](4),
    			},
    		},
    	}
    	updatedSuccessPolicy := &batch.SuccessPolicy{
    		Rules: []batch.SuccessPolicyRule{
    			{
    				SucceededIndexes: ptr.To("1,3-7"),
    				SucceededCount:   ptr.To[int32](5),
    			},
    		},
    	}
    
    	cases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    			rules = append(rules, rule)
    		}
    	}
    	return rules
    }
    
    // checkIptables to check expected iptables chain and rules. The got rules must have same number and order as the
    // expected rules.
    func checkIptables(t *testing.T, ipt *iptablestest.FakeIPTables, epIpt netlinktest.ExpectedIptablesChain) {
    	for epChain, epRules := range epIpt {
    		rules := getRules(ipt, utiliptables.Chain(epChain))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		warnings = appendErrors(warnings, workloadSelectorValidation.Warning)
    
    		if in.Action == security_beta.AuthorizationPolicy_CUSTOM {
    			if in.Rules == nil {
    				errs = appendErrors(errs, fmt.Errorf("CUSTOM action without `rules` is meaningless as it will never be triggered, "+
    					"add an empty rule `{}` if you want it be triggered for every request"))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top