Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 108 of 108 for ulong (0.07 sec)

  1. cluster/gce/util.sh

    # shellcheck disable=SC2153
    NODE_TAGS="${NODE_TAG}"
    
    ALLOCATE_NODE_CIDRS=true
    PREEXISTING_NETWORK=false
    PREEXISTING_NETWORK_MODE=""
    
    KUBE_PROMPT_FOR_UPDATE=${KUBE_PROMPT_FOR_UPDATE:-"n"}
    # How long (in seconds) to wait for cluster initialization.
    KUBE_CLUSTER_INITIALIZATION_TIMEOUT=${KUBE_CLUSTER_INITIALIZATION_TIMEOUT:-300}
    
    function join_csv() {
      local IFS=','; echo "$*";
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"crypto/md5"
    	"crypto/sha1"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/xml"
    	"fmt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    // - `model.keras_api.layers.1.kernel`
                    // - `model.variables.0`
                    // - `model.keras_api.layers.1.keras_api.trainable_variables.0`
                    // - ... 10 more long aliases ending in digits ...
                    return std::make_tuple(isdigit(a.back()), a.size(), a) <
                           std::make_tuple(isdigit(b.back()), b.size(), b);
                  });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    	for c, test := range map[string]struct {
    		input  string
    		output string
    	}{
    		"valid hostname": {
    			input:  "test.pod.hostname",
    			output: "test.pod.hostname",
    		},
    		"too long hostname": {
    			input:  "1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567.", // 8*9=72 chars
    			output: "1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567",          //8*8-1=63 chars
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512_test.go

    		t.Error("block and blockGeneric resulted in different states")
    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		/* 16 = Block access - program will soon make a transient access to EA. */
    		/* 17 = Block access - program will not access EA for a long time. */
    
    		/* L field for dcbf: */
    		/* 0 = invalidates the block containing EA in all processors. */
    		/* 1 = same as 0, but with limited scope (i.e. block in the current processor will not be reused soon). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				1: buildPod().indexFailureCount("0").index("1").customDeletionTimestamp(now).Pod,
    			},
    			wantIndexesToAdd: []int{3},
    		},
    		"subset of indexes can be recreated now as the pods failed long time ago": {
    			indexesToAdd: []int{1, 3},
    			podsWithDelayedDeletionPerIndex: map[int]*v1.Pod{
    				1: buildPod().indexFailureCount("0").customDeletionTimestamp(now).Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top