Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for initialGen (0.23 sec)

  1. src/internal/trace/order.go

    // required to) continue to call Next until it is exhausted.
    func (o *ordering) Advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) (bool, error) {
    	if o.initialGen == 0 {
    		// Set the initial gen if necessary.
    		o.initialGen = gen
    	}
    
    	var curCtx, newCtx schedCtx
    	curCtx.M = m
    	newCtx.M = m
    
    	var ms *mState
    	if m == NoThread {
    		curCtx.P = NoProc
    		curCtx.G = NoGoroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'G_G': 'class G_G extends G { }',
            'J_G_G': 'class J_G_G extends G_G { }',
        ]
    
        def 'Groovy-Java joint compilation on #scenario'() {
            given:
            applyGroovyFileSet(initialSet)
            run "compileGroovy"
    
            when:
            outputs.snapshot { applyGroovyFileSet(firstChange) }
            run "compileGroovy", "--info"
    
            then: 'first build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	if wc.initialRev > 0 && forceInitialEvents {
    		currentStorageRV, err := wc.watcher.getCurrentStorageRV(wc.ctx)
    		if err != nil {
    			wc.sendError(err)
    			return
    		}
    		if uint64(wc.initialRev) > currentStorageRV {
    			wc.sendError(storage.NewTooLargeResourceVersionError(uint64(wc.initialRev), currentStorageRV, int(wait.Jitter(1*time.Second, 3).Seconds())))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

        var b = 0
        for (codePoint in input) {
          if (codePoint < INITIAL_N) {
            result.writeByte(codePoint)
            b++
          }
        }
    
        // Copy a delimiter if any basic code points were emitted.
        if (b > 0) result.writeByte('-'.code)
    
        var n = INITIAL_N
        var delta = 0
        var bias = INITIAL_BIAS
        var h = b
        while (h < input.size) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/state.go

    // initial working directory in workdir and its initial environment set to
    // initialEnv (or os.Environ(), if initialEnv is nil).
    //
    // The new State also contains pseudo-environment-variables for
    // ${/} and ${:} (for the platform's path and list separators respectively),
    // but does not pass those to subprocesses.
    func NewState(ctx context.Context, workdir string, initialEnv []string) (*State, error) {
    	absWork, err := filepath.Abs(workdir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/punycode.go

    //
    // All computation is done with int32s, so that overflow behavior is identical
    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    func punyError(s string) error { return &labelError{s, "A3"} }
    
    // decode decodes a string as specified in section 6.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/punycode.go

    //
    // All computation is done with int32s, so that overflow behavior is identical
    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    // encode encodes a string as specified in section 6.3 and prepends prefix to
    // the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			cap:  8,
    		},
    		{
    			name: "with existing capacity and length above max",
    			args: args{initialCapacity: 12, initialLen: 5, maxCapacity: 10, sizes: []int{8, 4}},
    			cap:  12,
    			len:  5,
    		},
    		{
    			name: "with existing capacity and length below max",
    			args: args{initialCapacity: 5, initialLen: 3, maxCapacity: 10, sizes: []int{8, 4}},
    			cap:  8,
    			len:  3,
    		},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates raise custom ops pass, which legalize custom ops to TFL::CustomOp
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLowerCustomOpsPass();
    
    // Inserts an TFL::CallOnce op when the tf_saved_model's session initialzer is
    // given.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCallOnceOpFromSessionInitializerPass();
    
    // Replace the tfl wrapped random function body with tfl.customOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.employeeType=Mitarbeitertyp
    labels.user_facsimileTelephoneNumber=Faxnummer
    labels.facsimileTelephoneNumber=Faxnummer
    labels.user_postOfficeBox=Postfach
    labels.postOfficeBox=Postfach
    labels.user_initials=Initialien
    labels.initials=Initialien
    labels.user_carLicense=Autokennzeichen
    labels.carLicense=Autokennzeichen
    labels.user_mobile=Handy
    labels.mobile=Handy
    labels.user_postalAddress=Postanschrift
    labels.postalAddress=Postanschrift
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top