Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,109 for hard (0.09 sec)

  1. internal/ioutil/hardlimitreader.go

    // Package ioutil implements some I/O utility functions which are not covered
    // by the standard library.
    package ioutil
    
    import (
    	"errors"
    	"io"
    )
    
    // ErrOverread is returned to the reader when the hard limit of HardLimitReader is exceeded.
    var ErrOverread = errors.New("input provided more bytes than specified")
    
    // HardLimitReader returns a Reader that reads from r
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. api/api-rules/README.md

    Make rule returns an error when the newly generated violation report differs from this
    checked-in violation report.
    
    Our goal is that exceptions should never be added to this list, only fixed and removed.
    For new APIs, this is a hard requirement. For APIs that are e.g. being moved between
    versions or groups without other changes, it is OK for your API reviewer to make an
    exception.
    
    If you're removing violations from the exception list, or if you have good
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:50:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. hack/golangci.yaml.in

          path: _test.go$
    
        {{- if .Base}}
    
        # TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
        # with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
        - path: (pkg/volume/*|test/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
          linters:
            - gocritic
        {{- end}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherRegistryFactory.java

            BlockingQueue<FileWatchEvent> fileEvents = new ArrayBlockingQueue<>(FILE_EVENT_QUEUE_SIZE);
            try {
                // TODO How can we avoid hard-coding ".gradle" here?
                FileWatcherProbeRegistry probeRegistry = new DefaultFileWatcherProbeRegistry(buildDir ->
                    new File(new File(buildDir, ".gradle"), "file-system.probe"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/start_line_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"runtime"
    	"testing"
    )
    
    // The tests in this file test the function start line metadata included in
    // _func and inlinedCall. TestStartLine hard-codes the start lines of functions
    // in this file. If code moves, the test will need to be updated.
    //
    // The "start line" of a function should be the line containing the func
    // keyword.
    
    func normalFunc() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            JvmOptions jvmOptions = new JvmOptions(fileCollectionFactory);
            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/proxy/config/config_test.go

    	// if the consumer falls behind. Unittests will hard timeout in 5m.
    	var slices []*discoveryv1.EndpointSlice
    	for {
    		select {
    		case slices = <-h.updated:
    			if reflect.DeepEqual(slices, expectedSlices) {
    				return
    			}
    		// Unittests will hard timeout in 5m with a stack trace, prevent that
    		// and surface a clearer reason for failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/README.adoc

    == Anti-patterns:
    
    .Don't reference other project tasks directly
    --
    A frequent anti-pattern to declare cross-project dependencies is below.
    
    This publication model is unsafe and can lead to non-reproducible and hard to parallelize builds.
    By declaring a dependency in this way, the task ordering between consumers and producers is not known to Gradle at the time when it is deciding the order of tasks for a given build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    stdout '\s*fuzzing process terminated without fuzzing:'
    ! stdout 'communicating with fuzzing process'
    ! exists testdata
    
    # If the I/O error occurs after F.Fuzz is called (unlikely), just exit.
    # It's hard to distinguish this case from the worker being interrupted by ^C
    # or exiting with status 0 (which it should do when interrupted by ^C).
    ! go test -fuzz=FuzzClosePipeAfter -parallel=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/vet_flags.txt

    ! go vet -unsafeptr
    stderr 'possible Printf formatting directive'
    
    # Analyzer flags don't exist unless we're running 'go vet',
    # and we shouldn't run the vet tool to discover them otherwise.
    # (Maybe someday we'll hard-code the analyzer flags for the default vet
    # tool to make this work, but not right now.)
    env GOFLAGS='-unsafeptr'
    ! go list .
    stderr 'go: parsing \$GOFLAGS: unknown flag -unsafeptr'
    env GOFLAGS=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top