Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,133 for begins (0.53 sec)

  1. src/runtime/mgclimit_test.go

    			t.Errorf("bucket overflow %d should have remained constant, found %d", expect, l.Overflow())
    		}
    		if t.Failed() {
    			t.FailNow()
    		}
    
    		// Resize procs down and make sure limiting begins again.
    		// Also make sure resizing doesn't affect overflow. This isn't
    		// a case where we want to report overflow, because we're not
    		// actively doing work to achieve it. It's that we have fewer
    		// CPU resources now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. src/time/time.go

    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    	} else {
    		begin = int(daysBefore[month])
    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    // daysBefore[m] counts the number of days in a non-leap year
    // before month m begins. There is an entry for m=12, counting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

            }
        }
    
        /**
         * The algorithm itself. Performs a breadth-first search on the set of potential transform solutions in order to find
         * all solutions at a given transform chain depth. The search begins at the final node of the chain. At each depth, a candidate
         * transform is applied to the beginning of the chain. Then, if a source variant can be used as a root of that chain,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ComparisonChain.java

     *
     * @author Mark Davis
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class ComparisonChain {
      private ComparisonChain() {}
    
      /** Begins a new chained comparison statement. See example in the class documentation. */
      public static ComparisonChain start() {
        return ACTIVE;
      }
    
      private static final ComparisonChain ACTIVE =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. src/log/slog/logger.go

    // Log, Debug, Info, Warn, and Error methods.
    // For each call, it creates a [Record] and passes it to a [Handler].
    //
    // To create a new Logger, call [New] or a Logger method
    // that begins "With".
    type Logger struct {
    	handler Handler // for structured logging
    }
    
    func (l *Logger) clone() *Logger {
    	c := *l
    	return &c
    }
    
    // Handler returns l's Handler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

     * <p>
     * The following example shows how you can configure the 'main' source set, which in this
     * case involves excluding classes whose package begins 'some.unwanted.package' from
     * compilation of the source files in the 'java' {@link SourceDirectorySet}:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * sourceSets {
     *   main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    }
    
    func (grm *nestedPendingOperations) operationComplete(key operationKey, err *error) {
    	// Defer operations are executed in Last-In is First-Out order. In this case
    	// the lock is acquired first when operationCompletes begins, and is
    	// released when the method finishes, after the lock is released cond is
    	// signaled to wake waiting goroutine.
    	defer grm.cond.Signal()
    	grm.lock.Lock()
    	defer grm.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/engine.go

    // Adding single quotes around text keeps spaces in that text from being treated
    // as word separators and also disables environment variable expansion.
    // Inside a single-quoted block of text, a repeated single quote indicates
    // a literal single quote, as in:
    //
    //	'Don''t communicate by sharing memory.'
    //
    // A line beginning with # is a comment and conventionally explains what is
    // being done or tested at the start of a new section of the script.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top