Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for clobber (0.12 sec)

  1. src/crypto/aes/asm_ppc64x.s

    // STXVD2X/LXVD2X. The in-memory byte ordering
    // depends on the endianness of the machine. The
    // expanded keys are generated by expandKeyAsm above.
    //
    // Rkeyp holds the key pointer. It is clobbered. Once
    // the expanded keys are loaded, it is not needed.
    //
    // R12,R14-R21 are scratch registers.
    // For keyp of 10, V6, V11-V20 hold the expanded key.
    // For keyp of 12, V6, V9-V20 hold the expanded key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    		// Remainder after the loop
    		rem := v.AuxInt % bytesPerLoop
    
    		dstReg := v.Args[0].Reg()
    		srcReg := v.Args[1].Reg()
    
    		// The set of registers used here, must match the clobbered reg list
    		// in PPC64Ops.go.
    		offset := int64(0)
    
    		// top of the loop
    		var top *obj.Prog
    		// Only generate looping code when loop counter is > 1 for >= 64 bytes
    		if ctr > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		if _, err = file.Seek(offset, io.SeekStart); err != nil {
    			file.Close()
    			return nil, err
    		}
    	}
    
    	return &sendFileReader{Reader: io.LimitReader(file, length), Closer: file}, nil
    }
    
    // closeWrapper converts a function to an io.Closer
    type closeWrapper func() error
    
    // Close calls the wrapped function.
    func (c closeWrapper) Close() error {
    	return c()
    }
    
    // CreateFile - creates the file.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/runtime/crash_test.go

    	needle := "yzzyx\n"
    	if n := strings.Count(errOut.String(), needle); n != 1 {
    		t.Fatalf("did not find expected panic message %q\n(exit status %v)", needle, err)
    	}
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func TestDoublePanic(t *testing.T) {
    	output := runTestProg(t, "testprog", "DoublePanic", "GODEBUG=clobberfree=1")
    	wants := []string{"panic: XXX", "panic: YYY"}
    	for _, want := range wants {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. docs/en/docs/alternatives.md

    Routes are declared in a single place, using functions declared in other places (instead of using decorators that can be placed right on top of the function that handles the endpoint). This is closer to how Django does it than to how Flask (and Starlette) does it. It separates in the code things that are relatively tightly coupled.
    
    !!! check "Inspired **FastAPI** to"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    And as you can have parallelism and asynchronicity at the same time, you get higher performance than most of the tested NodeJS frameworks and on par with Go, which is a compiled language closer to C <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(all thanks to Starlette)</a>.
    
    ### Is concurrency better than parallelism?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                                const mlir::SetVector<Operation*>& ops_to_avoid,
                                bool predecessors, bool successors) {
      // Walk the input and output dependencies of the Ops in `operations` to form
      // the closer of Ops needed to evaluate 'operations'. Input dependencies are
      // walked if 'predecessors' is true and output dependencies are walked if
      // 'successors' is true. In either case, if a discoverd Op is in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set.go

    		// update by resyncing the controller MinReadySeconds after the it is requeued because
    		// a Pod transitioned to Ready.
    		// Note that this still suffers from #29229, we are just moving the problem one level
    		// "closer" to kubelet (from the deployment to the replica set controller).
    		if !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod) && rs.Spec.MinReadySeconds > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. src/net/http/fs.go

    }
    
    // A File is returned by a [FileSystem]'s Open method and can be
    // served by the [FileServer] implementation.
    //
    // The methods should behave the same as those on an [*os.File].
    type File interface {
    	io.Closer
    	io.Reader
    	io.Seeker
    	Readdir(count int) ([]fs.FileInfo, error)
    	Stat() (fs.FileInfo, error)
    }
    
    type anyDirs interface {
    	len() int
    	name(i int) string
    	isDir(i int) bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Dependency constraints can be inspected and modified the same way in the `withDependencyConstraints` block.
    
    If we take a closer look at the Jaxen 1.1.4 pom, we observe that the _dom4j_, _jdom_ and _xerces_ dependencies are still there but marked as _optional_.
    Optional dependencies in poms are not automatically processed by Gradle nor Maven.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top