Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for STARTING (0.23 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            // XML schema and this will not change anytime soon. We do not want to build effective models based on
            // models without a version starting with 3.4.
            validateStringNotEmpty("modelVersion", problems, Severity.ERROR, Version.V20, m.getModelVersion(), m);
    
            validateModelVersion(problems, m.getModelVersion(), m, VALID_MODEL_VERSIONS);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Controller should fail to schedule these, as there are too many missed starting times
    		// and either no deadline or a too long deadline.
    		"prev ran but done, long overdue, not past deadline, A": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	defer dsc.eventBroadcaster.Shutdown()
    
    	defer dsc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting daemon sets controller")
    	defer logger.Info("Shutting down daemon sets controller")
    
    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. src/html/template/escape_test.go

    			`'/' could start a division or regexp: "/-"`,
    		},
    		{
    			`{{template "foo"}}`,
    			"z:1:11: no such template \"foo\"",
    		},
    		{
    			`<div{{template "y"}}>` +
    				// Illegal starting in stateTag but not in stateText.
    				`{{define "y"}} foo<b{{end}}`,
    			`"<" in attribute name: " foo<b"`,
    		},
    		{
    			`<script>reverseList = [{{template "t"}}]</script>` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // check for presence of unsupported command line options
            try {
                if (cliRequest.commandLine.hasOption("llr")) {
                    throw new UnrecognizedOptionException("Option '-llr' is not supported starting with Maven 3.9.1");
                }
            } catch (ParseException e) {
                System.err.println("Unsupported options: " + e.getMessage());
                cliManager.displayHelp(System.out);
                throw e;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		// fixup missing generation in very old CRs
    		if v.repairGeneration && objectMeta.Generation == 0 {
    			objectMeta.Generation = 1
    		}
    	}
    
    	// restore meta fields, starting clean
    	if foundKind {
    		u.SetKind(kind)
    	}
    	if foundApiVersion {
    		u.SetAPIVersion(apiVersion)
    	}
    	if foundObjectMeta {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

        return forArrayWithPosition(array, 0);
      }
    
      /**
       * Returns a list iterator containing the elements in the specified {@code array} in order,
       * starting at the specified {@code position}.
       *
       * <p>The {@code Iterable} equivalent of this method is {@code
       * Arrays.asList(array).listIterator(position)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

       */
      public int indexIn(CharSequence sequence) {
        return indexIn(sequence, 0);
      }
    
      /**
       * Returns the index of the first matching BMP character in a character sequence, starting from a
       * given position, or {@code -1} if no character matches after that position.
       *
       * <p>The default implementation iterates over the sequence in forward order, beginning at {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterators.java

        return forArrayWithPosition(array, 0);
      }
    
      /**
       * Returns a list iterator containing the elements in the specified {@code array} in order,
       * starting at the specified {@code position}.
       *
       * <p>The {@code Iterable} equivalent of this method is {@code
       * Arrays.asList(array).listIterator(position)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		// trampolines csects made by ld.
    		argv = append(argv, "-nostartfiles")
    		argv = append(argv, "/lib/crt0_64.o")
    
    		extld := ctxt.extld()
    		name, args := extld[0], extld[1:]
    		// Get starting files.
    		getPathFile := func(file string) string {
    			args := append(args, "-maix64", "--print-file-name="+file)
    			out, err := exec.Command(name, args...).CombinedOutput()
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top