Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for central (0.17 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

     protected:
      // This flag will control the behavior of error emitting during rewrite:
      // 1) If it's true, then patterns will only emit errors during debug or
      // tracing mode. 2) If it's false, then patterns will emit standard errors
      // when there is a rewrite failure.
      bool allow_tensorlist_pass_through_;
    
      // This flag will control the behavior of setting the batch size one when the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. go.sum

    github.com/elastic/go-elasticsearch/v7 v7.17.10/go.mod h1:OJ4wdbtDNk5g503kvlHLyErCgQwwzmDtaFC4XyOxXA4=
    github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
    github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
    github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    // CertificateRequestInfo contains information from a server's
    // CertificateRequest message, which is used to demand a certificate and proof
    // of control from a client.
    type CertificateRequestInfo struct {
    	// AcceptableCAs contains zero or more, DER-encoded, X.501
    	// Distinguished Names. These are the names of root or intermediate CAs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// tracebackOuterFrames.
    	tracebackInnerFrames = 50
    
    	// tracebackOuterFrames is the number of outermost frames to print in a
    	// stack trace.
    	tracebackOuterFrames = 50
    )
    
    // unwindFlags control the behavior of various unwinders.
    type unwindFlags uint8
    
    const (
    	// unwindPrintErrors indicates that if unwinding encounters an error, it
    	// should print a message and stop without throwing. This is used for things
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    		const wantSub = "net/url: invalid control character in URL"
    		if got := fmt.Sprint(err); !strings.Contains(got, wantSub) {
    			t.Errorf("Parse(%q) error = %q; want substring %q", s, got, wantSub)
    		}
    	}
    
    	// But don't reject non-ASCII CTLs, at least for now:
    	if _, err := Parse("http://foo.com/ctl\x80"); err != nil {
    		t.Errorf("error parsing URL with non-ASCII control byte: %v", err)
    	}
    
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    			// mode, the root requirements *are* the complete module graph.
    			mg.g.Require(mainModule, rs.rootModules)
    		} else {
    			// The transitive requirements of the main module are not in general available
    			// from the vendor directory, and we don't actually know how we got from
    			// the roots to the final build list.
    			//
    			// Instead, we'll inject a fake "vendor/modules.txt" module that provides
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// versionsWithUnchangedSchemas tracks schemas of which versions are unchanged when updating a CRD.
    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    	"math"
    	"strings"
    )
    
    // ssaMarkMoves marks any MOVXconst ops that need to avoid clobbering flags.
    func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {
    	//	flive := b.FlagsLiveAtEnd
    	//	if b.Control != nil && b.Control.Type.IsFlags() {
    	//		flive = true
    	//	}
    	//	for i := len(b.Values) - 1; i >= 0; i-- {
    	//		v := b.Values[i]
    	//		if flive && (v.Op == v.Op == ssa.OpPPC64MOVDconst) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    // number of bytes of buffer needed in R11, and returns a pointer
    // to the buffer space in R11.
    // It clobbers FLAGS. It does not clobber any general-purpose registers,
    // but may clobber others (e.g., SSE registers).
    // Typical use would be, when doing *(CX+88) = AX
    //     CMPL    $0, runtime.writeBarrier(SB)
    //     JEQ     dowrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top