Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,044 for Avery (0.05 sec)

  1. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    		} else {
    			defer os.RemoveAll(tmpDir)
    		}
    		cfg.BuildContext.GOPATH = tmpDir
    	}
    
    	cfg.GOPROXY = "direct"
    	cfg.GOSUMDB = "off"
    	modload.Init()
    
    	// Shard tests by downloading only every nth module when shard flags are set.
    	// This makes it easier to test small groups of modules quickly. We avoid
    	// testing similarly named modules together (the list is sorted by module
    	// path and version).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. docs/en/docs/contributing.md

    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        Every time you install a new package with `pip` under that environment, activate the environment again.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    * Be very, very careful.
    * The cache has a builtin test, enabled with `UNSAFE_PILOT_ENABLE_RUNTIME_ASSERTIONS=true`, that runs in CI. This will panic if any key is written to with a different value.
    
    #### Partial Computations
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/math/rand/v2/example_test.go

    func Example_rand() {
    	// Create and seed the generator.
    	// Typically a non-fixed seed should be used, such as Uint64(), Uint64().
    	// Using a fixed seed will produce the same output on every run.
    	r := rand.New(rand.NewPCG(1, 2))
    
    	// The tabwriter here helps us generate aligned output.
    	w := tabwriter.NewWriter(os.Stdout, 1, 1, 1, ' ', 0)
    	defer w.Flush()
    	show := func(name string, v1, v2, v3 any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

    // tag::fork-every[]
        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  6. src/image/gif/reader.go

    }
    
    // interlacing represents the set of scans in an interlaced GIF image.
    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

    // tag::fork-every[]
        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    // limitations under the License.
    
    [[feature_lifecycle]]
    = The Feature Lifecycle
    
    Gradle is under constant development. New versions are delivered on a regular and frequent basis (approximately every six weeks) as described in <<#eol_support,the section on end-of-life support>>.
    
    Continuous improvement combined with frequent delivery allows new features to be available to users early.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/monitoring.go

    		}
    	}
    }
    
    func isUnexpectedError(err error) bool {
    	s, ok := status.FromError(err)
    	// Unavailable or canceled code will be sent when a connection is closing down. This is very normal,
    	// due to the XDS connection being dropped every 30 minutes, or a pod shutting down.
    	isError := s.Code() != codes.Unavailable && s.Code() != codes.Canceled
    	return !ok || isError
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	//   etcd API.
    	// - What happened under heavy load scenarios? Initially, each apiserver will do only one compaction
    	//   every 5 minutes. This is very unlikely affecting or affected w.r.t. server load.
    
    	var compactTime int64
    	var rev int64
    	var err error
    	for {
    		select {
    		case <-time.After(interval):
    		case <-ctx.Done():
    			return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top