Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 127 for SAME (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		return fmt.Errorf("mount options are not supported for this volume type")
    	}
    	return nil
    }
    
    // checkNodeAffinity looks at the PV node affinity, and checks if the node has the same corresponding labels
    // This ensures that we don't mount a volume that doesn't belong to this node
    func checkNodeAffinity(og *operationGenerator, volumeToMount VolumeToMount) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	store = Handle(r0)
    	if store == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) {
    	r0, _, _ := syscall.Syscall(procDnsNameCompare_W.Addr(), 2, uintptr(unsafe.Pointer(name1)), uintptr(unsafe.Pointer(name2)), 0)
    	same = r0 != 0
    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top