Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for NIL (0.2 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			// }
    			// if k != nil && (k.Op == OCAP && SameSafeExpr(k.Left, n.Left)) {
    			//      k = nil
    			// }
    			if i == nil {
    				skip |= skipPtr
    				if j == nil {
    					skip |= skipLen
    				}
    				if k == nil {
    					skip |= skipCap
    				}
    			}
    		}
    
    		s.assignWhichMayOverlap(n.X, r, deref, skip, mayOverlap)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		lines = append(lines, "COMMIT")
    		tables[lines[0][1:]] = lines
    	}
    
    	if tables["nat"] == nil {
    		return nil, fmt.Errorf("bad ruleData (no %q table)", "nat")
    	}
    	if tables["filter"] == nil {
    		return nil, fmt.Errorf("bad ruleData (no %q table)", "filter")
    	}
    	return tables, nil
    }
    
    func TestParseIPTablesData(t *testing.T) {
    	for _, tc := range []struct {
    		name   string
    		input  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <a href="#Predeclared_identifiers"><code>nil</code></a>;
    that case is selected when the expression in the TypeSwitchGuard
    is a <code>nil</code> interface value.
    There may be at most one <code>nil</code> case.
    </p>
    
    <p>
    Given an expression <code>x</code> of type <code>interface{}</code>,
    the following type switch:
    </p>
    
    <pre>
    switch i := x.(type) {
    case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			}
    			if tt.expectedMaxCardinality == nil && curCostInfo.MaxCardinality == nil {
    				// unbounded cardinality case, test ran correctly
    			} else if tt.expectedMaxCardinality == nil && curCostInfo.MaxCardinality != nil {
    				t.Errorf("expected unbounded cardinality (got %d)", curCostInfo.MaxCardinality)
    			} else if tt.expectedMaxCardinality != nil && curCostInfo.MaxCardinality == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                      is not affine to a host.
                    type: string
                  allocations:
                    description: Array of allocations in-use within this block. nil entries
                      mean the allocation is free. For non-nil entries at index i, the
                      index is the ordinal of the allocation within this block and the
                      value is the index of the associated attributes in the Attributes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                  - type
                                  type: object
                                  x-kubernetes-validations:
                                  - message: filter.requestHeaderModifier must be nil
                                      if the filter.type is not RequestHeaderModifier
                                    rule: '!(has(self.requestHeaderModifier) && self.type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: sym == nil && n == 0
    	// result: p
    	for {
    		n := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		p := v_0
    		if p.Op != OpPPC64ADD {
    			break
    		}
    		if !(sym == nil && n == 0) {
    			break
    		}
    		v.copyOf(p)
    		return true
    	}
    	// match: (MOVDaddr {sym} [n] ptr)
    	// cond: sym == nil && n == 0 && (ptr.Op == OpArgIntReg || ptr.Op == OpPhi)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // record of Assigned config is updated. If the Assigned config is Active at the end
      // of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is
      // reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil,
      // because the local default config is always assumed good.
      // You should not make assumptions about the node's method of determining config stability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	AccessModes []PersistentVolumeAccessMode
    	// ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim.
    	// ClaimRef is expected to be non-nil when bound.
    	// claim.VolumeName is the authoritative bind between PV and PVC.
    	// When set to non-nil value, PVC.Spec.Selector of the referenced PVC is
    	// ignored, i.e. labels of this PV do not need to match PVC selector.
    	// +optional
    	ClaimRef *ObjectReference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top