Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for STARTING (0.13 sec)

  1. cmd/kubelet/app/server.go

    			onHeartbeatFailure = closeAllConns
    		} else {
    			onHeartbeatFailure = func() { utilnet.CloseIdleConnectionsFor(transportConfig.Transport) }
    		}
    
    		klog.V(2).InfoS("Starting client certificate rotation")
    		clientCertificateManager.Start()
    
    		return transportConfig, onHeartbeatFailure, nil
    	}
    
    	if len(s.BootstrapKubeconfig) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	clientFinished [12]byte
    	serverFinished [12]byte
    
    	// clientProtocol is the negotiated ALPN protocol.
    	clientProtocol string
    
    	// input/output
    	in, out   halfConn
    	rawInput  bytes.Buffer // raw input, starting with a record header
    	input     bytes.Reader // application data waiting to be read, from rawInput.Next
    	hand      bytes.Buffer // handshake data waiting to be read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                llvm::isa<TF::TensorListResizeOp>(op)) {
              indexes.insert(arg.getArgNumber());
            }
          }
        }
      }
      return indexes;
    }
    
    // Creates a slice of the tensorlist `input_list`, starting from
    // [start_index, 0, ...0], with size [size, -1, ...-1].
    //
    // Requires that `start_index` and `size` are scalar tensors and
    // `item_position_shape` is a 1-D tensor with only one element equal to the rank
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

    ## Changelog since v1.3.1
    
    ### Other notable changes
    
    * List all nodes and occupy cidr map before starting allocations ([#29062](https://github.com/kubernetes/kubernetes/pull/29062), [@bprashanth](https://github.com/bprashanth))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      @ArgumentsSource(ProtocolParamProvider::class)
      fun pingsTransmitted(
        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        // Ping every 500 ms, starting at 500 ms.
        client =
          client.newBuilder()
            .pingInterval(Duration.ofMillis(500))
            .build()
    
        // Delay the response to give 1 ping enough time to be sent and replied to.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    	// Dereferencing nil pointer while evaluating function arguments should not panic. Issue 7333.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.10:aws_s3_permissions]]
    === [4.10] Publishing to AWS S3 requires new permissions
    
    The S3 repository transport protocol allows Gradle to publish artifacts to AWS S3 buckets.
    Starting with this release, every artifact uploaded to an S3 bucket will be equipped with the `bucket-owner-full-control` canned ACL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	}
    	// Update the state of the next goroutine.
    	nextGState.status = go122.GoRunning
    	nextGState.seq = seq
    	newCtx := curCtx
    	newCtx.G = nextg
    
    	// Queue an event for the next goroutine starting to run.
    	startCtx := curCtx
    	startCtx.G = NoGoroutine
    	o.queue.push(makeEvent(evt, startCtx, go122.EvGoStart, ev.time, uint64(nextg), ev.args[1]))
    	return newCtx, true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    		if released == 0 {
    			scavenger.park()
    			continue
    		}
    		mheap_.pages.scav.releasedBg.Add(released)
    		scavenger.sleep(workTime)
    	}
    }
    
    // scavenge scavenges nbytes worth of free pages, starting with the
    // highest address first. Successive calls continue from where it left
    // off until the heap is exhausted. force makes all memory available to
    // scavenge, ignoring huge page heuristics.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    			// In either case we expect an expression x (which may
    			// just be a name, or a more complex expression) which
    			// we can analyze further.
    			//
    			// A type parameter list may have a type bound starting
    			// with a "[" as in: P []E. In that case, simply parsing
    			// an expression would lead to an error: P[] is invalid.
    			// But since index or slice expressions are never constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top