Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,463 for paused (0.13 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    		`MinReadySeconds:` + fmt.Sprintf("%v", this.MinReadySeconds) + `,`,
    		`RevisionHistoryLimit:` + valueToStringGenerated(this.RevisionHistoryLimit) + `,`,
    		`Paused:` + fmt.Sprintf("%v", this.Paused) + `,`,
    		`ProgressDeadlineSeconds:` + valueToStringGenerated(this.ProgressDeadlineSeconds) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *DeploymentStatus) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/parse.go

    // The resulting tag is canonicalized using the default canonicalization type.
    func Parse(s string) (t Tag, err error) {
    	return Default.Parse(s)
    }
    
    // Parse parses the given BCP 47 string and returns a valid Tag. If parsing
    // failed it returns an error and any part of the tag that could be parsed.
    // If parsing succeeded but an unknown value was found, it returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. build/pause/linux/pause.c

      int i;
      for (i = 1; i < argc; ++i) {
        if (!strcasecmp(argv[i], "-v")) {
          printf("pause.c %s\n", VERSION_STRING(VERSION));
          return 0;
        }
      }
    
      if (getpid() != 1)
        /* Not an error because pause sees use outside of infra containers. */
        fprintf(stderr, "Warning: pause should be the first process\n");
    
      if (sigaction(SIGINT, &(struct sigaction){.sa_handler = sigdown}, NULL) < 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 26 13:26:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    		`MinReadySeconds:` + fmt.Sprintf("%v", this.MinReadySeconds) + `,`,
    		`RevisionHistoryLimit:` + valueToStringGenerated(this.RevisionHistoryLimit) + `,`,
    		`Paused:` + fmt.Sprintf("%v", this.Paused) + `,`,
    		`RollbackTo:` + strings.Replace(this.RollbackTo.String(), "RollbackConfig", "RollbackConfig", 1) + `,`,
    		`ProgressDeadlineSeconds:` + valueToStringGenerated(this.ProgressDeadlineSeconds) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. build/pause/windows/pause.c

    		exit(0);
    
    	default:
    		return FALSE;
    	}
    }
    
    int main(int argc, char **argv)
    {
    	int i;
    	for (i = 1; i < argc; ++i)
    	{
    		if (!_stricmp(argv[i], "-v"))
    		{
    			fprintf(stdout, "pause.c %s\n", VERSION_STRING(VERSION));
    			return 0;
    		}
    	}
    
    	if (SetConsoleCtrlHandler(CtrlHandler, TRUE))
    	{
    		Sleep(INFINITE);
    	}
    	else
    	{
    		printf("\nERROR: Could not set control handler\n");
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    }
    
    // Release blocks until all work is passed on the chain
    func (item *WorkChannelItem) Release() {
    	item.lock.Lock()
    	defer item.lock.Unlock()
    	item.pause = false
    	for i := 0; i < item.queue; i++ {
    		item.out <- struct{}{}
    	}
    	item.queue = 0
    }
    
    // WorkChannel intercepts podWork channels between the pod worker and its child
    // goroutines and allows tests to pause or release the flow of podWork to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser.go

    }
    
    // FuncExpr represents a function call
    type FuncExpr struct {
    	SFunc     *SimpleArgFunc `parser:"  @@"`
    	Count     *CountFunc     `parser:"| @@"`
    	Cast      *CastFunc      `parser:"| @@"`
    	Substring *SubstringFunc `parser:"| @@"`
    	Extract   *ExtractFunc   `parser:"| @@"`
    	Trim      *TrimFunc      `parser:"| @@"`
    	DateAdd   *DateAddFunc   `parser:"| @@"`
    	DateDiff  *DateDiffFunc  `parser:"| @@"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/exceptions/DefaultMultiCauseExceptionTest.groovy

            outstr.toString().contains("Caused by: ${RuntimeException.name}: cause1")
        }
    
        def printStacktraceWithNestedMultipleCauses() {
            RuntimeException causeA = new RuntimeException('causeA')
            RuntimeException causeB = new RuntimeException('causeB')
            RuntimeException cause1 = new TestMultiCauseException('cause1', [causeA, causeB])
            RuntimeException causeC = new RuntimeException('causeC')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    // preceded by whitespace)
    var wordRegex = regexp.MustCompile(`(?:^|\s)("[^"]*"|[^"]\S*)`)
    
    // Used by ParseRule
    var boolPtrType = reflect.PointerTo(reflect.TypeOf(true))
    var ipTablesValuePtrType = reflect.TypeOf((*IPTablesValue)(nil))
    
    // ParseRule parses rule. If strict is false, it will parse the recognized
    // parameters and ignore unrecognized ones. If it is true, parsing will fail if there are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top