Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 561 for yearly (0.22 sec)

  1. src/crypto/tls/bogo_shim_test.go

    	expectSessionMiss = flag.Bool("expect-session-miss", false, "")
    
    	_                       = flag.Bool("enable-early-data", false, "")
    	_                       = flag.Bool("on-resume-expect-accept-early-data", false, "")
    	_                       = flag.Bool("expect-ticket-supports-early-data", false, "")
    	onResumeShimWritesFirst = flag.Bool("on-resume-shim-writes-first", false, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/go/types/check.go

    		return nil
    	}
    
    	// Avoid early returns here! Nearly all errors can be
    	// localized to a piece of syntax and needn't prevent
    	// type-checking of the rest of the package.
    
    	defer check.handleBailout(&err)
    	check.checkFiles(files)
    	return
    }
    
    // checkFiles type-checks the specified files. Errors are reported as
    // a side effect, not by returning early, to ensure that well-formed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    		return nil
    	}
    
    	// Avoid early returns here! Nearly all errors can be
    	// localized to a piece of syntax and needn't prevent
    	// type-checking of the rest of the package.
    
    	defer check.handleBailout(&err)
    	check.checkFiles(files)
    	return
    }
    
    // checkFiles type-checks the specified files. Errors are reported as
    // a side effect, not by returning early, to ensure that well-formed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/schedule.go

    			case v.Op == OpArg || v.Op == OpSP || v.Op == OpSB:
    				// We want all the args as early as possible, for better debugging.
    				score[v.ID] = ScoreArg
    			case v.Op == OpInitMem:
    				// Early, but after args. See debug.go:buildLocationLists
    				score[v.ID] = ScoreInitMem
    			case v.Type.IsMemory():
    				// Schedule stores as early as possible. This tends to
    				// reduce register pressure.
    				score[v.ID] = ScoreMemory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredDependencies 'a', 'b', 'c'
            declaredReplacements 'a->b', 'b->c'
            expect:
            resolvedModules 'c'
        }
    
        def "reports replacement cycles early"() {
            declaredDependencies 'a', 'b', 'c'
            declaredReplacements 'a->b', 'b->c', 'c->a'
            expect:
            def failure = fails()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    // preferable.)
    //
    // The strategy for computing the conversion rate is to write down nanotime and cputicks as
    // early in process startup as possible. From then, we just need to wait until we get values
    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// It will be set to off by default for certain time of period to prevent the impact on the existing users.
    	// It is strongly recommended to enable this feature gate as early as possible.
    	// The strict cost is specific for the extended libraries whose cost defined under k8s/apiserver/pkg/cel/library.
    	StrictCostEnforcementForVAP featuregate.Feature = "StrictCostEnforcementForVAP"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    // In the top level, operating on 8-bit input text,
    // the six freq scans are fixed size (256) instead of potentially
    // input-sized. Also, the frequency is counted once and cached
    // whenever there is room to do so (there is nearly always room in general,
    // and always room at the top level), which eliminates all but
    // the first freq_I_B text scans (that is, 5 of the 6).
    // So the top level of the recursion only does 22 - 6 - 5 = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/net/http/httputil/persist.go

    // This is an API usage error - the local side is closed.
    // ErrPersistEOF (above) reports that the remote side is closed.
    var errClosed = errors.New("i/o operation on closed connection")
    
    // ServerConn is an artifact of Go's early HTTP implementation.
    // It is low-level, old, and unused by Go's current HTTP stack.
    // We should have deleted it before Go 1.
    //
    // Deprecated: Use the Server in package [net/http] instead.
    type ServerConn struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top