Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 338 for happen (0.1 sec)

  1. src/runtime/mheap.go

    	// (the actual arenas). This is only used on 32-bit.
    	arena linearAlloc
    
    	// allArenas is the arenaIndex of every mapped arena. This can
    	// be used to iterate through the address space.
    	//
    	// Access is protected by mheap_.lock. However, since this is
    	// append-only and old backing arrays are never freed, it is
    	// safe to acquire mheap_.lock, copy the slice header, and
    	// then release mheap_.lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

                                             // We already checked that cond should
                                             // not have variable writes.
                                             assert(false && "Should not happen");
                                           });
      // Recreate the while op.
      OpBuilder builder(while_op);
      // Now use the filtered original operands, which will be replaced by
      // AddLoadsStoresOutsideControlFlowOp().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    
    		if proxier.ipFamily == v1.IPv6Protocol && !isIPv4CIDR {
    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    				// are laid out in dependency order.
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue // symbol in different object
    			}
    			if dupok {
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue
    			}
    
    			lib.Textp = append(lib.Textp, sym.LoaderSym(gi))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    			if !pathIsRoot[m.Path] {
    				if s := mg.Selected(m.Path); gover.ModCompare(m.Path, s, m.Version) < 0 {
    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    // wroteRequest is a check before recycling a connection that the previous write
    // (from writeLoop above) happened and was successful.
    func (pc *persistConn) wroteRequest() bool {
    	select {
    	case err := <-pc.writeErrCh:
    		// Common case: the write happened well before the response, so
    		// avoid creating a timer.
    		return err == nil
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    @TaskAction
                    def go() {
                        try {
                            println("project = " + project)
                        } catch(Exception e) {
                            // should not happen, problems are collected
                            throw new RuntimeException("broken")
                        }
                    }
                }
    
                task problems(type: BrokenTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    func CleanupLeftovers(ctx context.Context, ipt utiliptables.Interface) (encounteredError bool) {
    	logger := klog.FromContext(ctx)
    	// Unlink our chains
    	for _, jump := range append(iptablesJumpChains, iptablesCleanupOnlyChains...) {
    		args := append(jump.extraArgs,
    			"-m", "comment", "--comment", jump.comment,
    			"-j", string(jump.dstChain),
    		)
    		if err := ipt.DeleteRule(jump.table, jump.srcChain, args...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	ss1Rev1.Namespace = ss1.Namespace
    
    	// Create a new revision with the same name and hash label as an existing revision, but with
    	// a different template. This could happen as a result of a hash collision, but in this test
    	// this situation is created by setting name and hash label to values known to be in use by
    	// an existing revision.
    	modTemplate := ss1.Spec.Template.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			"-fno-builtin",
    		)
    	}
    
    	c = append(c, p.GccOptions...)
    	c = append(c, p.gccMachine()...)
    	if goos == "aix" {
    		c = append(c, "-maix64")
    		c = append(c, "-mcmodel=large")
    	}
    	// disable LTO so we get an object whose symbols we can read
    	c = append(c, "-fno-lto")
    	c = append(c, "-") //read input from standard input
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top