Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for onStop (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            padded_output_tensor_shape, input_tensor_type.getElementType());
    
        // The pad values is provided as a const op.
        auto pad_value_const_op = rewriter.create<TFL::ConstOp>(
            loc, /*value=*/DenseIntElementsAttr::get(
                RankedTensorType::get({rank, 2}, rewriter.getIntegerType(32)),
                tfl_pad_values));
    
        return rewriter.create<TFL::PadOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    	for _, hostAlias := range hostAliases {
    		buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostAlias.IP, strings.Join(hostAlias.Hostnames, "\t")))
    	}
    	return buffer.Bytes()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	// Allow newproc to start new Ms.
    	mainStarted = true
    
    	if haveSysmon {
    		systemstack(func() {
    			newm(sysmon, nil, -1)
    		})
    	}
    
    	// Lock the main goroutine onto this, the main OS thread,
    	// during initialization. Most programs won't care, but a few
    	// do require certain calls to be made by the main thread.
    	// Those can arrange for main.main to run in the main thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // Prefer stack traces if available, fallback to debug info if not, and then
        // finally to just name. Older versions of debug info concatenated `@` onto
        // the node name for the default graph, so we check both locations.
        if (stack_trace != nullptr) {
        } else if (stack_traces_.contains(name_for_name_loc)) {
          stack_trace = stack_traces_.at(name_for_name_loc);
    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/internal/obj/ppc64/asm9.go

    			o1 = AOP_MD(c.oprrr(p.As), uint32(p.To.Reg), r, uint32(sh), mb)
    
    		case ACLRLSLDI:
    			// This is an extended mnemonic defined in the ISA section C.8.1
    			// clrlsldi ra,rs,b,n --> rldic ra,rs,n,b-n
    			// It maps onto RLDIC so is directly generated here based on the operands from
    			// the clrlsldi.
    			n := int32(d)
    			b := c.regoff(&p.From)
    			if n > b || b > 63 {
    				c.ctxt.Diag("Invalid n or b for CLRLSLDI: %x %x\n%v", n, b, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    	)
    
    	for i := 0; i < initialNodeNumber; i++ {
    		nodeName := fmt.Sprintf("node%d", i)
    		initialNodes = append(initialNodes, st.MakeNode().Name(nodeName).UID(nodeName).Obj())
    	}
    	// Randomly scatter initial pods onto nodes.
    	for i := 0; i < initialPodNumber; i++ {
    		podName := fmt.Sprintf("scheduled-pod%d", i)
    		assignedNodeName := fmt.Sprintf("node%d", random.Intn(initialNodeNumber))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	// creates a new database connection.
    	cachedOrNewConn
    )
    
    // driverConn wraps a driver.Conn with a mutex, to
    // be held during all calls into the Conn. (including any calls onto
    // interfaces returned via that Conn, such as calls on Tx, Stmt,
    // Result, Rows)
    type driverConn struct {
    	db        *DB
    	createdAt time.Time
    
    	sync.Mutex  // guards following
    	ci          driver.Conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			}
    			p.Incomplete = true
    
    			// Add the importer's position information if the import position exists, and
    			// the current package being examined is the importer.
    			// If we have not yet accepted package p onto the import stack,
    			// then the cause of the error is not within p itself: the error
    			// must be either in an explicit command-line argument,
    			// or on the importer side (indicated by a non-empty importPos).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				"node-b": framework.Success,
    				"node-x": framework.Unschedulable,
    				"node-y": framework.Unschedulable,
    			},
    		},
    		{
    			// 1. pod doesn't match itself on "zone" constraint, so it can be put onto any zone
    			// 2. to fulfil "node" constraint, incoming pod can be placed on node-a or node-b
    			// intersection of (1) and (2) returns node-a and node-b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	UpdatedAt  time.Time
    }
    
    // SRBucketDeleteOp - type of delete op
    type SRBucketDeleteOp string
    
    const (
    	// MarkDelete creates .minio.sys/buckets/.deleted/<bucket> vol entry to hold onto deleted bucket's state
    	// until peers are synced in site replication setup.
    	MarkDelete SRBucketDeleteOp = "MarkDelete"
    
    	// Purge deletes the .minio.sys/buckets/.deleted/<bucket> vol entry
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top