Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 356 for BHelper (0.22 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

        static final class Helper<K, V>
            implements InternalEntryHelper<
                K, V, StrongKeyStrongValueEntry<K, V>, StrongKeyStrongValueSegment<K, V>> {
          private static final Helper<?, ?> INSTANCE = new Helper<>();
    
          @SuppressWarnings("unchecked")
          static <K, V> Helper<K, V> instance() {
            return (Helper<K, V>) INSTANCE;
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    // If not, MustHaveGoBuild calls t.Skip with an explanation.
    func MustHaveGoBuild(t testing.TB) {
    	if os.Getenv("GO_GCFLAGS") != "" {
    		t.Helper()
    		t.Skipf("skipping test: 'go build' not compatible with setting $GO_GCFLAGS")
    	}
    	if !HasGoBuild() {
    		t.Helper()
    		t.Skipf("skipping test: 'go build' unavailable: %v", goBuildErr)
    	}
    }
    
    // HasGoRun reports whether the current system can run programs with “go run”.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/version.go

    // and returns a static placeholder version. When not running in unit tests
    // it equals kubernetesReleaseVersionDefault.
    var KubernetesReleaseVersion = kubernetesReleaseVersionDefault
    
    // kubernetesReleaseVersionDefault is helper function that can fetch
    // available version information from release servers based on
    // label names, like "stable" or "latest".
    //
    // If argument is already semantic version string, it
    // will return same string.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

      fi
      cp "${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh" "${KUBE_BIN}/configure-helper.sh"
      cp "${dst_dir}/kubernetes/gci-trusty/configure-kubeapiserver.sh" "${KUBE_BIN}/configure-kubeapiserver.sh"
      if [[ -e "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" ]]; then
        cp "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" "${KUBE_BIN}/"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. internal/grid/grid_test.go

    	"sync"
    	"testing"
    	"time"
    
    	"github.com/minio/minio/internal/logger/target/testlogger"
    )
    
    func TestSingleRoundtrip(t *testing.T) {
    	defer testlogger.T.SetLogTB(t)()
    	errFatal := func(err error) {
    		t.Helper()
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	grid, err := SetupTestGrid(2)
    	errFatal(err)
    	remoteHost := grid.Hosts[1]
    	local := grid.Managers[0]
    
    	// 1: Echo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        static final class Helper<K, V>
            implements InternalEntryHelper<
                K, V, StrongKeyStrongValueEntry<K, V>, StrongKeyStrongValueSegment<K, V>> {
          private static final Helper<?, ?> INSTANCE = new Helper<>();
    
          @SuppressWarnings("unchecked")
          static <K, V> Helper<K, V> instance() {
            return (Helper<K, V>) INSTANCE;
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/testing/fuzz.go

    	Generation int
    	IsSeed     bool
    }
    
    // Helper marks the calling function as a test helper function.
    // When printing file and line information, that function will be skipped.
    // Helper may be called simultaneously from multiple goroutines.
    func (f *F) Helper() {
    	if f.inFuzzFn {
    		panic("testing: f.Helper was called inside the fuzz target, use t.Helper instead")
    	}
    
    	// common.Helper is inlined here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. gradle/shared-with-buildSrc/mirrors.settings.gradle.kts

    import org.gradle.internal.nativeintegration.network.HostnameLookup
    import org.gradle.tooling.events.FinishEvent
    import org.gradle.tooling.events.OperationCompletionListener
    
    
    class Helper(private val providers: ProviderFactory) {
        val originalUrls: Map<String, String> = mapOf(
            "mavencentral" to "https://repo.maven.apache.org/maven2/",
            "google" to "https://dl.google.com/dl/android/maven2/",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	if originalNode != nil {
    		_, wasUntolerated = v1helper.FindMatchingUntoleratedTaint(originalNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	}
    
    	_, isUntolerated := v1helper.FindMatchingUntoleratedTaint(modifiedNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    
    	if wasUntolerated && !isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/kube/kclient/clienttest/crd.go

    	"istio.io/istio/pkg/test"
    )
    
    func MakeCRD(t test.Failer, c kube.Client, g schema.GroupVersionResource) {
    	t.Helper()
    	MakeCRDWithAnnotations(t, c, g, nil)
    }
    
    func MakeCRDWithAnnotations(t test.Failer, c kube.Client, g schema.GroupVersionResource, annotations map[string]string) {
    	t.Helper()
    	crd := &v1.CustomResourceDefinition{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        fmt.Sprintf("%s.%s", g.Resource, g.Group),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top