Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,777 for whereas (0.12 sec)

  1. src/cmd/internal/obj/wasm/a.out.go

    	ATableFill
    
    	ALast // Sentinel: End of low-level WebAssembly instructions.
    
    	ARESUMEPOINT
    	// ACALLNORESUME is a call which is not followed by a resume point.
    	// It is allowed inside of WebAssembly blocks, whereas obj.ACALL is not.
    	// However, it is not allowed to switch goroutines while inside of an ACALLNORESUME call.
    	ACALLNORESUME
    
    	ARETUNWIND
    
    	AMOVB
    	AMOVH
    	AMOVW
    	AMOVD
    
    	AWORD
    	ALAST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/crypto/cipher/benchmark_test.go

    		stream.XORKeyStream(buf, buf)
    	}
    }
    
    // If we test exactly 1K blocks, we would generate exact multiples of
    // the cipher's block size, and the cipher stream fragments would
    // always be wordsize aligned, whereas non-aligned is a more typical
    // use-case.
    const almost1K = 1024 - 5
    const almost8K = 8*1024 - 5
    
    func BenchmarkAESCFBEncrypt1K(b *testing.B) {
    	benchmarkAESStream(b, cipher.NewCFBEncrypter, make([]byte, almost1K))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 28 19:13:50 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. CITATION.cff

    cluster, and within a machine across multiple computational devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer, whereas in previous “parameter server” designs the management of shared state is built into the system, TensorFlow enables developers to experiment with novel optimizations and training algorithms. TensorFlow supports a variety of applications, with a focus...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache.go

    	c.hashPool.Put(h)
    
    	return key
    }
    
    // toString performs unholy acts to avoid allocations
    func toString(b []byte) string {
    	// unsafe.SliceData relies on cap whereas we want to rely on len
    	if len(b) == 0 {
    		return ""
    	}
    	// Copied from go 1.20.1 strings.Builder.String
    	// https://github.com/golang/go/blob/202a1a57064127c3f19d96df57b9f9586145e21c/src/strings/builder.go#L48
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadcode.go

    		// Phi arguments always come from a predecessor block,
    		// whereas copies don't. This matters in loops like:
    		// 1: x = (Phi y)
    		//    y = (Add x 1)
    		//    goto 1
    		// If we replace Phi->Copy, we get
    		// 1: x = (Copy y)
    		//    y = (Add x 1)
    		//    goto 1
    		// (Phi y) refers to the *previous* value of y, whereas
    		// (Copy y) refers to the *current* value of y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

        /**
         * Does this instance represent some temporary or mutated view of the component?
         *
         * Generally you should avoid retaining ad hoc instances in memory, whereas non-ad hoc instances can safely be cached for the lifetime of the build tree.
         *
         * @return true when this instance is ad hoc, false when this instance is not ad hoc and can be cached.
         */
        boolean isAdHoc();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/vet/doc.go

    not caught by the compilers.
    
    Vet is normally invoked through the go command.
    This command vets the package in the current directory:
    
    	go vet
    
    whereas this one vets the packages whose path is provided:
    
    	go vet my/project/...
    
    Use "go help packages" to see other ways of specifying which packages to vet.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

         * Pre Gradle 6, what is now called {@link SettingsInternal#getBaseClassLoaderScope()} was used as the equivalent scope for project scripts.
         * Since Gradle 6, it does not include buildSrc, whereas this scope does.
         *
         * This method is not named as a property getter to avoid getProperties() invoking it.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // original source graph (*not* 'graph').
    //
    // 'graph' is the subgraph. The rewriting may renumber the inputs and outputs;
    // 'input_permutation' is a mapping from old argument numbers to new argument
    // numbers, whereas 'output_permutation' is the same for outputs. Both
    // 'input_permutation' and 'output_permutation' are initialized to the identity
    // permutation. 'nodedef' is the NodeDef for the call to the function under
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

       * which the superconstructor calls.
       */
    
      /**
       * Contains the link pointers corresponding with the entries, in the range of [0, size()). The
       * high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer
       * (pointing to the nextEntry entry in the linked list). The pointers in [size(), entries.length)
       * are all "null" (UNSET).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
Back to top