Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for other2 (0.12 sec)

  1. src/cmd/go/alldocs.go

    //
    // The editing flags specify a sequence of editing operations.
    //
    // The -fmt flag reformats the go.mod file without making other changes.
    // This reformatting is also implied by any other modifications that use or
    // rewrite the go.mod file. The only time this flag is needed is if no other
    // flags are specified, as in 'go mod edit -fmt'.
    //
    // The -module flag changes the module's path (the go.mod file's module line).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def OrderByDialectPass : Pass<"tf-order-by-dialect", "mlir::ModuleOp"> {
      let summary = "Reorders ops so ops of the same dialect are next to each other.";
      let description = [{
          Performs a reordering of ops so that
            (a) ops of the same dialect are next to each other
            (b) order within a dialect is preserved
          .
          For example, this would transform
            %a = "x.f"()
            %b = "y.f"(%a)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // the desired state of the kubelet should be reconciled with the actual state
    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    	// HTTP request for testing when `objectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if len(mfiles) > 0 {
    		cgoLDFLAGS = append(cgoLDFLAGS, "-lobjc")
    	}
    
    	// Likewise for Fortran, except there are many Fortran compilers.
    	// Support gfortran out of the box and let others pass the correct link options
    	// via CGO_LDFLAGS
    	if len(ffiles) > 0 {
    		fc := cfg.Getenv("FC")
    		if fc == "" {
    			fc = "gfortran"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // scalar value).
    struct ValuePort {
      PointerUnion<Operation*, BlockArgument> producer;
      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    
      // Convert output value to ValuePort.
      explicit ValuePort(Value v) {
        OpResult opr = mlir::dyn_cast<OpResult>(v);
        if (opr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/gcprog"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							// But, the function continues to run other hints because the Pod has PendingPlugins, which can result in queueImmediately.
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							PluginName: "fooPlugin2",
    							// It's interpreted as queueImmediately.
    							// The function doesn't run other hints because queueImmediately is the highest priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			// make sure that there are no other entries in the exportTo
    			// i.e. no point in saying ns1,ns2,*. Might as well say *
    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    		// if this is a service entry, then we need to disallow * and ~ together. Or ~ and other namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top