Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,332 for efter (0.11 sec)

  1. tests/associations_has_one_test.go

    		t.Fatalf("Error happened when delete account, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Account", 1, "after delete non-existing data")
    
    	if err := DB.Model(&user2).Association("Account").Delete(&account2); err != nil {
    		t.Fatalf("Error happened when delete Account, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Account", 0, "after delete")
    
    	// Prepare Data for Clear
    	account = Account{Number: "account-has-one-append"}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. docs/distributed/decom-encrypted-kes.sh

    	echo "BUG: original user count differs after decommission"
    	exit 1
    fi
    
    if [ "$policy_count" -ne "$decom_policy_count" ]; then
    	echo "BUG: original policy count differs after decommission"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected versioning enabled after decommission"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/README.md

    The release notes are generated from `src/docs/release/notes.md`.
    
    ### Schema
    
    Every `h2` tag and `h3` will be listed in the generated TOC.
    
    After every `h3` all content after the first element (usually a `p`) will be collapsed/expandable, up until the next `h3`, or `h2`.
    
    After every `h4` all content will be collapsed/expandable, up until the next `h4`, `h3` or `h2`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after_test.go

    	}{
    		{
    			name: "retry-after disabled",
    			shutdownDelayDurationElapsedFn: func() <-chan struct{} {
    				return newChannel(false)
    			},
    			requestURL:         "/api/v1/namespaces",
    			userAgent:          "foo",
    			handlerInvoked:     1,
    			closeExpected:      "",
    			retryAfterExpected: "",
    			statusCodeExpected: http.StatusOK,
    		},
    		{
    			name: "retry-after enabled, request is not exempt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. docs/contribute/debug_logging.md

    ```
    [2020-01-01 00:00:00] Q10000 scheduled after   0 µs: OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 starting              : OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 run again after 300 s : OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 finished run in   1 ms: OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10001 scheduled after   0 µs: OkHttp squareup.com applyAndAckSettings
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

        CountingRunnable after = new CountingRunnable();
    
        future.addListener(before, directExecutor());
        future.setFuture(delegate);
        future.addListener(inBetween, directExecutor());
        delegate.set(1);
        future.addListener(after, directExecutor());
    
        before.assertRun();
        inBetween.assertRun();
        after.assertRun();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/looprotate.go

    		// the loop header b follows p
    		after[p.ID] = []*Block{b}
    		for {
    			nextIdx := idToIdx[b.ID] + 1
    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/os/timeout_test.go

    		f.Read(buf[:])
    	}()
    
    	// Give the goroutine a chance to enter the read.
    	// It doesn't matter much if it occasionally fails to do so,
    	// we won't be testing what we want to test but the test will pass.
    	time.Sleep(time.Millisecond)
    
    	c := make(chan bool)
    	go func() {
    		defer close(c)
    		f.Close()
    	}()
    
    	select {
    	case <-c:
    	case <-time.After(time.Second):
    		t.Error("timed out waiting for close")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc_test.go

    				PageBase(BaseChunkIdx, 8),
    			},
    			after: map[ChunkIdx][]BitRange{
    				BaseChunkIdx: {{10, PallocChunkPages - 10}},
    			},
    		},
    		"Straddle2": {
    			npages: 2,
    			before: map[ChunkIdx][]BitRange{
    				BaseChunkIdx:     {{PallocChunkPages - 1, 1}},
    				BaseChunkIdx + 1: {{0, 1}},
    			},
    			frees: []uintptr{
    				PageBase(BaseChunkIdx, PallocChunkPages-1),
    			},
    			after: map[ChunkIdx][]BitRange{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  10. src/internal/txtar/archive.go

    // the file name, and the data after the marker.
    // If there is no next marker, findFileMarker returns before = fixNL(data), name = "", after = nil.
    func findFileMarker(data []byte) (before []byte, name string, after []byte) {
    	var i int
    	for {
    		if name, after = isMarker(data[i:]); name != "" {
    			return data[:i], name, after
    		}
    		j := bytes.Index(data[i:], newlineMarker)
    		if j < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top