Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,382 for _after (0.14 sec)

  1. src/go/build/read_test.go

    func testRead(t *testing.T, tests []readTest, read func(io.Reader) ([]byte, error)) {
    	for i, tt := range tests {
    		beforeP, afterP, _ := strings.Cut(tt.in, "ℙ")
    		in := beforeP + afterP
    		testOut := beforeP
    
    		if beforeD, afterD, ok := strings.Cut(beforeP, "𝔻"); ok {
    			in = beforeD + afterD + afterP
    			testOut = afterD
    		}
    
    		r := strings.NewReader(in)
    		buf, err := read(r)
    		if err != nil {
    			if tt.err == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/command_line_interface_basics.adoc

    Executing Gradle on the command line conforms to the following structure:
    
    ----
    gradle [taskName...] [--option-name...]
    ----
    
    Options are allowed _before_ and _after_ task names.
    
    ----
    gradle [--option-name...] [taskName...]
    ----
    
    If multiple tasks are specified, you should separate them with a space.
    
    ----
    gradle [taskName1 taskName2...] [--option-name...]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/internal/stringslite/strings.go

    			if j < 0 {
    				return -1
    			}
    			return i + j
    		}
    	}
    	return -1
    }
    
    func Cut(s, sep string) (before, after string, found bool) {
    	if i := Index(s, sep); i >= 0 {
    		return s[:i], s[i+len(sep):], true
    	}
    	return s, "", false
    }
    
    func CutPrefix(s, prefix string) (after string, found bool) {
    	if !HasPrefix(s, prefix) {
    		return s, false
    	}
    	return s[len(prefix):], true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    ====
    
    The "should run after" ordering rule is similar but less strict, as it will be ignored in two situations:
    
    1. If using that rule introduces an ordering cycle.
    2. When using parallel execution and all task dependencies have been satisfied apart from the "should run after" task, then this task will be run regardless of whether or not its "should run after" dependencies have been run.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/encoding/json/scanner.go

    		}
    		return s.error(c, "after array element")
    	}
    	return s.error(c, "")
    }
    
    // stateEndTop is the state after finishing the top-level value,
    // such as after reading `{}` or `[1,2,3]`.
    // Only space characters should be seen now.
    func stateEndTop(s *scanner, c byte) int {
    	if !isSpace(c) {
    		// Complain about non-space byte on next call.
    		s.error(c, "after top-level value")
    	}
    	return scanEnd
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    e.g, To remove noncurrent versions of all objects keeping the most recent 5 noncurrent versions under the prefix `user-uploads/` 30 days after they become noncurrent ,
    
    ```
    {
        "Rules": [
            {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. docs/en/docs/benchmarks.md

    * **FastAPI**:
        * The same way that Starlette uses Uvicorn and cannot be faster than it, **FastAPI** uses Starlette, so it cannot be faster than it.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/alloc.go

    	if txn, err := al.txnUpdateNodePorts(after, before, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	success = true
    	return result, nil
    }
    
    func (al *Allocators) txnUpdateClusterIPs(after After, before Before, dryRun bool) (transaction, error) {
    	service := after.Service
    
    	allocated, released, err := al.updateClusterIPs(after, before, dryRun)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            // So here we are just closing over the safely reusable things and then using proper dependencies for the tool chain registry.
            // Unfortunately, we can't do it in the create action because that would fire _after_ @Defaults rules.
            // We have to use a @Defaults rule to assign the tool chain because it needs to be there in user @Mutate rules
            // Or at least, the file locations do so that they can be tweaked.
            // LD - 5/6/14
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/order.go

    	garbage   = ^uint64(0) - 1
    	noseq     = ^uint64(0)
    	seqinc    = ^uint64(0) - 1
    )
    
    // stateTransition returns goroutine state (sequence and status) when the event
    // becomes ready for merging (init) and the goroutine state after the event (next).
    func stateTransition(ev *Event) (g uint64, init, next gState) {
    	// Note that we have an explicit return in each case, as that produces slightly better code (tested on Go 1.19).
    
    	switch ev.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top