Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for experts (0.16 sec)

  1. pkg/workloadapi/workload.pb.go

    	WorkloadName string `protobuf:"bytes,13,opt,name=workload_name,json=workloadName,proto3" json:"workload_name,omitempty"`
    	// If set, this indicates a workload expects to directly receive tunnel traffic.
    	// In ztunnel, this means:
    	// * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	}
    
    	// Disable any ssh connection pooling by Git.
    	// If a Git subprocess forks a child into the background to cache a new connection,
    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		}
    
    		for pcsp.Init(d.linkctxt.loader.Data(fpcsp)); !pcsp.Done; pcsp.Next() {
    			nextpc := pcsp.NextPC
    
    			// pciterinit goes up to the end of the function,
    			// but DWARF expects us to stop just before the end.
    			if int64(nextpc) == int64(len(d.ldr.Data(fn))) {
    				nextpc--
    				if nextpc < pcsp.PC {
    					continue
    				}
    			}
    
    			spdelta := int64(pcsp.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// encoding/binary helpers to write the bytes without worrying
    	// about the ordering.
    	binary.BigEndian.PutUint32(sa.raw[2:6], px_proto_oe)
    	// This field is deliberately big-endian, unlike the previous
    	// one. The kernel expects SID to be in network byte order.
    	binary.BigEndian.PutUint16(sa.raw[6:8], sa.SID)
    	copy(sa.raw[8:14], sa.Remote)
    	for i := 14; i < 14+IFNAMSIZ; i++ {
    		sa.raw[i] = 0
    	}
    	copy(sa.raw[14:], sa.Dev)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    			// into the controller, which results in syncClaim to be called
    			// shortly (and in the right worker goroutine).
    			// This speeds up binding of provisioned volumes - provisioner saves
    			// only the new PV and it expects that next syncClaim will bind the
    			// claim to it.
    			ctrl.claimQueue.Add(claimToClaimKey(claim))
    			return nil
    		} else if claim.Spec.VolumeName == volume.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. src/os/os_test.go

    		var b strings.Builder
    		io.Copy(&b, r)
    		output := b.String()
    
    		fi1, _ := Stat(strings.TrimSpace(output))
    		fi2, _ := Stat(expect)
    		if !SameFile(fi1, fi2) {
    			t.Errorf("exec %q returned %q wanted %q",
    				strings.Join(append([]string{cmd}, args...), " "), output, expect)
    		}
    		p.Wait()
    	}
    }
    
    func TestStartProcess(t *testing.T) {
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass can be used for all direct control flow lowerings from the TensorFlow
    dialect to the SCF dialect.
    ### `-prepare-tpu-computation-for-tf-export`
    
    _Prepare TPU computation to be legal for export to TensorFlow_
    
    Prepares TPU computation module attached to _TPUCompileMlir op for
    TensorFlow graph export by making transformation such as replacing or
    removing MLIR or XLA specific attributes that are not legal in TensorFlow
    graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// added the Accept-Encoding gzip header. If the Transport
    	// set it, only then do we transparently decode the gzip.
    	addedGzip bool
    
    	// Optional blocking chan for Expect: 100-continue (for send).
    	// If the request has an "Expect: 100-continue" header and
    	// the server responds 100 Continue, readLoop send a value
    	// to writeLoop via this chan.
    	continueCh chan<- struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top