Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 206 for Missing (3.67 sec)

  1. src/time/time.go

    		if sec < minWall || maxWall < sec {
    			return
    		}
    		t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
    	}
    	t.ext = m
    }
    
    // mono returns t's monotonic clock reading.
    // It returns 0 for a missing reading.
    // This function is used only for testing,
    // so it's OK that technically 0 is a valid
    // monotonic clock reading as well.
    func (t *Time) mono() int64 {
    	if t.wall&hasMonotonic == 0 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. cmd/erasure-healing_test.go

    				errFileNotFound,
    				nil,
    			},
    			dataErrs:         nil,
    			expectedMeta:     FileInfo{Deleted: true},
    			expectedDangling: true,
    		},
    		{
    			name: "FileInfoDecided-case3-(enough data-dir missing)",
    			metaArr: []FileInfo{
    				{},
    				{},
    				{},
    				fi,
    			},
    			errs: []error{
    				errFileNotFound,
    				errFileNotFound,
    				nil,
    				nil,
    			},
    			dataErrs: map[int][]int{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type NetworkPolicyIngressRule struct {
    	// List of ports which should be made accessible on the pods selected for this rule.
    	// Each item in this list is combined using a logical OR.
    	// If this field is empty or missing, this rule matches all ports (traffic not restricted by port).
    	// If this field is present and contains at least one item, then this rule allows traffic
    	// only if the traffic matches at least one port in the list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    					// No difference in terms of domainIPs and nothing
    					// has changed so we don't change anything on the etcd.
    					//
    					// Additionally also check if domain is updated/missing with more
    					// entries, if that is the case we should update the
    					// new domain entries as well.
    					continue
    				}
    
    				// if domain IPs intersect then it won't be an empty set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (d *dwctxt) lookupOrDiag(n string) loader.Sym {
    	symIdx := d.ldr.Lookup(n, 0)
    	if symIdx == 0 {
    		Exitf("dwarf: missing type: %s", n)
    	}
    	if len(d.ldr.Data(symIdx)) == 0 {
    		Exitf("dwarf: missing type (no data): %s", n)
    	}
    
    	return symIdx
    }
    
    func (d *dwctxt) dotypedef(parent *dwarf.DWDie, name string, def *dwarf.DWDie) *dwarf.DWDie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    				goto Error
    			}
    
    		default:
    			// TODO(gri) provide better error messages depending on context
    			check.error(e, UntypedLit, "missing type in composite literal")
    			goto Error
    		}
    
    		switch utyp := coreType(base).(type) {
    		case *Struct:
    			// Prevent crash if the struct referred to is not yet set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	// Deprecated: ErrMissingContentLength is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrMissingContentLength = &ProtocolError{"missing ContentLength in HEAD response"}
    )
    
    func badStringError(what, val string) error { return fmt.Errorf("%s %q", what, val) }
    
    // Headers that Request.Write handles itself and should be skipped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (facetInfo.minDocCount != null) {
                        termsBuilder.minDocCount(facetInfo.minDocCount);
                    }
                    if (facetInfo.missing != null) {
                        termsBuilder.missing(facetInfo.missing);
                    }
                    searchRequestBuilder.addAggregation(termsBuilder);
                }));
                stream(facetInfo.query).of(stream -> stream.forEach(fq -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	fi, err := Lstat(s.formatFile)
    	if err != nil {
    		// If the disk is still not initialized.
    		if osIsNotExist(err) {
    			if err = Access(s.drivePath); err == nil {
    				// Disk is present but missing `format.json`
    				return nil, errUnformattedDisk
    			}
    			if osIsNotExist(err) {
    				return nil, errDiskNotFound
    			} else if osIsPermission(err) {
    				return nil, errDiskAccessDenied
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  10. pkg/apis/networking/validation/validation_test.go

    		"namespaceSelector and ipBlock": makeNetworkPolicyCustom(setIngressFromNamespaceSelector, setIngressFromIPBlockIPV4),
    		"podSelector and ipBlock":       makeNetworkPolicyCustom(setEgressToPodSelector, setEgressToIPBlockIPV4),
    		"missing from and to type":      makeNetworkPolicyCustom(setIngressFromEmptyFirstElement, setEgressToEmptyFirstElement),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top