Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for Removes (0.16 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(future.isDone()).isFalse();
        assertThat(executedRunnables).isEmpty();
        assertThat(pendingRunnables).hasSize(1);
        pendingRunnables.remove(0).run();
        assertThat(future.isDone()).isTrue();
        assertThat(executedRunnables).containsExactly(runnable);
        assertThat(pendingRunnables).isEmpty();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(future.isDone()).isFalse();
        assertThat(executedRunnables).isEmpty();
        assertThat(pendingRunnables).hasSize(1);
        pendingRunnables.remove(0).run();
        assertThat(future.isDone()).isTrue();
        assertThat(executedRunnables).containsExactly(runnable);
        assertThat(pendingRunnables).isEmpty();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		}
    
    		v := c.regoff(&p.From)
    		a := AADD
    		if v < 0 {
    			a = ASUB
    			v = -v
    		}
    
    		if o.size(c.ctxt, p) == 8 {
    			// NOTE: this case does not use REGTMP. If it ever does,
    			// remove the NOTUSETMP flag in optab.
    			o1 = c.oaddi(p, a, v&0xfff000, rt, r)
    			o2 = c.oaddi(p, a, v&0x000fff, rt, rt)
    			break
    		}
    
    		o1 = c.oaddi(p, a, v, rt, r)
    
    	case 5: /* b s; bl s */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/callback.go

    			t.Fatalf("expected non-nil Func for pc %d", pc[i])
    		}
    		fname := f.Name()
    		// Remove the prepended pathname from automatically
    		// generated cgo function names.
    		if strings.HasPrefix(fname, "_") {
    			fname = path.Base(f.Name()[1:])
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    		fname = strings.TrimPrefix(fname, "cmd/cgo/internal/")
    
    		namei := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Schedule */
        public static final String LABELS_CRON_EXPRESSION = "{labels.cronExpression}";
    
        /** The key of the message: Remove Documents Before Days */
        public static final String LABELS_DAY_FOR_CLEANUP = "{labels.dayForCleanup}";
    
        /** The key of the message: Simultaneous Crawler Config */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		t.Errorf("unexpected delete options: %s", cmp.Diff(simpleStorage.deleteOptions, item))
    	}
    }
    
    func TestDeleteInvokesAdmissionControl(t *testing.T) {
    	// TODO: remove mutating deny when we removed it from the endpoint implementation and ported all plugins
    	for _, admit := range []admission.Interface{alwaysMutatingDeny{}, alwaysValidatingDeny{}} {
    		t.Logf("Testing %T", admit)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    			st.err.Errorf(s, "unreachable sym in relocation: %s", ldr.SymName(rs))
    		}
    
    		var rv sym.RelocVariant
    		if target.IsPPC64() || target.IsS390X() {
    			rv = ldr.RelocVariant(s, ri)
    		}
    
    		// TODO(mundaym): remove this special case - see issue 14218.
    		if target.IsS390X() {
    			switch rt {
    			case objabi.R_PCRELDBL:
    				rt = objabi.R_PCREL
    				rv = sym.RV_390_DBL
    			case objabi.R_CALL:
    				rv = sym.RV_390_DBL
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. fastapi/routing.py

    ) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]:
        async def app(websocket: WebSocket) -> None:
            async with AsyncExitStack() as async_exit_stack:
                # TODO: remove this scope later, after a few releases
                # This scope fastapi_astack is no longer used by FastAPI, kept for
                # compatibility, just in case
                websocket.scope["fastapi_astack"] = async_exit_stack
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    			autoscalingv2.ResourceMetricSourceType: monitor.ErrorLabelNone,
    		},
    	}
    	tc.runTest(t)
    }
    
    func TestUpscaleCapGreaterThanMaxReplicas(t *testing.T) {
    	// TODO: Remove skip once this issue is resolved: https://github.com/kubernetes/kubernetes/issues/124083
    	if goruntime.GOOS == "windows" {
    		t.Skip("Skip flaking test on Windows.")
    	}
    	tc := testCase{
    		minReplicas:     1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    }
    
    type PackagePublic struct {
    	// Note: These fields are part of the go command's public API.
    	// See list.go. It is okay to add fields, but not to change or
    	// remove existing ones. Keep in sync with ../list/list.go
    	Dir           string                `json:",omitempty"` // directory containing package sources
    	ImportPath    string                `json:",omitempty"` // import path of package in dir
    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