Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,069 for repaint (0.54 sec)

  1. src/cmd/vendor/golang.org/x/term/terminal.go

    		// |t.pos| chars into the string, but there will be a gap at
    		// the end of any wrapped line.
    		//
    		// But the position will actually be correct until we move, so
    		// we can move back to the beginning and repaint everything.
    		t.clearAndRepaintLinePlusNPrevious(t.maxLine)
    	}
    
    	_, err := t.c.Write(t.outBuf)
    	t.outBuf = t.outBuf[:0]
    	return err
    }
    
    type pasteIndicatorError struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  2. src/encoding/json/testdata/code.json.gz

    :[{"name":"LayoutTests","kids":[{"name":"fast","kids":[{"name":"repaint","kids":[{"name":"repaint-during-scroll-expected.checksum","kids":[],"cl_weight":0.14285714285714285,"touches":1,"min_t":1266965732,"max_t":1266965732,"mean_t":1266965732},{"name":"repaint-during-scroll-expected.png","kids":[],"cl_weight":0.14285714285714285,"touches":1,"min_t":1266965732,"max_t":1266965732,"mean_t":1266965732},{"name":"overflow-outline-repaint-expected.txt","kids":[],"cl_weight":0.06666666666666667,"touches...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repair.go

    // map at the end of a single execution loop if no race is encountered.
    //
    // TODO: allocate new IPs if necessary
    // TODO: perform repair?
    type Repair struct {
    	interval      time.Duration
    	serviceClient corev1client.ServicesGetter
    
    	networkByFamily   map[v1.IPFamily]*net.IPNet                    // networks we operate on, by their family
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/controller/repair.go

    	eventBroadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: eventClient})
    	recorder := eventBroadcaster.NewRecorder(legacyscheme.Scheme, "portallocator-repair-controller")
    
    	registerMetrics()
    
    	return &Repair{
    		interval:      interval,
    		serviceClient: serviceClient,
    		portRange:     portRange,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. cni/pkg/repair/repair.go

    // limitations under the License.
    
    package repair
    
    import (
    	"context"
    
    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/pkg/kube"
    )
    
    var repairLog = scopes.CNIAgent
    
    func StartRepair(ctx context.Context, cfg config.RepairConfig) {
    	if !cfg.Enabled {
    		repairLog.Info("CNI repair is disable.")
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

         * <p>
         * Artifact transforms can only change attributes, so the capabilities remain unchanged throughout the transform chain.
         */
        List<? extends Capability> getCapabilities();
    
        /**
         * Name of the source artifact being transformed.
         * <p>
         * This name remains the same throughout the transform chain.
         */
        String getArtifactName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacDataInputStream.java

        }
    
    
        public short readShort () throws IOException {
            align(2);
            return Short.reverseBytes(this.dis.readShort());
        }
    
    
        public int readInt () throws IOException {
            align(4);
            return Integer.reverseBytes(this.dis.readInt());
        }
    
    
        public long readLong () throws IOException {
            align(8);
            return Long.reverseBytes(this.dis.readLong());
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 21 21:19:58 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/expressions.input

    	f(0, args...)
    	f(1, args)
    	f(2, args[0])
    
    	// make sure syntactically legal code remains syntactically legal
    	f(3, 42 ...) // a blank must remain between 42 and ...
    	f(4, 42. ...)
    	f(5, 42....)
    	f(6, 42.0 ...)
    	f(7, 42.0...)
    	f(8, .42 ...)
    	f(9, .42...)
    	f(10, 42e0 ...)
    	f(11, 42e0...)
    
    	_ = 42 .x // a blank must remain between 42 and .x
    	_ = 42. .x
    	_ = 42..x
    	_ = 42.0 .x
    	_ = 42.0.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  9. cni/pkg/repair/repaircontroller.go

    	if !c.matchesFilter(pod) {
    		return // Skip, pod doesn't need repair
    	}
    	repairLog.Debugf("Reconciling pod %s", pod.Name)
    
    	if c.cfg.RepairPods {
    		return c.repairPod(pod)
    	} else if c.cfg.DeletePods {
    		return c.deleteBrokenPod(pod)
    	} else if c.cfg.LabelPods {
    		return c.labelBrokenPod(pod)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cmd/local-locker_test.go

    					if len(l.lockUID) == locks*readers {
    						t.Fatalf("objects uids all remain, unlikely")
    					}
    					if len(l.lockMap) == 0 {
    						t.Fatalf("objects all deleted, 0 remains")
    					}
    					if len(l.lockUID) == 0 {
    						t.Fatalf("objects uids all deleted, 0 remains")
    					}
    
    					start = time.Now()
    					l.expireOldLocks(-time.Minute)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top