Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for werde (0.27 sec)

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

       * possible pair of these futures in {@link FuturesTest#runExtensiveMergerTest}.
       *
       * <p>Each test requires a new {@link TestFutureBatch} because we need new delayed futures each
       * time, as the old delayed futures were completed as part of the old test.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private static final class TestFutureBatch {
    
    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. src/net/http/serve_test.go

    		}()
    		bufr := bufio.NewReader(conn)
    		line, err := bufr.ReadString('\n')
    		if err != nil {
    			if writeBody && !test.readBody {
    				// This is an acceptable failure due to a possible TCP race:
    				// We were still writing data and the server hung up on us. A TCP
    				// implementation may send a RST if our request body data was known
    				// to be lost, which may trigger our reads to fail.
    				// See RFC 1122 page 88.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    		if err := conn.resetSession(ctx); errors.Is(err, driver.ErrBadConn) {
    			conn.Close()
    			return nil, err
    		}
    
    		return conn, nil
    	}
    
    	// Out of free connections or we were asked not to use one. If we're not
    	// allowed to open any more connections, make a request and wait.
    	if db.maxOpen > 0 && db.numOpen >= db.maxOpen {
    		// Make the connRequest channel. It's buffered so that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

          - group: "scheduling.k8s.io"
          - group: "storage.k8s.io"'
    
      cat <<EOF >"${path}"
    apiVersion: audit.k8s.io/v1
    kind: Policy
    rules:
      # The following requests were manually identified as high-volume and low-risk,
      # so drop them.
      - level: None
        users: ["system:kube-proxy"]
        verbs: ["watch"]
        resources:
          - group: "" # core
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    // TestPriorityQueue_AddUnschedulableIfNotPresent_Backoff tests the scenarios when
    // AddUnschedulableIfNotPresent is called asynchronously.
    // Pods in and before current scheduling cycle will be put back to activeQueue
    // if we were trying to schedule them when we received move request.
    func TestPriorityQueue_AddUnschedulableIfNotPresent_Backoff(t *testing.T) {
    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    		}
    		if !DeepEqual(have0.Interface(), want) {
    			t.Errorf("Append #%d: have %v, want %v (%p %p)", i, have0, want, test.orig, have0.Interface())
    		}
    		// Check that the orig and extra slices were not modified.
    		if a0.Len() != len(test.orig) {
    			t.Errorf("Append #%d: a0.Len: have %d, want %d", i, a0.Len(), origLen)
    		}
    		if len(test.orig) != origLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		got := 1
    		if body1 != body2 {
    			got++
    		}
    		want := 1
    		if reqClose {
    			want = 2
    		}
    		if got != want {
    			t.Errorf("for Request.Close=%v: server saw %v unique connections, wanted %v\n\nbodies were: %q and %q",
    				reqClose, got, want, body1, body2)
    		}
    
    		tr.CloseIdleConnections()
    	}
    
    	connSet.check(t)
    }
    
    // if the Transport's DisableKeepAlives is set, all requests should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      else
        node_taints="${WINDOWS_NODE_TAINTS:-}"
      fi
      if [[ -n "${node_taints}" ]]; then
        flags+=" --register-with-taints=${node_taints}"
      fi
    
      # Many of these flags were adapted from
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
      flags+=" --config=${WINDOWS_KUBELET_CONFIG_FILE}"
      flags+=" --kubeconfig=${WINDOWS_KUBECONFIG_FILE}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    		t.Errorf("Expected %v, actual: %v", expectedBytes, pidQuantity.available.Value())
    	}
    	for _, pod := range pods {
    		podStats, found := statsFunc(pod)
    		if !found {
    			t.Errorf("Pod stats were not found for pod %v", pod.UID)
    		}
    		if *podStats.Memory.WorkingSetBytes != podWorkingSetBytes {
    			t.Errorf("Pod working set expected %v, actual: %v", podWorkingSetBytes, *podStats.Memory.WorkingSetBytes)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        LOG(WARNING) << "Graph shapes did not converge to a fixpoint within "
                     << kMaxIterationCount
                     << " iterations. Graph shapes may be conservative.";
      }
      VLOG(1) << "Graph shapes were inferred with " << (i - 1)
              << " extra rounds of analysis to reach a fixpoint.";
      return absl::OkStatus();
    }
    
    absl::StatusOr<mlir::Type> ImporterBase::InferInputType(const Node& node,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top