Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for beginning (0.11 sec)

  1. src/time/time.go

    	return
    }
    
    // ZoneBounds returns the bounds of the time zone in effect at time t.
    // The zone begins at start and the next zone begins at end.
    // If the zone begins at the beginning of time, start will be returned as a zero Time.
    // If the zone goes on forever, end will be returned as a zero Time.
    // The Location of the returned times will be the same as t.
    func (t Time) ZoneBounds() (start, end Time) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    // that version is selected.
    func (mg *ModuleGraph) WalkBreadthFirst(f func(m module.Version)) {
    	mg.g.WalkBreadthFirst(f)
    }
    
    // BuildList returns the selected versions of all modules present in the graph,
    // beginning with the main modules.
    //
    // The order of the remaining elements in the list is deterministic
    // but arbitrary.
    //
    // The caller must not modify the returned list, but may safely append to it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    		}
    		// Now we're talking about a thread and goroutine that have been
    		// blocked on a syscall for the entire generation. This case must
    		// not have a P; the runtime makes sure that all Ps are traced at
    		// the beginning of a generation, which involves taking a P back
    		// from every thread.
    		ms, ok := o.mStates[mid]
    		if ok {
    			// This M has been seen. That means we must have seen this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

     * for better programmatic control when processing many files under
     * a common base. This is slightly different from the corresponding
     * <code>java.io.File</code> usage; a '/' at the beginning of the second
     * parameter will still use the server component of the first parameter. The
     * examples below illustrate the resulting URLs when this second constructor
     * argument is used.
     *
     * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/runtime/mbitmap.go

    // Note that this "tiled" bitmap isn't stored anywhere; it is generated on-the-fly.
    //
    // For objects without their own span, the type metadata is stored in the first
    // word before the object at the beginning of the allocation slot. For objects
    // with their own span, the type metadata is stored in the mspan.
    //
    // The bitmap for small unallocated objects in scannable spans is not maintained
    // (can be junk).
    
    package runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    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. src/cmd/go/internal/modget/get.go

    might also match.
    
    For example, consider:
    
    	GOVCS=github.com:git,evil.com:off,*:git|hg
    
    With this setting, code with a module or import path beginning with
    github.com/ can only use git; paths on evil.com cannot use any version
    control command, and all other paths (* matches everything) can use
    only git or hg.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	abbrevSec := d.writeabbrev()
    	dwarfp = append(dwarfp, abbrevSec)
    	d.calcCompUnitRanges()
    	sort.Sort(compilationUnitByStartPC(d.linkctxt.compUnits))
    
    	// newdie adds DIEs to the *beginning* of the parent's DIE list.
    	// Now that we're done creating DIEs, reverse the trees so DIEs
    	// appear in the order they were created.
    	for _, u := range d.linkctxt.compUnits {
    		reversetree(&u.DWInfo.Child)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			}
    		}
    		base.Fatal(err)
    	} else if _, _, ok := module.SplitPathVersion(modPath); !ok {
    		if strings.HasPrefix(modPath, "gopkg.in/") {
    			invalidMajorVersionMsg := fmt.Errorf("module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN:\n\tgo mod init %s", suggestGopkgIn(modPath))
    			base.Fatalf(`go: invalid module path "%v": %v`, modPath, invalidMajorVersionMsg)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Fix watch cache filtering ([#28968](https://github.com/kubernetes/kubernetes/pull/28968), [@liggitt](https://github.com/liggitt))
    * Lock all possible kubecfg files at the beginning of ModifyConfig. ([#28232](https://github.com/kubernetes/kubernetes/pull/28232), [@cjcullen](https://github.com/cjcullen))
    
    
    
    # v1.3.1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top