Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for book (0.19 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"bone":                                 "\U0001f9b4",
    	"book":                                 "\U0001f4d6",
    	"bookmark":                             "\U0001f516",
    	"bookmark_tabs":                        "\U0001f4d1",
    	"books":                                "\U0001f4da",
    	"boom":                                 "\U0001f4a5",
    	"boomerang":                            "\U0001fa83",
    	"boot":                                 "\U0001f462",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	registerNode bool
    	// List of taints to add to a node object when the kubelet registers itself.
    	registerWithTaints []v1.Taint
    	// Set to true to have the node register itself as schedulable.
    	registerSchedulable bool
    	// for internal book keeping; access only from within registerWithApiserver
    	registrationCompleted bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				// (*Link).address. This may happen due to usage of PCALIGN directives
    				// larger than Funcalign, or usage of ISA 3.1 prefixed instructions
    				// (see ISA 3.1 Book I 1.9).
    				const ppc64maxFuncalign = 64
    				sectAlign = ppc64maxFuncalign
    				va = uint64(Rnd(int64(va), ppc64maxFuncalign))
    			}
    
    			// Set the length for the previous text section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    bofa
    
    // bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
    bom
    
    // bond : 2014-06-05 ShortDot SA
    bond
    
    // boo : 2014-01-30 Charleston Road Registry Inc.
    boo
    
    // book : 2015-08-27 Amazon Registry Services, Inc.
    book
    
    // booking : 2015-07-16 Booking.com B.V.
    booking
    
    // bosch : 2015-06-18 Robert Bosch GMBH
    bosch
    
    // bostik : 2015-05-28 Bostik SA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // the called function and propagating the return type.
      bool InferShapeForCall(CallOpInterface call_op);
    
      bool InferShapeForCast(Operation* op);
    
      bool InferShapeForRestore(Operation* op);
    
      // Infers the shape IfOp outputs based on the shapes of the then and else
      // function result types.
      bool InferShapeForIf(IfOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	ForceLibrary      bool                 // this package is a library (even if named "main")
    	CmdlineFiles      bool                 // package built from files listed on command line
    	CmdlinePkg        bool                 // package listed on command line
    	CmdlinePkgLiteral bool                 // package listed as literal on command line (not via wildcard)
    	Local             bool                 // imported via local path (./ or ../)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    }
    
    // NullBool represents a bool that may be null.
    // NullBool implements the [Scanner] interface so
    // it can be used as a scan destination, similar to [NullString].
    type NullBool struct {
    	Bool  bool
    	Valid bool // Valid is true if Bool is not NULL
    }
    
    // Scan implements the [Scanner] interface.
    func (n *NullBool) Scan(value any) error {
    	if value == nil {
    		n.Bool, n.Valid = false, false
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy filter-prerouting { type filter hook prerouting priority -110 ; }
    		add chain ip kube-proxy filter-forward { type filter hook forward priority -110 ; }
    		add chain ip kube-proxy filter-input { type filter hook input priority -110 ; }
    		add chain ip kube-proxy filter-output { type filter hook output priority -110 ; }
    		add chain ip kube-proxy filter-output-post-dnat { type filter hook output priority -90 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top