Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for resultCh (0.88 sec)

  1. src/crypto/sha1/sha1_test.go

    		gen, asm := New().(*digest), New().(*digest)
    		buf := make([]byte, BlockSize*i)
    		rand.Read(buf)
    		blockGeneric(gen, buf)
    		block(asm, buf)
    		if *gen != *asm {
    			t.Errorf("For %#v block and blockGeneric resulted in different states", buf)
    		}
    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build.go

    // options would be relative to that directory. In 1.9 we changed to
    // running the compiler in the build directory, to get consistent
    // build results (issue #19964). To keep builds working, we change any
    // relative -I or -L options to be absolute.
    //
    // Using filepath.IsAbs and filepath.Join here means the results will be
    // different on different systems, but that's OK: -I and -L options are
    // inherently system-dependent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache.go

    	sc.registerSecret(*ns)
    
    	if resourceName == security.RootCertReqResourceName {
    		ns.RootCert = sc.mergeTrustAnchorBytes(ns.RootCert)
    	} else {
    		// If periodic cert refresh resulted in discovery of a new root, trigger a ROOTCA request to refresh trust anchor
    		oldRoot := sc.cache.GetRoot()
    		if !bytes.Equal(oldRoot, ns.RootCert) {
    			cacheLog.Info("Root cert has changed, start rotating root cert")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/net/http/fs.go

    	if h.Get("Etag") != "" {
    		delete(h, "Last-Modified")
    	}
    	w.WriteHeader(StatusNotModified)
    }
    
    // checkPreconditions evaluates request preconditions and reports whether a precondition
    // resulted in sending StatusNotModified or StatusPreconditionFailed.
    func checkPreconditions(w ResponseWriter, r *Request, modtime time.Time) (done bool, rangeHeader string) {
    	// This function carefully follows RFC 7232 section 6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// Suffixes later in the list may only be unique after removing
    	// the ones earlier in the list.
    	// Skip applies after Add.
    	Skip []string
    }
    
    // A Result holds the result of a single target trial.
    type Result struct {
    	Success bool   // whether the target succeeded (exited with zero status)
    	Cmd     string // full target command line
    	Out     string // full target output (stdout and stderr combined)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        size_t idx = type_and_idx.index();
        auto result_ty = mlir::cast<mlir::RankedTensorType>(type_and_idx.value());
    
        // If the result type isn't static, then the owner of the result may be a
        // cast op from a more specific bounded type to an unbounded dynamic type.
        // Use the bounded type to get the buffer size.
        mlir::RankedTensorType buffer_ty = result_ty;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_executor.go

    	// if volume was not already there. This avoid overwriting in any previously stored
    	// state. It returns error if there was an error adding the volume to ASOW.
    	// It returns true, if this operation resulted in volume being added to ASOW
    	// otherwise it returns false.
    	CheckAndMarkVolumeAsUncertainViaReconstruction(opts MarkVolumeOpts) (bool, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top