Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 536 for dAtA (0.04 sec)

  1. src/crypto/tls/tls.go

    	if len(cert.Certificate) == 0 {
    		if len(skippedBlockTypes) == 0 {
    			return fail(errors.New("tls: failed to find any PEM data in certificate input"))
    		}
    		if len(skippedBlockTypes) == 1 && strings.HasSuffix(skippedBlockTypes[0], "PRIVATE KEY") {
    			return fail(errors.New("tls: failed to find certificate PEM data in certificate input, but did find a private key; PEM inputs may have been switched"))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/edit.go

    	for _, r := range workFile.Replace {
    		f.Replace = append(f.Replace, replaceJSON{r.Old, r.New})
    	}
    	data, err := json.MarshalIndent(&f, "", "\t")
    	if err != nil {
    		base.Fatalf("go: internal error: %v", err)
    	}
    	data = append(data, '\n')
    	os.Stdout.Write(data)
    }
    
    // workfileJSON is the -json output data structure.
    type workfileJSON struct {
    	Go      string `json:",omitempty"`
    	Use     []useJSON
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. internal/event/target/nats.go

    	data, err := json.Marshal(event.Log{EventName: eventData.EventName, Key: key, Records: []event.Event{eventData}})
    	if err != nil {
    		return err
    	}
    
    	if target.stanConn != nil {
    		if target.args.Streaming.Async {
    			_, err = target.stanConn.PublishAsync(target.args.Subject, data, nil)
    		} else {
    			err = target.stanConn.Publish(target.args.Subject, data)
    		}
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. build/common.sh

      if [[ "${ret}" != 0 ]]; then
        kube::log::status "Creating data container ${KUBE_DATA_CONTAINER_NAME}"
        # We have to ensure the directory exists, or else the docker run will
        # create it as root.
        mkdir -p "${LOCAL_OUTPUT_GOPATH}"
        # We want this to run as root to be able to chown, so non-root users can
        # later use the result as a data container.  This run both creates the data
        # container and chowns the GOPATH.
        #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    func NewParser() *md.Parser {
    	var p md.Parser
    	p.HeadingIDs = true
    	return &p
    }
    
    // CheckFragment reports problems in a release-note fragment.
    func CheckFragment(data string) error {
    	doc := NewParser().Parse(data)
    	// Check that the content of the document contains either a TODO or at least one sentence.
    	txt := ""
    	if len(doc.Blocks) > 0 {
    		txt = text(doc)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_test.go

    	println("to update the test data.")
    	println("")
    	println("Configure it with:")
    	println("./Configure enable-weak-ssl-ciphers no-shared")
    	println("and then add the apps/ directory at the front of your PATH.")
    	println("***********************************************")
    
    	return errors.New("version of OpenSSL does not appear to be suitable for updating test data")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/iimport.go

    	dLen := r.uint64()
    
    	if sLen > math.MaxUint64-dLen {
    		errorf("lengths out of range (%d, %d)", sLen, dLen)
    	}
    
    	data, err := saferio.ReadData(r, sLen+dLen)
    	if err != nil {
    		errorf("cannot read %d bytes of stringData and declData: %s", sLen+dLen, err)
    	}
    	stringData := data[:sLen]
    	declData := data[sLen:]
    
    	p := iimporter{
    		exportVersion: version,
    		ipath:         path,
    		version:       int(version),
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/archive/tar/writer_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		data, err := io.ReadAll(tr)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if hdr.Name != curfname {
    			t.Fatalf("got filename %v, want %v",
    				curfname, hdr.Name)
    		}
    
    		origdata := fsys[curfname].Data
    		if string(data) != string(origdata) {
    			t.Fatalf("got file content %v, want %v",
    				data, origdata)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/productpage.py

    import os
    import requests
    import simplejson as json
    import sys
    
    
    # These two lines enable debugging at httplib level (requests->urllib3->http.client)
    # You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.
    # The only thing missing will be the response.body which is not logged.
    import http.client as http_client
    http_client.HTTPConnection.debuglevel = 0
    
    app = Flask(__name__)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  10. pkg/volume/projected/projected.go

    	wrapped, err := s.plugin.host.NewWrapperMounter(s.volName, wrappedVolumeSpec(), s.pod, *s.opts)
    	if err != nil {
    		return err
    	}
    
    	data, err := s.collectData(mounterArgs)
    	if err != nil {
    		klog.Errorf("Error preparing data for projected volume %v for pod %v/%v: %s", s.volName, s.pod.Namespace, s.pod.Name, err.Error())
    		return err
    	}
    
    	setupSuccess := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top