Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for Dealer (0.14 sec)

  1. cmd/xl-storage.go

    			if fi.InlineData() {
    				// If written with header we are fine.
    				return fi, nil
    			}
    			if fi.Size == 0 || !(fi.VersionID != "" && fi.VersionID != nullVersionID) {
    				// If versioned we have no conflicts.
    				fi.SetInlineData()
    				return fi, nil
    			}
    
    			// For overwritten objects without header we might have a
    			// conflict with data written later. Check the data path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
    
            def verifFile = file("gradle/verification-keyring.${extension}")
            keyring.writePublicKeyRingTo(verifFile)
            if (header != null) {
                verifFile.setText("""$header
    ${verifFile.getText('us-ascii')}""", 'us-ascii')
            }
    
            given:
            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                withSignature {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				HTTPCheckFrequency: metav1.Duration{Duration: 60 * time.Second},
    				StaticPodURL:       "static-pod-url",
    				StaticPodURLHeader: map[string][]string{"Static-Pod-URL-Header": {"true"}},
    				Address:            "192.168.1.2",
    				Port:               10250,
    				ReadOnlyPort:       10251,
    				TLSCertFile:        "tls-cert-file",
    				TLSPrivateKeyFile:  "tls-private-key-file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    // form the DWARF line table for the specified compilation unit,
    // returning a list of symbols. The returned list will include an
    // initial symbol containing the line table header and prologue (with
    // file table), then a series of compiler-emitted line table symbols
    // (one per live function), and finally an epilog symbol containing an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		binaryOnly = nil // ignore //go:binary-only-package comments in non-Go sources
    		info.header, err = readComments(f)
    	}
    	f.Close()
    	if err != nil {
    		return info, fmt.Errorf("read %s: %v", info.name, err)
    	}
    
    	// Look for go:build comments to accept or reject the file.
    	ok, sawBinaryOnly, err := ctxt.shouldBuild(info.header, allTags)
    	if err != nil {
    		return nil, fmt.Errorf("%s: %v", name, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			reader := dwarf.Reader()
    			idx := 0
    			for _, testEntry := range test.entries {
    				if testEntry.entryNumber < idx {
    					t.Fatalf("internal test error: %d < %d", testEntry.entryNumber, idx)
    				}
    				for ; idx < testEntry.entryNumber; idx++ {
    					entry, err := reader.Next()
    					if entry == nil || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/strings",
            "@com_google_absl//absl/types:optional",
            "@local_xla//xla:parse_flags_from_env",
        ],
    )
    
    # Header-only version of "flags" library, for linking from the shared object
    # without ODR violations.
    cc_library(
        name = "flags_headers",
        hdrs = ["flags.h"],
        visibility = [":friends"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Field is left optional to allow SSL routing based on SNI hostname alone.
    	// If the SNI host in a listener conflicts with the "Host" header field used
    	// by an IngressRule, the SNI host is used for termination and value of the
    	// Host header is used for routing.
    	// +optional
    	SecretName string `json:"secretName,omitempty" protobuf:"bytes,2,opt,name=secretName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    func updateDialer(clientConfig *restclient.Config) (func(), error) {
    	if clientConfig.Transport != nil || clientConfig.Dial != nil {
    		return nil, fmt.Errorf("there is already a transport or dialer configured")
    	}
    	d := connrotation.NewDialer((&net.Dialer{Timeout: 30 * time.Second, KeepAlive: 30 * time.Second}).DialContext)
    	clientConfig.Dial = d.DialContext
    	return d.CloseAll, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) forStmt() Stmt {
    	if trace {
    		defer p.trace("forStmt")()
    	}
    
    	s := new(ForStmt)
    	s.pos = p.pos()
    
    	s.Init, s.Cond, s.Post = p.header(_For)
    	s.Body = p.blockStmt("for clause")
    
    	return s
    }
    
    func (p *parser) header(keyword token) (init SimpleStmt, cond Expr, post SimpleStmt) {
    	p.want(keyword)
    
    	if p.tok == _Lbrace {
    		if keyword == _If {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top