Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for homes (0.09 sec)

  1. pkg/kubelet/kubelet_pods.go

    				Message:  "The container could not be located when the pod was terminated",
    				ExitCode: 137, // this code indicates an error
    			}
    			// the restart count normally comes from the CRI (see near the top of this method), but since this is being added explicitly
    			// for the case where the CRI did not return a status, we need to manually increment the restart count to be accurate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		}
    
    		// Compute the length to write, including padding.
    		// We need to write to the end address (lastAddr), or the next symbol's
    		// start address, whichever comes first. If there is no more symbols,
    		// just write to lastAddr. This ensures we don't leave holes between the
    		// blocks or at the end.
    		length := int64(0)
    		if idx+1 < len(syms) {
    			// Find the next top-level symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            executer.inDirectory(projectDir2)
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [lib1.jar.txt, lib1.jar]") == 2
    
            // From the Gradle user home cache
            output.count("Transformed") == 0
        }
    
        private void setupProjectInDir(TestFile projectDir) {
            projectDir.file("build.gradle") << resolveTask << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      local node_type="$1"
      local flags
      flags="$(construct-common-kubelet-flags)"
      # Keep in sync with CONTAINERIZED_MOUNTER_HOME in configure-helper.sh
      flags+=" --experimental-mounter-path=/home/kubernetes/containerized_mounter/mounter"
      # Keep in sync with the mkdir command in configure-helper.sh (until the TODO is resolved)
      flags+=" --cert-dir=/var/lib/kubelet/pki/"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	type healResp struct {
    		respBytes []byte
    		apiErr    APIError
    		errBody   string
    	}
    
    	// Define a closure to start sending whitespace to client
    	// after 10s unless a response item comes in
    	keepConnLive := func(w http.ResponseWriter, r *http.Request, respCh chan healResp) {
    		ticker := time.NewTicker(time.Second * 10)
    		defer ticker.Stop()
    		started := false
    	forLoop:
    		for {
    			select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			expectedInitialStates: map[string]ZoneState{
    				"": stateNormal,
    			},
    			expectedFollowingStates: map[string]ZoneState{
    				"": stateNormal,
    			},
    		},
    		"No Disruption: Initially both zones down, one comes back": {
    			nodeList: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:              "node0",
    						CreationTimestamp: fakeNow,
    						Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      //  Tests the case when an outside compiled op with some dynamically shaped input but static output
      //  comes before an outside compiled op with some dynamically shaped input/output.  This ensures that
      //  for the second outside compiled op, all of the inputs are explicitly provided.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    		_, err = stmt.Query(1)
    		if err != nil {
    			break
    		}
    	}
    	_ = tx.Rollback()
    }
    
    // Issue32530 encounters an issue where a connection may
    // expire right after it comes out of a used connection pool
    // even when a new connection is requested.
    func TestConnExpiresFreshOutOfPool(t *testing.T) {
    	execCases := []struct {
    		expired  bool
    		badReset bool
    	}{
    		{false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	s.deleteIndex(idx)
    	return true
    }
    
    func (s *connRequestSet) deleteIndex(idx int) {
    	// Mark item as deleted.
    	*(s.s[idx].curIdx) = -1
    	// Copy last element, updating its position
    	// to its new home.
    	if idx < len(s.s)-1 {
    		last := s.s[len(s.s)-1]
    		*last.curIdx = idx
    		s.s[idx] = last
    	}
    	// Zero out last element (for GC) before shrinking the slice.
    	s.s[len(s.s)-1] = connRequestAndIndex{}
    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