Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 396 for book (0.1 sec)

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

    	return fc.le() && !fc.V()
    }
    func (fc flagConstant) gtNoov() bool {
    	return fc.gt() && !fc.V()
    }
    func (fc flagConstant) geNoov() bool {
    	return fc.ge() && !fc.V()
    }
    
    func (fc flagConstant) String() string {
    	return fmt.Sprintf("N=%v,Z=%v,C=%v,V=%v", fc.N(), fc.Z(), fc.C(), fc.V())
    }
    
    type flagConstantBuilder struct {
    	N bool
    	Z bool
    	C bool
    	V bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. cmd/erasure-healing-common.go

    	default:
    		return checkPartUnknown
    	}
    }
    
    func partNeedsHealing(partErrs []int) bool {
    	return slices.IndexFunc(partErrs, func(i int) bool { return i != checkPartSuccess && i != checkPartUnknown }) > -1
    }
    
    func hasPartErr(partErrs []int) bool {
    	return slices.IndexFunc(partErrs, func(i int) bool { return i != checkPartSuccess }) > -1
    }
    
    // disksWithAllParts - This function needs to be called with
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	reqBody          io.ReadCloser
    	cancelCtx        context.CancelFunc // when ServeHTTP exits
    	wroteHeader      bool               // a non-1xx header has been (logically) written
    	wants10KeepAlive bool               // HTTP/1.0 w/ Connection "keep-alive"
    	wantsClose       bool               // HTTP request has Connection "close"
    
    	// canWriteContinue is an atomic boolean that says whether or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	inflow          http2inflow  // peer's conn-level flow control
    	doNotReuse      bool         // whether conn is marked to not be reused for any future requests
    	closing         bool
    	closed          bool
    	seenSettings    bool                          // true if we've seen a settings frame, false otherwise
    	wantSettingsAck bool                          // we sent a SETTINGS frame and haven't heard back
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/feature/feature.go

    	EnableDynamicResourceAllocation              bool
    	EnableVolumeCapacityPriority                 bool
    	EnableNodeInclusionPolicyInPodTopologySpread bool
    	EnableMatchLabelKeysInPodTopologySpread      bool
    	EnablePodDisruptionConditions                bool
    	EnableInPlacePodVerticalScaling              bool
    	EnableSidecarContainers                      bool
    	EnableSchedulingQueueHint                    bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. cmd/storage-rest-client.go

    }
    
    // IsOnline - returns whether client failed to connect or not.
    func (client *storageRESTClient) IsOnline() bool {
    	return client.restClient.IsOnline() || client.IsOnlineWS()
    }
    
    // IsOnlineWS - returns whether websocket client failed to connect or not.
    func (client *storageRESTClient) IsOnlineWS() bool {
    	return client.gridConn.State() == grid.StateConnected
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/deadcode.go

    	ifaceMethod        map[methodsig]bool // methods called from reached interface call sites
    	genericIfaceMethod map[string]bool    // names of methods called from reached generic interface call sites
    	markableMethods    []methodref        // methods of reached types
    	reflectSeen        bool               // whether we have seen a reflect method call
    	dynlink            bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. cmd/object-api-utils.go

    func IsValidObjectName(object string) bool {
    	if len(object) == 0 {
    		return false
    	}
    	if HasSuffix(object, SlashSeparator) {
    		return false
    	}
    	return IsValidObjectPrefix(object)
    }
    
    // IsValidObjectPrefix verifies whether the prefix is a valid object name.
    // Its valid to have a empty prefix.
    func IsValidObjectPrefix(object string) bool {
    	if hasBadPathComponent(object) {
    		return false
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    				Param(ws.QueryParameter("pattern", "pattern filters log entries by the provided regex pattern").DataType("string")).
    				Param(ws.QueryParameter("boot", "boot show messages from a specific system boot").DataType("string")))
    		}
    		s.restfulCont.Add(ws)
    	} else {
    		s.restfulCont.Handle(logsPath, getHandlerForDisabledEndpoint("logs endpoint is disabled."))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. src/crypto/tls/bogo_shim_test.go

    	_                          = flag.Bool("on-resume-expect-no-ech-name-override", false, "")
    	expectedServerName         = flag.String("expect-server-name", "", "")
    
    	expectSessionMiss = flag.Bool("expect-session-miss", false, "")
    
    	_                       = flag.Bool("enable-early-data", false, "")
    	_                       = flag.Bool("on-resume-expect-accept-early-data", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top