Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for onFinished (0.18 sec)

  1. pkg/controller/ttlafterfinished/ttlafterfinished_controller_test.go

    		ttl              *int32
    		since            *time.Time
    		expectErr        bool
    		expectErrStr     string
    		expectedTimeLeft *time.Duration
    		expectedExpireAt time.Time
    	}{
    		{
    			name:         "Error case: Job unfinished",
    			ttl:          pointer.Int32(100),
    			since:        &now.Time,
    			expectErr:    true,
    			expectErrStr: "should not be cleaned up",
    		},
    		{
    			name:           "Error case: Job completed now, no TTL",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 18 18:46:26 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    	names, start := []string{}, uint64(0)
    
    	buf := bytes.NewBuffer(syms)
    
    	for {
    		symAddr, name, err := nextSymbol(buf)
    		if err == io.EOF {
    			// Done. If there was an unfinished group, append it.
    			if len(names) != 0 {
    				if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    					symbols = append(symbols, &plugin.Sym{Name: match, File: file, Start: start, End: symAddr - 1})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

                if (current > total) {
                    // progress was reported excessively,
                    // we do not know how much work really is left,
                    // so we at least show one progress bar tick as unfinished
                    completedWidth = progressBarWidth - 1;
                } else {
                    completedWidth = (int) ((double) current / total * progressBarWidth);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
                fun moveSpoolFileTo(outputDirectory: File): File {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       * from GC, as with {@link #awaitClear}. Because there are no guarantees for the order of GC
       * finalization processing, there may still be some unfinished work for the GC to do after this
       * method returns.
       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    		{
    			`<a onclick="alert('Hello \`,
    			`unfinished escape sequence in JS string: "Hello \\"`,
    		},
    		{
    			`<a onclick='alert("Hello\, World\`,
    			`unfinished escape sequence in JS string: "Hello\\, World\\"`,
    		},
    		{
    			`<a onclick='alert(/x+\`,
    			`unfinished escape sequence in JS string: "x+\\"`,
    		},
    		{
    			`<a onclick="/foo[\]/`,
    			`unfinished JS regexp charset: "foo[\\]/"`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * from GC, as with {@link #awaitClear}. Because there are no guarantees for the order of GC
       * finalization processing, there may still be some unfinished work for the GC to do after this
       * method returns.
       *
       * <p>This method does not create any memory pressure as would be required to cause soft
       * references to be processed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    == Declaring a changing version
    
    A team might decide to implement a series of features before releasing a new version of the application or library. A common strategy to allow consumers to integrate an unfinished version of their artifacts early and often is to release a module with a so-called _changing version_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    
    	fs.IntVar(&s.MinRequestTimeout, "min-request-timeout", s.MinRequestTimeout, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                ]
            }
        }
    
        def "logs contain a message indicating if an unfinished builder is overwritten with one that finishes"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
                            // Even though this is unfinished, it will not trigger an error
                            // It should log a message though.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top