Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 338 for happen (0.13 sec)

  1. src/runtime/malloc.go

    			n := pEnd - l.mapped
    			sysMap(unsafe.Pointer(l.mapped), n, sysStat)
    			sysUsed(unsafe.Pointer(l.mapped), n, n)
    		}
    		l.mapped = pEnd
    	}
    	return unsafe.Pointer(p)
    }
    
    // notInHeap is off-heap memory allocated by a lower-level allocator
    // like sysAlloc or persistentAlloc.
    //
    // In general, it's better to use real types which embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            try {
                                classWorld.disposeRealm(realmId);
                            } catch (NoSuchRealmException ignored) {
                                // can't happen
                            }
                        }
                    }
                }
                System.setOut(oldout);
                System.setErr(olderr);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    //   - c.in must be locked
    //   - c.input must be empty
    //
    // During the handshake one and only one of the following will happen:
    //   - c.hand grows
    //   - c.in.changeCipherSpec is called
    //   - an error is returned
    //
    // After the handshake one and only one of the following will happen:
    //   - c.hand grows
    //   - c.input is set
    //   - an error is returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    // checkpoint saves the current state of known relations.
    // Called when descending on a branch.
    func (ft *factsTable) checkpoint() {
    	if ft.unsat {
    		ft.unsatDepth++
    	}
    	ft.stack = append(ft.stack, checkpointFact)
    	ft.limitStack = append(ft.limitStack, checkpointBound)
    	ft.orderS.Checkpoint()
    	ft.orderU.Checkpoint()
    }
    
    // restore restores known relation to the state just
    // before the previous checkpoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		if !loc.absent() {
    			strs = append(strs, fmt.Sprintf("\t%v = %v\n", s.slots[slotID], s.LocString(loc)))
    		}
    	}
    
    	strs = append(strs, "\n")
    	for reg, slots := range state.registers {
    		if len(slots) != 0 {
    			var slotStrs []string
    			for _, slot := range slots {
    				slotStrs = append(slotStrs, s.slots[slot].String())
    			}
    			strs = append(strs, fmt.Sprintf("\t%v = %v\n", &s.registers[reg], slotStrs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    		externalTrafficOnlyArgs := append(args,
    			"-m", "physdev", "!", "--physdev-is-in",
    			"-m", "addrtype", "!", "--src-type", "LOCAL")
    		proxier.natRules.Write(externalTrafficOnlyArgs, "-j", "ACCEPT")
    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            buffer.append("<?xml version='1.0'?>");
            buffer.append("<project>");
            buffer.append("<modelVersion>4.0.0</modelVersion>");
            buffer.append("<groupId>").append(artifact.getGroupId()).append("</groupId>");
            buffer.append("<artifactId>").append(artifact.getArtifactId()).append("</artifactId>");
            buffer.append("<version>").append(artifact.getBaseVersion()).append("</version>");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    						return err
    					}
    					return nil
    				} else {
    					// This should never happen because someone had to remove
    					// AnnBindCompleted annotation on the claim.
    					logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume already bound to different claim by controller, THIS SHOULD NEVER HAPPEN", "PVC", klog.KObj(claim), "boundClaim", klog.KRef(volume.Spec.ClaimRef.Namespace, volume.Spec.ClaimRef.Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		r := &unitSyms[i]
    		lineSec.syms = append(lineSec.syms, markReachable(r.linesyms)...)
    		infoSec.syms = append(infoSec.syms, markReachable(r.infosyms)...)
    		locSec.syms = append(locSec.syms, markReachable(r.locsyms)...)
    		rangesSec.syms = append(rangesSec.syms, markReachable(r.rangessyms)...)
    	}
    	dwarfp = append(dwarfp, lineSec)
    	dwarfp = append(dwarfp, frameSec)
    	gdbScriptSec := d.writegdbscript()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // The node has node.kubernetes.io/out-of-service taint present.
    //
    // The maxWaitForUnmountDuration is longer (in this case it is 4200 * time.Second so that detach does not happen
    // immediately due to timeout.
    //
    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Deletes the pod from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top