Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for ARE (0.04 sec)

  1. src/runtime/proc.go

    	// are racing with _all_ other Ps going idle.
    	//
    	// We use sched.needspinning to synchronize with non-spinning Ms going
    	// idle. If needspinning is set when they are about to drop their P,
    	// they abort the drop and instead become a new spinning M on our
    	// behalf. If we are not racing and the system is truly fully loaded
    	// then no spinning threads are required, and the next thread to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// connections they are prepared on and record the stmt dependency on
    	// the DB.
    	if cg == nil {
    		stmt.css = []connStmt{{dc, ds}}
    		stmt.lastNumClosed = db.numClosed.Load()
    		db.addDep(stmt, stmt)
    	}
    	return stmt, nil
    }
    
    // ExecContext executes a query without returning any rows.
    // The args are for any placeholder parameters in the query.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		p.CFiles = nil
    		p.CXXFiles = nil
    		p.MFiles = nil
    		p.SwigFiles = nil
    		p.SwigCXXFiles = nil
    		// Note that SFiles are okay (they go to the Go assembler)
    		// and HFiles are okay (they might be used by the SFiles).
    		// Also Sysofiles are okay (they might not contain object
    		// code; see issue #16050).
    	}
    
    	// The gc toolchain only permits C source files with cgo or SWIG.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // input graph to infer shapes and construct a Function. For each
      // "NextIteration" node, there are two operations, "NextIteration.source"
      // and "NextIteration.sink" are added to the MLIR module.
      using BackEdge = BackEdgeHelper::BackEdge;
    
      // Removes backedges from the input graph. The removed edges are added back to
      // to OpBuilder after the remaining graph is converted to the Function.
      Status RemoveBackedges();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    		return n * 20 // Trampolines in ARM range from 3 to 5 instructions.
    	case ctxt.IsARM64():
    		return n * 12 // Trampolines in ARM64 are 3 instructions.
    	case ctxt.IsPPC64():
    		return n * 16 // Trampolines in PPC64 are 4 instructions.
    	case ctxt.IsRISCV64():
    		return n * 8 // Trampolines in RISCV64 are 2 instructions.
    	}
    	panic("unreachable")
    }
    
    // Detect too-far jumps in function s, and add trampolines if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// 1xx class or the modified headers are trailers.
    	//
    	// There are two ways to set Trailers. The preferred way is to
    	// predeclare in the headers which trailers you will later
    	// send by setting the "Trailer" header to the names of the
    	// trailer keys which will come later. In this case, those
    	// keys of the Header map are treated as if they were
    	// trailers. See the example. The second way, for trailer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // TODO(b/154160827): Add a canonicalization pattern from tf.StridedSliceOp to
    // tf.SliceOp if both of the following are true:
    // - All strides have a known value equal to 1
    // - No masks are set (or masks can be applied by transforming the inputs to
    //   Slice)
    
    // Verifies that,
    //
    // - begin, end and strides operands are 1D and they have the same number of
    //   elements. Here, the number of elements should be less than 32 to support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    		// Because these are clumsy, undocumented special-case hacks
    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	// return value ABI (the types are identical). As a result, register
    	// results can simply be copied over. Stack-allocated values are laid
    	// out the same, but are at different offsets from the start of the frame
    	// Ignore any changes to args.
    	// Avoid constructing out-of-bounds pointers if there are no return values.
    	// because the arguments may be laid out differently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

              is_depthwise);
        }
      }
      return false;
    }
    
    // Returns true if we can eliminate the GatherNdOp or ScatterNdOp. When the
    // value of `indices` are from 0 to n-1, the output tensor are identical to the
    // `params`.
    bool CanOptimizeIdentityGatherNdOrScatterNdOp(Value params,
                                                  DenseIntElementsAttr indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top