Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 836 for prepared (0.16 sec)

  1. pkg/kubelet/cm/dra/claiminfo.go

    	info.PodUIDs.Delete(string(podUID))
    }
    
    // setPrepared marks the claim info as prepared.
    func (info *ClaimInfo) setPrepared() {
    	info.prepared = true
    }
    
    // isPrepared checks if claim info is prepared or not.
    func (info *ClaimInfo) isPrepared() bool {
    	return info.prepared
    }
    
    // newClaimInfoCache creates a new claim info cache object, pre-populated from a checkpoint (if present).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. prepare_stmt.go

    		db.Mux.Unlock()
    		// wait for other goroutines prepared
    		<-stmt.prepared
    		if stmt.prepareErr != nil {
    			return Stmt{}, stmt.prepareErr
    		}
    
    		return *stmt, nil
    	}
    
    	// cache preparing stmt first
    	cacheStmt := Stmt{Transaction: isTransaction, prepared: make(chan struct{})}
    	db.Stmts[query] = &cacheStmt
    	db.Mux.Unlock()
    
    	// prepare completed
    	defer close(cacheStmt.prepared)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/runtime/mem.go

    // Prepared and Ready memory. However, the caller must provide the exact amount
    // of Prepared memory for accounting purposes.
    func sysUsed(v unsafe.Pointer, n, prepared uintptr) {
    	gcController.mappedReady.Add(int64(prepared))
    	sysUsedOS(v, n)
    }
    
    // sysHugePage does not transition memory regions, but instead provides a
    // hint to the OS that it would be more efficient to back this memory region
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. finisher_api.go

    		// close prepared statement, because SavePoint not support prepared statement.
    		// e.g. mysql8.0 doc: https://dev.mysql.com/doc/refman/8.0/en/sql-prepared-statements.html
    		var (
    			preparedStmtTx   *PreparedStmtTX
    			isPreparedStmtTx bool
    		)
    		// close prepared statement, because SavePoint not support prepared statement.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/module.h

    //      concrete function(s).
    //   5) For each function with captures, bind the appropriate objects as
    //      captured inputs.
    //   6) Take the fully-prepared objects, and build them into a hierarchy.
    //   7) Return the prepared model.
    
    // Converts a SavedUserObject into its corresponding data structure.
    // TODO(b/185579152): This method returns empty data structures currently.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo_test.go

    	for _, test := range []struct {
    		description string
    		claimInfo   *ClaimInfo
    	}{
    		{
    			description: "claim info is not prepared",
    			claimInfo: &ClaimInfo{
    				prepared: false,
    			},
    		},
    		{
    			description: "claim info is prepared",
    			claimInfo: &ClaimInfo{
    				prepared: true,
    			},
    		},
    		{
    			description: "empty claim info",
    			claimInfo:   &ClaimInfo{},
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/types.go

    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    	// It communicates with the DRA resource plugin to prepare resources.
    	PrepareResources(pod *v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

        def workerLeaseService = new TestWorkerLeaseService()
        def preparer = Mock(BuildTreeWorkGraphPreparer)
        def graph = new DefaultIncludedBuildTaskGraph(executorFactory, new TestBuildOperationRunner(), buildStateRegistry, workerLeaseService, Stub(PlanExecutor), preparer)
    
        def "does no work when nothing scheduled"() {
            when:
            graph.withNewWorkGraph { g ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_mmap.c

    	return (uintptr_t)p;
    }
    
    void
    x_cgo_munmap(void *addr, uintptr_t length) {
    	int r;
    
    	_cgo_tsan_acquire();
    	r = munmap(addr, length);
    	_cgo_tsan_release();
    	if (r < 0) {
    		/* The Go runtime is not prepared for munmap to fail.  */
    		abort();
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 916 bytes
    - Viewed (0)
  10. releasenotes/notes/revision-tag-default-validation.yaml

        content: |
          When installing a new Istio control plane revision the previous resource validator will remain unchanged to prevent
          unintended effects on the existing, stable revision. Once prepared to migrate over to the new control plane revision,
          cluster operators should switch the default revision. This can be done thorugh `istioctl tag set default --revision <new revision>`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
Back to top