Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 217 for book (0.04 sec)

  1. pkg/proxy/nftables/proxier.go

    	endpointSlicesSynced bool
    	servicesSynced       bool
    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	syncPeriod           time.Duration
    	flushed              bool
    
    	// These are effectively const and do not need the mutex to be held.
    	nftables       knftables.Interface
    	masqueradeAll  bool
    	masqueradeMark string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	n := int64(10)
    	options.GracePeriodSeconds = &n
    	return true
    }
    
    type testRESTStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    	namespaceScoped          bool
    	allowCreateOnUpdate      bool
    	allowUnconditionalUpdate bool
    }
    
    func (t *testRESTStrategy) NamespaceScoped() bool          { return t.namespaceScoped }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/iam-store.go

    	loadMappedPolicy(ctx context.Context, name string, userType IAMUserType, isGroup bool, m *xsync.MapOf[string, MappedPolicy]) error
    	loadMappedPolicyWithRetry(ctx context.Context, name string, userType IAMUserType, isGroup bool, m *xsync.MapOf[string, MappedPolicy], retries int) error
    	loadMappedPolicies(ctx context.Context, userType IAMUserType, isGroup bool, m *xsync.MapOf[string, MappedPolicy]) error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

        const absl::flat_hash_set<std::string>& denylisted_ops,
        const CustomOpMap& custom_op_map,
        int64_t minimum_elements_for_weights = 1024,
        bool disable_per_channel = false, bool weight_only_quantization = false,
        bool legacy_float_scale = false);
    
    // Overloading methods to support old quantizer versions API
    TfLiteStatus QuantizeWeights(flatbuffers::FlatBufferBuilder* builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

        bool disable_per_channel, bool fully_quantize, std::string &output_buffer,
        bool verify_numeric = false, bool whole_model_verify = false,
        bool legacy_float_scale = true,
        const absl::flat_hash_set<std::string> &denylisted_ops = {},
        const absl::flat_hash_set<std::string> &denylisted_nodes = {},
        bool enable_variable_quantization = false,
        bool disable_per_channel_for_dense_layers = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top