Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for SAME (0.1 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    		},
    		}, true),
    		expectedError: `webhooks[0].matchConditions[0].expression: Invalid value: "object.x in [1, 2,": compilation failed: ERROR: <input>:1:19: Syntax error: missing ']' at '<EOF>'`,
    	}, {
    		name: "unique names same hook",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	{obj.ANOP, C_VREG, C_NONE, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0},
    	{obj.ADUFFZERO, C_NONE, C_NONE, C_NONE, C_SBRA, C_NONE, 5, 4, 0, 0, 0},   // same as AB/ABL
    	{obj.ADUFFCOPY, C_NONE, C_NONE, C_NONE, C_SBRA, C_NONE, 5, 4, 0, 0, 0},   // same as AB/ABL
    	{obj.APCALIGN, C_LCON, C_NONE, C_NONE, C_NONE, C_NONE, 0, 0, 0, 0, 0},    // align code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	}
    
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = res.Body.Close()
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    // Two subsequent requests and verify their response is the same.
    // The response from the server is our own IP:port
    func TestTransportKeepAlives(t *testing.T) { run(t, testTransportKeepAlives, []testMode{http1Mode}) }
    func testTransportKeepAlives(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Sanity check
    	if newDS.UID == oldDS.UID {
    		t.Fatal("New DS has the same UID as the old one!")
    	}
    
    	waitForQueueLength(1, "recreated DS")
    	ok = dsc.processNextWorkItem(context.TODO())
    	if !ok {
    		t.Fatal("Queue is shutting down!")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    				allHostsValid = false
    			}
    		}
    
    		// Check for duplicate hosts
    		// Duplicates include literal duplicates as well as wildcard duplicates
    		// E.g., *.foo.com, and *.com are duplicates in the same virtual service
    		if allHostsValid {
    			for i := 0; i < len(virtualService.Hosts); i++ {
    				hostI := host.Name(virtualService.Hosts[i])
    				for j := i + 1; j < len(virtualService.Hosts); j++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    					set:             set1,
    					expectedCount:   2,
    					expectedCurrent: rev0,
    					expectedUpdate:  rev1,
    					err:             false,
    				},
    				{
    					name:            "must not recreate a new revision of same set",
    					existing:        []*apps.ControllerRevision{rev0, rev1},
    					set:             set1,
    					expectedCount:   2,
    					expectedCurrent: rev0,
    					expectedUpdate:  rev1,
    					err:             false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      TF_RETURN_IF_ERROR(FunctionDefToBodyHelper(
          *else_branch_function_def, AttrSlice(&else_branch_func.attr()), fld,
          &else_branch_function_body));
    
      // Then and else branches have same argument count and argument data types.
      int original_arg_count = then_branch_function_body->arg_nodes.size();
    
      TF_ASSIGN_OR_RETURN(
          auto then_branch_lifted_arg_nodes_and_outside_compilation_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVWstorezeroidx4 ptr (MOVDconst [c]) mem) && is32Bit(c<<2) => (MOVWstorezero [int32(c<<2)] ptr mem)
    (MOVHstorezeroidx2 ptr (MOVDconst [c]) mem) && is32Bit(c<<1) => (MOVHstorezero [int32(c<<1)] ptr mem)
    
    // replace load from same location as preceding store with zero/sign extension (or copy in case of full width)
    // these seem to have bad interaction with other rules, resulting in slower code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    function copy-to-staging() {
      local -r staging_path=$1
      local -r gs_url=$2
      local -r tar=$3
      local -r hash=$4
      local -r basename_tar=$(basename "${tar}")
    
      #check whether this tar alread exists and has the same hash
      #if it matches, then don't bother uploading it again
    
      #remote_tar_md5 checks the remote location for the existing tarball and its md5
      #staging_path example gs://kubernetes-staging-PROJECT/kubernetes-devel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    				evictionapi.SignalMemoryAvailable: signalObservation{
    					time: metav1.Date(2016, 1, 1, 0, 1, 0, 0, locationUTC),
    				},
    			},
    			result: []evictionapi.Threshold{},
    		},
    		"same-observation": {
    			thresholds: []evictionapi.Threshold{updatedThreshold},
    			observations: signalObservations{
    				evictionapi.SignalMemoryAvailable: signalObservation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top