Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,571 for continued (0.34 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The continue option should be set when retrieving more results from the server. Since this value is
    	// server defined, clients may only use the continue value from a previous query result with identical
    	// query parameters (except for the value of continue) and the server may reject a continue value it
    	// does not recognize. If the specified continue value is no longer valid whether due to expiration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (w WaitStatus) Signal() Signal { return -1 }
    
    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    func (w WaitStatus) Continued() bool { return false }
    
    func (w WaitStatus) StopSignal() Signal { return -1 }
    
    func (w WaitStatus) Signaled() bool { return false }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/testdata/Isaac.Newton-Opticks.txt

    Spectrum is not increased by the Refractions, the Diameters of the
    Circles are not increased thereby. Since those Tangents continue to be
    right Lines, every Circle which in the first Prism is more or less
    refracted, is exactly in the same proportion more or less refracted in
    the second. And seeing all these things continue to succeed after the
    same manner when the Rays are again in a third Prism, and again in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    easy Reflexion, which they have at the point of Reflexion, shall still continue to return; and the Returns shall be at distances from the point of Reflexion in the arithmetical progression of the Numbers 2, 4, 6, 8, 10, 12, &c. and between these Fits the Rays shall be in Fits of easy Transmission._ For since the Fits of easy Reflexion and easy Transmission are of a returning nature, there is no reason why these Fits, which continued till the Ray arrived at the reflecting Medium, and there inclined the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/branches.go

    package syntax
    
    import "fmt"
    
    // checkBranches checks correct use of labels and branch
    // statements (break, continue, fallthrough, goto) in a function body.
    // It catches:
    //   - misplaced breaks, continues, and fallthroughs
    //   - bad labeled breaks and continues
    //   - invalid, unused, duplicate, and missing labels
    //   - gotos jumping over variable declarations and into blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    			}
    
    			// step forward in time past the grace period
    			fakeClock.Step(3 * time.Minute)
    			// no change in PID stats to simulate continued pressure
    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager expects no error but got %v", err)
    			}
    
    			// verify PID pressure is still reported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    ### SIG Autoscaling
    
    [SIG Autoscaling][] is responsible for autoscaling-related components,
    such as the Horizontal Pod Autoscaler and Cluster Autoscaler.
    
    For the 1.8 release, SIG Autoscaling continued to focus on stabilizing
    features introduced in previous releases: the new version of the
    Horizontal Pod Autoscaler API, which supports custom metrics, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    				block = t._break
    			}
    		}
    
    	case token.CONTINUE:
    		if s.Label != nil {
    			if lb := b.labeledBlock(s.Label, nil); lb != nil {
    				block = lb._continue
    			}
    		} else {
    			for t := b.targets; t != nil && block == nil; t = t.tail {
    				block = t._continue
    			}
    		}
    
    	case token.FALLTHROUGH:
    		for t := b.targets; t != nil && block == nil; t = t.tail {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                    int contained = watchedDirectories.remove(absolutePath, toRemove);
                    if (contained <= toRemove) {
                        directoriesToStopWatching.add(new File(absolutePath));
                    }
                } else if (count > 0) {
                    int contained = watchedDirectories.add(absolutePath, count);
                    if (contained == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/tokens.go

    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top