Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for book (0.05 sec)

  1. samples/bookinfo/src/details/details.rb

        json = JSON.parse(response.body)
        book = json['items'][0]['volumeInfo']
    
        language = book['language'] === 'en'? 'English' : 'unknown'
        type = book['printType'] === 'BOOK'? 'paperback' : 'unknown'
        isbn10 = get_isbn(book, 'ISBN_10')
        isbn13 = get_isbn(book, 'ISBN_13')
    
        return {
            'id' => id,
            'author': book['authors'][0],
            'year': book['publishedDate'],
            'type' => type,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    func splitDocName(text string) (before, name string, foundDot bool) {
    	i := strings.LastIndex(text, ".")
    	name = text[i+1:]
    	if !isName(name) {
    		return text, "", false
    	}
    	if i >= 0 {
    		before = text[:i]
    	}
    	return before, name, true
    }
    
    // isName reports whether s is a capitalized Go identifier (like Name).
    func isName(s string) bool {
    	t, ok := ident(s)
    	if !ok || t != s {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. pkg/test/framework/components/cluster/clusters.go

    		}
    	}
    	return false
    }
    
    func exclude(exclude ...Cluster) func(Cluster) bool {
    	return func(cc Cluster) bool {
    		for _, e := range exclude {
    			if cc.Name() == e.Name() {
    				return true
    			}
    		}
    		return false
    	}
    }
    
    func (c Clusters) filterClusters(included func(Cluster) bool,
    	excluded func(Cluster) bool,
    ) Clusters {
    	var out Clusters
    	for _, cc := range c {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/iter/iter.go

    func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {
    	var (
    		v          V
    		ok         bool
    		done       bool
    		yieldNext  bool
    		racer      int
    		panicValue any
    		seqDone    bool // to detect Goexit
    	)
    	c := newcoro(func(c *coro) {
    		race.Acquire(unsafe.Pointer(&racer))
    		if done {
    			race.Release(unsafe.Pointer(&racer))
    			return
    		}
    		yield := func(v1 V) bool {
    			if done {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. api/go1.23.txt

    pkg reflect, type Type interface, CanSeq() bool #66056
    pkg reflect, type Type interface, CanSeq2() bool #66056
    pkg reflect, type Type interface, OverflowComplex(complex128) bool #60427
    pkg reflect, type Type interface, OverflowFloat(float64) bool #60427
    pkg reflect, type Type interface, OverflowInt(int64) bool #60427
    pkg reflect, type Type interface, OverflowUint(uint64) bool #60427
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/nettest.go

    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    )
    
    var (
    	stackOnce               sync.Once
    	ipv4Enabled             bool
    	canListenTCP4OnLoopback bool
    	ipv6Enabled             bool
    	canListenTCP6OnLoopback bool
    	unStrmDgramEnabled      bool
    	rawSocketSess           bool
    
    	aLongTimeAgo = time.Unix(233431200, 0)
    	neverTimeout = time.Time{}
    
    	errNoAvailableInterface = errors.New("no available interface")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/topology.go

    	return fmt.Sprintf("%s-%d", prefix, c.Index)
    }
    
    func (c Topology) IsPrimary() bool {
    	return c.Primary().Name() == c.Name()
    }
    
    func (c Topology) IsConfig() bool {
    	return c.Config().Name() == c.Name()
    }
    
    func (c Topology) IsRemote() bool {
    	return !c.IsPrimary()
    }
    
    func (c Topology) IsExternalControlPlane() bool {
    	return c.IsPrimary() && !c.IsConfig()
    }
    
    func (c Topology) Primary() Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top