Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for IsShared (0.12 sec)

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

    		if rs != 0 {
    			rst = ldr.SymType(rs)
    		}
    
    		if rs != 0 && (rst == sym.Sxxx || rst == sym.SXREF) {
    			// When putting the runtime but not main into a shared library
    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    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

    			}
    			err = a.Actor.Act(b, ctx, a)
    			span.Done()
    		}
    		if a.json != nil {
    			a.json.TimeDone = time.Now()
    		}
    
    		// The actions run in parallel but all the updates to the
    		// shared work state are serialized through b.exec.
    		b.exec.Lock()
    		defer b.exec.Unlock()
    
    		if err != nil {
    			if b.AllowErrors && a.Package != nil {
    				if a.Package.Error == nil {
    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. src/cmd/go/alldocs.go

    //		flags has a similar effect.
    //	-ldflags '[pattern=]arg list'
    //		arguments to pass on each go tool link invocation.
    //	-linkshared
    //		build code that will be linked against shared libraries previously
    //		created with -buildmode=shared.
    //	-mod mode
    //		module download mode to use: readonly, vendor, or mod.
    //		By default, if a vendor directory is present and the go version in go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	Target        string                `json:",omitempty"` // installed target for this package (may be executable)
    	Shlib         string                `json:",omitempty"` // the shared library that contains this package (only set when -linkshared)
    	Root          string                `json:",omitempty"` // Go root, Go path dir, or module root dir containing this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    			// When building for inclusion into a shared library, an instruction of the form
    			//     MOV off(CX)(TLS*1), AX
    			// becomes
    			//     mov %gs:off(%ecx), %eax // on i386
    			//     mov %fs:off(%rcx), %rax // on amd64
    			// which assumes that the correct TLS offset has been loaded into CX (today
    			// there is only one TLS variable -- g -- so this is OK). When not building for
    			// a shared library the instruction it becomes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    //     The cluster, however, will be shared, which is broken, because we should be forwarding to T when we call B, and T' when we call B'.
    //  3. Another service, B', with P' -> T. In this case, the listener is shared. This is fine, with the exception of different protocols
    //     The cluster is distinct.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      mount -o remount,exec "${CONTAINERIZED_MOUNTER_HOME}"
      CONTAINERIZED_MOUNTER_ROOTFS="${CONTAINERIZED_MOUNTER_HOME}/rootfs"
      mount --rbind /var/lib/kubelet/ "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --make-rshared "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --bind -o ro /proc "${CONTAINERIZED_MOUNTER_ROOTFS}/proc"
      mount --bind -o ro /dev "${CONTAINERIZED_MOUNTER_ROOTFS}/dev"
    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. tensorflow/compiler/mlir/lite/transforms/optimize.cc

              filter_cst.mapValues(filter_type.getElementType(), [&](APFloat it) {
                return (is_mul ? it * cst_value : it / cst_value).bitcastToAPInt();
              });
          // We recreate the constant op in case it is shared by the other ops. This
          // might increase the model size.
          auto new_filter_op = rewriter.create<ConstOp>(
              fc_op.getLoc(), filter.getType(), new_filter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    	mrfReplicaCh    chan ReplicationWorkerOperation
    	mrfSaveCh       chan MRFReplicateEntry
    	mrfStopCh       chan struct{}
    	mrfWorkerSize   int
    }
    
    // ReplicationWorkerOperation is a shared interface of replication operations.
    type ReplicationWorkerOperation interface {
    	ToMRFEntry() MRFReplicateEntry
    }
    
    const (
    	// WorkerMaxLimit max number of workers per node for "fast" mode
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // Close then waits for all queries that have started processing on the server
    // to finish.
    //
    // It is rare to Close a [DB], as the [DB] handle is meant to be
    // long-lived and shared between many goroutines.
    func (db *DB) Close() error {
    	db.mu.Lock()
    	if db.closed { // Make DB.Close idempotent
    		db.mu.Unlock()
    		return nil
    	}
    	if db.cleanerCh != nil {
    		close(db.cleanerCh)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top