Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for dirty (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                }
                try {
                    return cached.orNull();
                } finally {
                    lock.readLock().unlock();
                }
            }
    
            /**
             * Removes dirty entries from the cache. Calling System.currentTimeMillis() is costly so we should try to limit calls to this method. This method will only trigger cleanup at most once per
             * 30s.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. src/database/sql/fakedb_test.go

    var hookExecBadConn func() bool
    
    func (s *fakeStmt) Exec(args []driver.Value) (driver.Result, error) {
    	panic("Using ExecContext")
    }
    
    var errFakeConnSessionDirty = errors.New("fakedb: session is dirty")
    
    func (s *fakeStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
    	if s.panic == "Exec" {
    		panic(s.panic)
    	}
    	if s.closed {
    		return nil, errClosed
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    	// terminates, and the easiest way to prove it is to add this map.
    	//
    	// Then the proof of termination is this:
    	// On every iteration where we mark the roots as dirty, we add some new module
    	// version to the map. The universe of module versions is finite, so we must
    	// eventually reach a state in which we do not add any version to the map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    		mem.header().rawInMem = false
    		resp.WroteToMem = true
    		if err != nil {
    			resp.Err = err.Error()
    		} else {
    			// If the values didn't change during minimization then coverageSnapshot is likely
    			// a dirty snapshot which represents the very last step of minimization, not the
    			// coverage for the initial input. In that case just return the coverage we were
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais.go

    	// we're processing suffixes in sorted order
    	// and accessing buckets indexed by the
    	// byte before the sorted order, which still
    	// has very good locality.
    	// Invariant: b is cached, possibly dirty copy of bucket[cB].
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int32(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    			// Skip empty entry.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	tCtx := ktesting.Init(t)
    	tc.ctx = tCtx
    
    	tc.client = fake.NewSimpleClientset(objs...)
    	reactor := createReactor(tc.client.Tracker())
    	tc.client.PrependReactor("*", "*", reactor)
    
    	// Quick-and-dirty workaround for fake client storing ResourceClassParameters and
    	// ResourceClaimParameters as "resourceclassparameterses" and "resourceclaimparameterses":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    the pavement, and accumulating at compound interest.  	Fog everywhere. Fog up the river, where it flows among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	tx, err := db.BeginTx(ctx, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Ignore dirty session for this test.
    	// A failing test should trigger the dirty session flag as well,
    	// but that isn't exactly what this should test for.
    	tx.txi.(*fakeTx).c.skipDirtySession = true
    
    	defer tx.Rollback()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * gci: decouple from the built-in kubelet version ([#31367](https://github.com/kubernetes/kubernetes/pull/31367), [@Amey-D](https://github.com/Amey-D))
    * Bump GCE debian image to container-vm-v20161025 (CVE-2016-5195 Dirty… ([#35825](https://github.com/kubernetes/kubernetes/pull/35825), [@dchen1107](https://github.com/dchen1107))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// these.
    	allocCache uint64
    
    	// allocBits and gcmarkBits hold pointers to a span's mark and
    	// allocation bits. The pointers are 8 byte aligned.
    	// There are three arenas where this data is held.
    	// free: Dirty arenas that are no longer accessed
    	//       and can be reused.
    	// next: Holds information to be used in the next GC cycle.
    	// current: Information being used during this GC cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top