Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for preds (0.08 sec)

  1. src/go/types/api_test.go

    	var buf strings.Builder
    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        std::optional<int> some_pred, preferred_pred;
        for (int pred : cycles_graph_.Predecessors(current_rpo_node)) {
          if (!best_pred_for_node.contains(pred)) {
            continue;
          }
    
          // Ignore the from->to edge since we're trying to find an alternate path.
          if (current_rpo_node == to && pred == from) {
            continue;
          }
    
          some_pred = pred;
          if (GetClusterForCyclesGraphNode(pred) == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    			},
    		*/
    	}
    
    	// pred is a template function that returns the predecessor of a
    	// natural number for testing recursive templates.
    	fns := FuncMap{"pred": func(a ...any) (any, error) {
    		if len(a) == 1 {
    			if i, _ := a[0].(int); i > 0 {
    				return i - 1, nil
    			}
    		}
    		return nil, fmt.Errorf("undefined pred(%v)", a)
    	}}
    
    	for _, test := range tests {
    		source := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. cmd/iam.go

    func (sys *IAMSys) updateGroupMembershipsForLDAP(ctx context.Context) {
    	// 1. Collect all LDAP users with active creds.
    	allCreds := sys.store.GetSTSAndServiceAccounts()
    	// List of unique LDAP (parent) user DNs that have active creds
    	var parentUsers []string
    	// Map of LDAP user to list of active credential objects
    	parentUserToCredsMap := make(map[string][]auth.Credentials)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    		token.ADD: allNumeric,
    		token.SUB: allNumeric,
    		token.XOR: allInteger,
    		token.NOT: allBoolean,
    	}
    }
    
    func (check *Checker) op(m opPredicates, x *operand, op token.Token) bool {
    	if pred := m[op]; pred != nil {
    		if !pred(x.typ) {
    			check.errorf(x, UndefinedOp, invalidOp+"operator %s not defined on %s", op, x)
    			return false
    		}
    	} else {
    		check.errorf(x, InvalidSyntaxTree, "unknown operator %s", op)
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

        // CHECK-DAG:  %[[ONE:.*]] = "tf.Const"() <{value = dense<1.000000e+00> : tensor<f32>}> : () -> tensor<f32>
        // CHECK:   %[[PRED:.*]] = "tf.Greater"(%[[FEATURES]], %[[ZERO]]) : (tensor<1x4x4x3xf32>, tensor<f32>) -> tensor<1x4x4x3xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    		syntax.Add: allNumeric,
    		syntax.Sub: allNumeric,
    		syntax.Xor: allInteger,
    		syntax.Not: allBoolean,
    	}
    }
    
    func (check *Checker) op(m opPredicates, x *operand, op syntax.Operator) bool {
    	if pred := m[op]; pred != nil {
    		if !pred(x.typ) {
    			check.errorf(x, UndefinedOp, invalidOp+"operator %s not defined on %s", op, x)
    			return false
    		}
    	} else {
    		check.errorf(x, InvalidSyntaxTree, "unknown operator %s", op)
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	k8salpha "sigs.k8s.io/gateway-api/apis/v1alpha2"
    	k8sbeta "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istio "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pilot/pkg/model/kstatus"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/strings/strings_test.go

    		a := FieldsFunc(tt.s, unicode.IsSpace)
    		if !eq(a, tt.a) {
    			t.Errorf("FieldsFunc(%q, unicode.IsSpace) = %v; want %v", tt.s, a, tt.a)
    			continue
    		}
    	}
    	pred := func(c rune) bool { return c == 'X' }
    	for _, tt := range FieldsFuncTests {
    		a := FieldsFunc(tt.s, pred)
    		if !eq(a, tt.a) {
    			t.Errorf("FieldsFunc(%q) = %v, want %v", tt.s, a, tt.a)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    	ctx := r.Context()
    
    	objectAPI, creds := validateAdminReq(ctx, w, r, policy.EnableUserAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	vars := mux.Vars(r)
    	accessKey := vars["accessKey"]
    	status := vars["status"]
    
    	// you cannot enable or disable yourself.
    	if accessKey == creds.AccessKey {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top