Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for Nodes (0.15 sec)

  1. hack/local-up-cluster.sh

        export CLOUD_CTLRMGR_PID=$!
    }
    
    function wait_node_ready(){
      # check the nodes information after kubelet daemon start
      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
    				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
    		}
    		// Correct IE 7 (shifts anchor nodes onhover)
    		if(/msie/.test(u) && parseInt(v, 10) == 7) {
    			is_ie7 = true;
    			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
    		}
    		// correct ff2 lack of display:inline-block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    const (
    	maxSize  = 128 << 20 / instSize
    	instSize = 5 * 8 // byte, 2 uint32, slice is 5 64-bit words
    )
    
    // maxRunes is the maximum number of runes allowed in a regexp tree
    // counting the runes in all the nodes.
    // Ignoring character classes p.numRunes is always less than the length of the regexp.
    // Character classes can make it much larger: each \pL adds 1292 runes.
    // 128 MB is enough for 32M runes, which is over 26k \pL instances.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    	serviceNoLocalEndpointsExternal sets.Set[string]
    	// lbNoNodeAccessIPPortProtocolEntries represents the set of loadBalancers IP + Port + Protocol that should not be accessible from K8s nodes
    	// We cannot directly restrict LB access from node using LoadBalancerSourceRanges, we need to install
    	// additional iptables rules.
    	// (ref: https://github.com/kubernetes/kubernetes/issues/119656)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumeName:             volumetesting.SuccessAndFailOnMountDeviceName,
    			supportRemount:         true,
    		},
    	}
    
    	modes := []v1.PersistentVolumeMode{v1.PersistentVolumeBlock, v1.PersistentVolumeFilesystem}
    
    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    			tc := tests[tcIndex]
    			testName := fmt.Sprintf("%s [%s]", tc.name, mode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    					v1.ResourceMemory: 12,
    					hugepages2M:       70,
    					hugepages1G:       13,
    				},
    				1: map[v1.ResourceName]uint64{},
    			},
    			"",
    		},
    		{
    			"Both NUMA nodes are reserved",
    			[]kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    						v1.ResourceMemory: *resource.NewQuantity(12, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		"valid multiple with name indirection": {
    			args:  []string{"pods/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    		"valid multiple with namespaced and non-namespaced types": {
    			args:  []string{"nodes/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    		"mixed arg types": {
    			args:  []string{"pods/foo", "bar"},
    			errFn: expectErr,
    		},
    		/*"missing resource": {
    			args:  []string{"pods/foo2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            thread = null;
            LockSupport.unpark(w);
          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
       *   <li>This is only called when a waiting thread times out or is interrupted. Both of which
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            thread = null;
            LockSupport.unpark(w);
          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
       *   <li>This is only called when a waiting thread times out or is interrupted. Both of which
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          tensorflow::GetTypeFromTFTensorShape({}, builder->getF32Type()),
          FloatAttr::get(builder->getF32Type(), value));
    }
    
    // Returns a TF_CastOp to F32. This function is used for CastOps that are
    // intermediate nodes in a TableGen pattern result. In such a case, the
    // destination type is not inferred and must be given explicitly.
    //
    // Preconditions: The given value must have a ShapedType.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top