Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 540 for Bind (0.07 sec)

  1. src/main/webapp/js/admin/jquery-3.6.3.min.js

    ter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?E.find.matchesSelector(r,e)?[r]:[]:E.find.matches(e,E.grep(t,function(e){return 1===e.nodeType}))},E.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(E(e).filter(function(){for(t=0;t<r;t++)if(E.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)E.find(e,i[t],n);return 1<r?E.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e|...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/jquery-3.6.3.min.js

    ter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?E.find.matchesSelector(r,e)?[r]:[]:E.find.matches(e,E.grep(t,function(e){return 1===e.nodeType}))},E.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(E(e).filter(function(){for(t=0;t<r;t++)if(E.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)E.find(e,i[t],n);return 1<r?E.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e|...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

        Predicate::Kind kind = pred->kind();
    
        if (kind == Predicate::Kind::kAnd || kind == Predicate::Kind::kOr) {
          std::vector<Predicate*> new_operands;
          absl::c_transform(pred->GetOperands(), std::back_inserter(new_operands),
                            [&](Predicate* p) { return MakeNotPredicate(p); });
          return kind == Predicate::Kind::kOr ? MakeAndPredicate(new_operands)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName + "/scale",
    				},
    			},
    			expectError: true,
    		},
    		"resource does not implement scale": {
    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // `serverOrder` is the order we want `serverOnly` list to have.
    // kind is the kind of each item in the lists `patch` and `serverOnly`.
    func normalizeElementOrder(patch, serverOnly, patchOrder, serverOrder []interface{}, mergeKey string, kind reflect.Kind) ([]interface{}, error) {
    	patch, err := normalizeSliceOrder(patch, patchOrder, mergeKey, kind)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    				continue
    			}
    			error_(f.NamePos[n], "could not determine kind of name for C.%s", fixGo(n.Go))
    		case notStrLiteral | notType:
    			n.Kind = "iconst"
    		case notIntConst | notStrLiteral | notType:
    			n.Kind = "fconst"
    		case notIntConst | notNumConst | notType:
    			n.Kind = "sconst"
    		case notIntConst | notNumConst | notStrLiteral:
    			n.Kind = "type"
    		case notIntConst | notNumConst | notStrLiteral | notType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/reflect/type.go

    		return T == V
    	}
    
    	if nameFor(T) != nameFor(V) || T.Kind() != V.Kind() || pkgPathFor(T) != pkgPathFor(V) {
    		return false
    	}
    
    	return haveIdenticalUnderlyingType(T, V, false)
    }
    
    func haveIdenticalUnderlyingType(T, V *abi.Type, cmpTags bool) bool {
    	if T == V {
    		return true
    	}
    
    	kind := Kind(T.Kind())
    	if kind != Kind(V.Kind()) {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedEnd:
    
    		for i, v := range ind.Args {
    			if v != start {
    				continue
    			}
    
    			ind.SetArg(i, end)
    			goto replacedStart
    		}
    		panic(fmt.Sprintf("unreachable, ind: %v, start: %v, end: %v", ind, start, end))
    	replacedStart:
    
    		if nxt.Args[0] != ind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			case isLister && isWatcher:
    				doc := "list or watch objects of kind " + kind
    				if isSubresource {
    					doc = "list or watch " + subresource + " of objects of kind " + kind
    				}
    				route.Doc(doc)
    			case isWatcher:
    				doc := "watch objects of kind " + kind
    				if isSubresource {
    					doc = "watch " + subresource + "of objects of kind " + kind
    				}
    				route.Doc(doc)
    			}
    			addParams(route, action.Params)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    		t.kind == TMAP || t.kind == TCHAN || t.kind == TFUNC
    }
    
    // HasNil reports whether the set of values determined by t includes nil.
    func (t *Type) HasNil() bool {
    	switch t.kind {
    	case TCHAN, TFUNC, TINTER, TMAP, TNIL, TPTR, TSLICE, TUNSAFEPTR:
    		return true
    	}
    	return false
    }
    
    func (t *Type) IsString() bool {
    	return t.kind == TSTRING
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top