Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Executable (0.5 sec)

  1. src/cmd/link/internal/ld/data.go

    		}
    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    		// rodata and executable text.
    		//
    		// Note: gold or GNU ld will reduce the size of the executable
    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	a.built = a.Target
    	return BuildToolchain.ldShared(b, a, a.Deps[0].Deps, a.Target, importcfg, a.Deps)
    }
    
    // BuildInstallFunc is the action for installing a single package or executable.
    func BuildInstallFunc(b *Builder, ctx context.Context, a *Action) (err error) {
    	defer func() {
    		if err != nil {
    			// a.Package == nil is possible for the go install -buildmode=shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. CREDITS

    attempt to alter or restrict the recipients' rights in the Source Code
    Form.
    
    3.2. Distribution of Executable Form
    
    If You distribute Covered Software in Executable Form then:
    
    (a) such Covered Software must also be made available in Source Code
        Form, as described in Section 3.1, and You must inform recipients of
        the Executable Form how they can obtain a copy of such Source Code
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		}
    		return 0, 0, err
    	}
    
    	execName := "getsubids"
    	cmd, err := exec.LookPath(execName)
    	if err != nil {
    		if os.IsNotExist(err) {
    			klog.V(2).InfoS("Could not find executable, default mappings will be used for the user namespaces", "executable", execName, "err", err)
    			return defaultFirstID, defaultLen, nil
    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/time/format.go

    // to the layout defined by the argument. See the documentation for the
    // constant called [Layout] to see how to represent the layout format.
    //
    // The executable example for [Time.Format] demonstrates the working
    // of the layout string in detail and is a good reference.
    func (t Time) Format(layout string) string {
    	const bufSize = 64
    	var b []byte
    	max := len(layout) + 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        auto* inner_op = &control_node_op.getBody().front().front();
        auto control_token = control_node_op.getControl();
    
        // Now go through all uses. Since *block is in executable order, control
        // edges always point to operations we haven't modified yet.
        for (auto& use : control_token.getUses()) {
          auto owner = use.getOwner();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

          sed -i "s|image:.*|image: ${GCE_GLBC_IMAGE}|" "${dest_manifest}"
        fi
      fi
    }
    
    # Setup working directory for kubelet.
    function setup-kubelet-dir {
        echo "Making /var/lib/kubelet executable for kubelet"
        mount -B /var/lib/kubelet /var/lib/kubelet/
        mount -B -o remount,exec,suid,dev /var/lib/kubelet
    
        # TODO(#60123): The kubelet should create the cert-dir directory if it doesn't exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. RELEASE.md

        *   Post-training quantization tool supports quantizing weights shared by
            multiple operations. The models made with versions of this tool will use
            INT8 types for weights and will only be executable interpreters from
            this version onwards.
        *   Post-training quantization tool supports fp16 weights and GPU delegate
            acceleration for fp16.
        *   Add delegate support for `QUANTIZED_16BIT_LSTM`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * Fix link in "Deployment" to "Bigger Applications".
    
    ## 0.8.0
    
    * Make development scripts executable. PR [#76](https://github.com/tiangolo/fastapi/pull/76) by [@euri10](https://github.com/euri10).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        BoolAttr:$must_compile,
        SymbolRefAttr:$function
      );
    
      let results = (outs
        Res<TF_StrTensor, [{A key that can be used to look up the local executable compiled by the
    node and associated metadata.}]>:$key,
        Res<TF_BoolTensor, [{If the `must_compile` attr is false the _XlaCompile op
    can decide not to compile the clusters based on some profitability
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top