Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for better (0.17 sec)

  1. src/runtime/traceback.go

    		// So for GC stack traversal, we can safely ignore SPWRITE for the innermost frame,
    		// but farther up the stack we'd better not find any.
    		// This is somewhat imprecise because we're just guessing that we're in the stack
    		// growth check. It would be better if SPWRITE were encoded in the spdelta
    		// table so we would know for sure that we were still in safe code.
    		//
    		// uSE uPE inn | action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // they are allocated. There are various benefits to delaying zeroing
    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	key, err := controller.KeyFunc(ds)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %#v: %v", ds, err))
    		return
    	}
    
    	// TODO: Handle overlapping controllers better. See comment in ReplicationManager.
    	dsc.queue.Add(key)
    }
    
    func (dsc *DaemonSetsController) enqueueDaemonSetAfter(obj interface{}, after time.Duration) {
    	key, err := controller.KeyFunc(obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		// into listener address so that there is a dedicated listener for this
    		// ip:port. This will reduce the impact of a listener reload
    		if listenerOpts.bind.Primary() == "" { // TODO: make this better
    			svcListenAddress := listenerOpts.service.GetAddressForProxy(listenerOpts.proxy)
    			svcExtraListenAddresses := listenerOpts.service.GetExtraAddressesForProxy(listenerOpts.proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = c.autosize + a.Offset
    			return c.aconsize()
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * to assume any role. However, any roles which were previously disabled will become
         * deprecated in the copied configuration. In 9.0, we will update this to copy
         * roles and deprecations without modification. Or, better yet, we will remove support
         * for copying configurations altogether.
         *
         * This means the copy created is <strong>NOT</strong> a strictly identical copy of the original, as the role
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    		t.rebuild = false
    	}
    
    	t.run()
    }
    
    // tester executes cmdtest.
    type tester struct {
    	race        bool
    	msan        bool
    	asan        bool
    	listMode    bool
    	rebuild     bool
    	failed      bool
    	keepGoing   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// this is better because it only require to keep ind then nxt alive while looping,
    		// while the original form keeps ind then nxt and end alive
    		start, end := v.min, v.max
    		if v.flags&indVarCountDown != 0 {
    			start, end = end, start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    //   - Types[TUNSAFEPTR] is package unsafe's Pointer type.
    var Types [NTYPE]*Type
    
    var (
    	// Predeclared alias types. These are actually created as distinct
    	// defined types for better error messages, but are then specially
    	// treated as identical to their respective underlying types.
    	AnyType  *Type
    	ByteType *Type
    	RuneType *Type
    
    	// Predeclared error interface type.
    	ErrorType *Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Replacement collections in `org.gradle.plugins.ide.idea.model.IdeaModule`
    
    The `testResourcesDirs` and `testSourcesDirs` fields and their getters and setters have been deprecated.
    Replace usages with the now stable `getTestSources()` and `getTestResources()` methods and their respective setters.
    These new methods return and are backed by `ConfigurableFileCollection` instances for improved flexibility of use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top