Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for onFinished (0.27 sec)

  1. src/compress/testdata/gettysburg.txt

    consecrated it, far above our poor power to add or detract.
    The world will little note, nor long remember what we say here,
    but it can never forget what they did here.
      It is for us the living, rather, to be dedicated here to the
    unfinished work which they who fought here have thus far so
    nobly advanced.  It is rather for us to be here dedicated to
    the great task remaining before us - that from these honored
    dead we take increased devotion to that cause for which they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         */
        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
         * Executes the given build operation with the given worker, returns the result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/alias.go

    		panic(fmt.Sprintf("non-terminated alias %s", a0.obj.name))
    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/go/types/alias.go

    		panic(fmt.Sprintf("non-terminated alias %s", a0.obj.name))
    	}
    
    	// Memoize the type only if valid.
    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/controller/job/util/utils_test.go

    			if isJobFinished != test.wantJobFinished {
    				if test.wantJobFinished {
    					t.Error("Expected the job to be finished")
    				} else {
    					t.Error("Expected the job to be unfinished")
    				}
    			}
    
    			if conditionType != test.wantConditionType {
    				t.Errorf("Unexpected job condition type. got: '%v', want: '%v'", conditionType, test.wantConditionType)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 09:27:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

    import okio.Timeout
    
    /** A logical bidirectional stream. */
    @Suppress("NAME_SHADOWING")
    class Http2Stream internal constructor(
      val id: Int,
      val connection: Http2Connection,
      outFinished: Boolean,
      inFinished: Boolean,
      headers: Headers?,
    ) {
      internal val lock: ReentrantLock = ReentrantLock()
      val condition: Condition = lock.newCondition()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. doc/README.md

    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    To prepare the release notes for a release, run `relnote generate`.
    That will merge the `.md` files in `next` into a single file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/html/template/transition.go

    		if i < k {
    			break
    		}
    		switch s[i] {
    		case '\\':
    			i++
    			if i == len(s) {
    				return context{
    					state: stateError,
    					err:   errorf(ErrPartialEscape, nil, 0, "unfinished escape sequence in JS string: %q", s),
    				}, len(s)
    			}
    		case '$':
    			if len(s) >= i+2 && s[i+1] == '{' {
    				c.jsBraceDepth = append(c.jsBraceDepth, 0)
    				c.state = stateJS
    				return c, i + 2
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/html/template/error.go

    	ErrOutputContext
    
    	// ErrPartialCharset: "unfinished JS regexp charset in ..."
    	// Example:
    	//     <script>var pattern = /foo[{{.Chars}}]/</script>
    	// Discussion:
    	//   Package html/template does not support interpolation into regular
    	//   expression literal character sets.
    	ErrPartialCharset
    
    	// ErrPartialEscape: "unfinished escape sequence in ..."
    	// Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. 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)
Back to top