Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for onStop (0.37 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    --set) Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2). However, we can workaround this by placing all of (1) under a specific key (.Values.defaults). We can then merge the profile onto the defaults, then the user settings onto that. Finally, we can set all of that under .Values so the chart behaves without awareness. */}} {{- $defaults := $.Values.defaults }} {{- $_ := unset $.Values "defaults" }} {{- with .Values.profile }} {{- $a := mustMergeOverwrite...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. api/go1.3.txt

    pkg net/http, type Server struct, ErrorLog *log.Logger
    pkg net/http, type Transport struct, TLSHandshakeTimeout time.Duration
    pkg regexp/syntax, method (*Inst) MatchRunePos(int32) int
    pkg regexp/syntax, method (InstOp) String() string
    pkg runtime/debug, func SetPanicOnFault(bool) bool
    pkg runtime/debug, func WriteHeapDump(uintptr)
    pkg sync, method (*Pool) Get() interface{}
    pkg sync, method (*Pool) Put(interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top