Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for haninge (0.18 sec)

  1. pkg/kubelet/kubelet_test.go

    	// the channel close
    	kubelet.resyncInterval = time.Second * 30
    
    	ch := make(chan kubetypes.PodUpdate)
    	close(ch)
    
    	// sanity check (also prevent this test from hanging in the next step)
    	ok := kubelet.syncLoopIteration(ctx, ch, kubelet, make(chan time.Time), make(chan time.Time), make(chan *pleg.PodLifecycleEvent, 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	// failure case of services simply not having completed a list operation that can reasonably be expected to succeed.
    	// One common case this prevents is a kubelet restart reading pods before services and some pod not having the
    	// KUBERNETES_SERVICE_HOST injected because we didn't wait a short time for services to sync before proceeding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    			switch {
    			case err == errTooLarge:
    				// Their HTTP client may or may not be
    				// able to read this if we're
    				// responding to them and hanging up
    				// while they're still writing their
    				// request. Undefined behavior.
    				const publicErr = "431 Request Header Fields Too Large"
    				fmt.Fprintf(c.rwc, "HTTP/1.1 "+publicErr+errorHeaders+publicErr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                name='sample/conv2d',
            )
            if has_bias:
              out = nn_ops.bias_add(out, bias, data_format='NHWC')
            if activation_fn is not None:
              # The accuracy is not good when having FusedBatchNorm without
              # activation in this test.
              if has_batch_norm:
                # Fusing is supported for non-training case.
                out, _, _, _, _, _ = nn_ops.fused_batch_norm_v3(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			res.Body.Close()
    			return string(body)
    		}
    		panic("unreachable")
    	}
    
    	body1 := fetch(1, 0)
    	body2 := fetch(2, 0)
    
    	// Close all the idle connections in a way that's similar to
    	// the server hanging up on us. We don't use
    	// httptest.Server.CloseClientConnections because it's
    	// best-effort and stops blocking after 5 seconds. On a loaded
    	// machine running many tests concurrently it's possible for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * Very rough equivalent of a timed get, produced by calling the no-arg get method in another
       * thread and waiting a short time for it.
       *
       * <p>We need this to test the behavior of no-arg get methods without hanging the main test thread
       * forever in the case of failure.
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
      @GwtIncompatible // threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * Very rough equivalent of a timed get, produced by calling the no-arg get method in another
       * thread and waiting a short time for it.
       *
       * <p>We need this to test the behavior of no-arg get methods without hanging the main test thread
       * forever in the case of failure.
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
      @GwtIncompatible // threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	// produced in golang.org/x/mod/module.CheckMod) implement an interface
    	// to make it easier to check for them? That would save us from having to
    	// move the modload errors into this package to avoid a package import cycle,
    	// and from having to export an error type for the errors produced in build.
    	if !isMatchErr && (nogoErr != nil || isScanErr) {
    		stk.Push(path)
    		defer stk.Pop()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    //     is the one being scheduled.
    //   - don't get the same score no matter what we schedule.
    func TestZeroRequest(t *testing.T) {
    	// A pod with no resources. We expect spreading to count it as having the default resources.
    	noResources := v1.PodSpec{
    		Containers: []v1.Container{
    			{},
    		},
    	}
    	noResources1 := noResources
    	noResources1.NodeName = "node1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	// conn. parentStmt is used to track the dependency of this statement
    	// on its originating ("parent") statement so that parentStmt may
    	// be closed by the user without them having to know whether or not
    	// any transactions are still using it.
    	parentStmt *Stmt
    
    	mu     sync.Mutex // protects the rest of the fields
    	closed bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top