Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for cheese (0.1 sec)

  1. cmd/erasure-common.go

    	}
    
    	ignoredErrs := []error{
    		errFileNotFound,
    		errVolumeNotFound,
    		errFileVersionNotFound,
    		io.ErrUnexpectedEOF, // some times we would read without locks, ignore these errors
    		io.EOF,              // some times we would read without locks, ignore these errors
    		context.DeadlineExceeded,
    		context.Canceled,
    	}
    	ignoredErrs = append(ignoredErrs, objectOpIgnoredErrs...)
    
    	errs := g.Wait()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/stats/DaemonRunningStats.java

            return daemonTimer.getElapsed();
        }
    
        public long getStartTime() {
            return startTime;
        }
    
        public long getAllBuildsTime() {
            return allBuildsTime;
        }
    
        // TODO: these should be moved off to a separate type
    
        public void buildStarted() {
            ++buildCount;
            currentBuildTimer.reset();
        }
    
        public void buildFinished() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
         * @return The child
         */
        ScopedListenerManager createChild(Class<? extends Scope> scope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/types.go

    //
    // If the data could not be read, the final result parameter will be false.
    func ReadGo116ErrorData(err types.Error) (code ErrorCode, start, end token.Pos, ok bool) {
    	var data [3]int
    	// By coincidence all of these fields are ints, which simplifies things.
    	v := reflect.ValueOf(err)
    	for i, name := range []string{"go116code", "go116start", "go116end"} {
    		f := v.FieldByName(name)
    		if !f.IsValid() {
    			return 0, 0, 0, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/internal/wasitest/tcpecho_test.go

    	"math/rand"
    	"net"
    	"os"
    	"os/exec"
    	"testing"
    	"time"
    )
    
    func TestTCPEcho(t *testing.T) {
    	if target != "wasip1/wasm" {
    		t.Skip()
    	}
    
    	// We're unable to use port 0 here (let the OS choose a spare port).
    	// Although the WASM runtime accepts port 0, and the WASM module listens
    	// successfully, there's no way for this test to query the selected port
    	// so that it can connect to the WASM module. The WASM module itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     * classes unavailable. Then we construct a test suite so we can run the normal AbstractFutureTest
     * test methods in these degenerate classloaders.
     */
    
    public class AbstractFutureFallbackAtomicHelperTest extends TestCase {
    
      // stash these in static fields to avoid loading them over and over again (speeds up test
      // execution significantly)
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // TFLite has these variable tensors semantics. So the variable mapping from TF
    // to TFLite is actually broken here, we sort of hard-code the variable tensors
    // based on the actual ops using them, such as unidirectional_sequence_lstm.
    //
    // MLIRConverter also benefits from lots of typical compiler optimization like
    // merging same input values if they're identical. These optimizations are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/siginfo_linux.go

    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    	_CLD_KILLED          = 2
    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    	_CLD_CONTINUED       = 6
    
    	// These are the same as in syscall/syscall_linux.go.
    	core      = 0x80
    	stopped   = 0x7f
    	continued = 0xffff
    )
    
    // WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
    // to syscall.WaitStatus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/msan.go

    //go:linkname msanfree
    //go:noescape
    func msanfree(addr unsafe.Pointer, sz uintptr)
    
    //go:linkname msanmove
    //go:noescape
    func msanmove(dst, src unsafe.Pointer, sz uintptr)
    
    // These are called from msan_GOARCH.s
    //
    //go:cgo_import_static __msan_read_go
    //go:cgo_import_static __msan_write_go
    //go:cgo_import_static __msan_malloc_go
    //go:cgo_import_static __msan_free_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/GitAttributesGenerator.java

                    writer.println("# Linux start script should use lf");
                    writer.println("/gradlew        text eol=lf");
                    writer.println();
                    writer.println("# These are Windows script files and should use crlf");
                    writer.println("*.bat           text eol=crlf");
                    writer.println();
                    writer.println("# Binary files should be left untouched");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:54:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top