Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,126 for convex (0.13 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Under-workman he had employed. The Polish I used was in this manner. I had two round Copper Plates, each six Inches in Diameter, the one convex, the other concave, ground very true to one another. On the convex I ground the Object-Metal or Concave which was to be polish'd, 'till it had taken the Figure of the Convex and was ready for a Polish. Then I pitched over the convex very thinly, by dropping melted Pitch upon it, and warming it to keep the Pitch soft, whilst I ground it with the concave Copper wetted...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. src/testdata/Isaac.Newton-Opticks.txt

    I used was in this manner. I had two round Copper Plates, each six
    Inches in Diameter, the one convex, the other concave, ground very true
    to one another. On the convex I ground the Object-Metal or Concave which
    was to be polish'd, 'till it had taken the Figure of the Convex and was
    ready for a Polish. Then I pitched over the convex very thinly, by
    dropping melted Pitch upon it, and warming it to keep the Pitch soft,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

     * </ul>
     *
     * <h3>Other notes</h3>
     *
     * <ul>
     *   <li>All ranges are shallow-immutable.
     *   <li>Instances of this type are obtained using the static factory methods in this class.
     *   <li>Ranges are <i>convex</i>: whenever two values are contained, all values in between them
     *       must also be contained. More formally, for any {@code c1 <= c2 <= c3} of type {@code C},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

     * </ul>
     *
     * <h3>Other notes</h3>
     *
     * <ul>
     *   <li>All ranges are shallow-immutable.
     *   <li>Instances of this type are obtained using the static factory methods in this class.
     *   <li>Ranges are <i>convex</i>: whenever two values are contained, all values in between them
     *       must also be contained. More formally, for any {@code c1 <= c2 <= c3} of type {@code C},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/context.go

    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    // Context is the core context interface that is used by resources.
    type Context interface {
    	yml.FileWriter
    
    	// TrackResource tracks a resource in this context. If the context is closed, then the resource will be
    	// cleaned up.
    	TrackResource(r Resource) ID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/context.go

    // this was not an explicit design goal of the context type. In fact, due to
    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/list/context.go

    	InstallSuffix string   `json:",omitempty"` // suffix to use in the name of the install dir
    }
    
    func newContext(c *build.Context) *Context {
    	return &Context{
    		GOARCH:        c.GOARCH,
    		GOOS:          c.GOOS,
    		GOROOT:        c.GOROOT,
    		GOPATH:        c.GOPATH,
    		CgoEnabled:    c.CgoEnabled,
    		UseAllFiles:   c.UseAllFiles,
    		Compiler:      c.Compiler,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 21:56:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/testing/fixtures/context.go

    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    // Context is a test fixture of analysis.Context
    type Context struct {
    	Resources []*resource.Instance
    	Reports   []diag.Message
    }
    
    var _ analysis.Context = &Context{}
    
    // Report implements analysis.Context
    func (ctx *Context) Report(_ config.GroupVersionKind, t diag.Message) {
    	ctx.Reports = append(ctx.Reports, t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/request/context.go

    func NewContext() context.Context {
    	return context.TODO()
    }
    
    // NewDefaultContext instantiates a base context object for request flows in the default namespace
    func NewDefaultContext() context.Context {
    	return WithNamespace(NewContext(), metav1.NamespaceDefault)
    }
    
    // WithValue returns a copy of parent in which the value associated with key is val.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 23 14:08:44 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. src/context/context.go

    	// 	var userKey key
    	//
    	// 	// NewContext returns a new Context that carries value u.
    	// 	func NewContext(ctx context.Context, u *User) context.Context {
    	// 		return context.WithValue(ctx, userKey, u)
    	// 	}
    	//
    	// 	// FromContext returns the User value stored in ctx, if any.
    	// 	func FromContext(ctx context.Context) (*User, bool) {
    	// 		u, ok := ctx.Value(userKey).(*User)
    	// 		return u, ok
    	// 	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top