Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for useless3 (0.11 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    			// Someone might be reading this memory state.
    			// Clear all shadowed addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/net/cgo_unix.go

    		return nil, errors.New("res_ninit failure: " + err.Error())
    	}
    	defer _C_res_nclose(state)
    
    	// Some res_nsearch implementations (like macOS) do not set errno.
    	// They set h_errno, which is not per-thread and useless to us.
    	// res_nsearch returns the size of the DNS response packet.
    	// But if the DNS response packet contains failure-like response codes,
    	// res_search returns -1 even though it has copied the packet into buf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute.go

    		// latest-1.7 version is v1.7.4-beta.0
    
    		// Worth noticing is that when the release-1.X branch is cut; there are two versions tagged: v1.X.0-beta.0 AND v1.(X+1).alpha.0
    		// The v1.(X+1).alpha.0 is pretty much useless and should just be ignored, as more betas may be released that have more features than the initial v1.(X+1).alpha.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim.go

    		return false
    	}
    
    	// Pick some upper bound for the number of instructions
    	// we'd be willing to execute just to generate a dead
    	// argument to CondSelect. In the worst case, this is
    	// the number of useless instructions executed.
    	const maxfuseinsts = 2
    
    	if len(simple.Values) > maxfuseinsts || !canSpeculativelyExecute(simple) {
    		return false
    	}
    
    	// Replace Phi instructions in b with CondSelect instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

                /*
                 * We cannot synchronize (run_thread) here or the caller's
                 * thread.wait( timeout ) cannot reaquire the lock and
                 * return which would render the timeout effectively useless.
                 */
                if ( this.state != 5 && this.state != 6 ) {
                    doConnect();
                }
            }
            catch ( Exception ex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    func strhashFallback(a unsafe.Pointer, h uintptr) uintptr {
    	x := (*stringStruct)(a)
    	return memhashFallback(x.str, h, uintptr(x.len))
    }
    
    // NOTE: Because NaN != NaN, a map can contain any
    // number of (mostly useless) entries keyed with NaNs.
    // To avoid long hash chains, we assign a random number
    // as the hash value for a NaN.
    
    func f32hash(p unsafe.Pointer, h uintptr) uintptr {
    	f := *(*float32)(p)
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        func::FuncOp session_init_func) {
      // We identify the variables using (device, container, shared_name) of the
      // resource. Capture them here and use them to identify the useless
      // initializations.
      llvm::SetVector<std::tuple<llvm::StringRef, llvm::StringRef, llvm::StringRef>>
          variables;
      for (auto var_handle_op : var_handle_ops)
        variables.insert(GetResourceKey(var_handle_op));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	clientConfig.Burst = 400
    	// do not set a timeout on the http client, instead use context for cancellation
    	// if multiple timeouts were set, the request will pick the smaller timeout to be applied, leaving other useless.
    	//
    	// see https://github.com/golang/go/blob/a937729c2c2f6950a32bc5cd0f5b88700882f078/src/net/http/client.go#L364
    	if s.CustomRoundTripperFn != nil {
    		clientConfig.Wrap(s.CustomRoundTripperFn)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    		panic("aliasnode i2s contains n1 node")
    	}
    
    	// Go through all the nodes to adjust parent/chidlren of nodes in i2s
    	for idx, n := range po.nodes {
    		// Do not touch i1 itself, otherwise we can create useless self-loops
    		if uint32(idx) == i1 {
    			continue
    		}
    		l, r := n.l, n.r
    
    		// Rename all references to i2s into i1
    		if i2s.Test(l.Target()) {
    			po.setchl(uint32(idx), newedge(i1, l.Strict()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/range_allocator.go

    			if err := ra.occupyCIDRs(&node); err != nil {
    				// This will happen if:
    				// 1. We find garbage in the podCIDRs field. Retrying is useless.
    				// 2. CIDR out of range: This means a node CIDR has changed.
    				// This error will keep crashing controller-manager.
    				return nil, err
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top