Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 288 for north (0.04 sec)

  1. src/crypto/internal/nistec/fiat/generate.go

    		Prefix:   "p384",
    		FiatType: "[6]uint64",
    		BytesLen: 48,
    	},
    	// Note that unsaturated_solinas would be about 2x faster than
    	// word_by_word_montgomery for P-521, but this curve is used rarely enough
    	// that it's not worth carrying unsaturated_solinas support for it.
    	{
    		Element:  "P521Element",
    		Prime:    "2^521 - 1",
    		Prefix:   "p521",
    		FiatType: "[9]uint64",
    		BytesLen: 66,
    	},
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    To fix this, you must either:
    
    - fix the version reference to use one of the versions declared in the catalog
    - or declare a new version corresponding to the reference you want to use in the catalog
    
    It's worth noting that catalogs are isolated, so you cannot use a version reference from one catalog in another catalog.
    
    [[undefined_alias_reference]]
    == Undefined alias reference
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/runtime/mwbbuf.go

    func (b *wbBuf) reset() {
    	start := uintptr(unsafe.Pointer(&b.buf[0]))
    	b.next = start
    	if testSmallBuf {
    		// For testing, make the buffer smaller but more than
    		// 1 write barrier's worth, so it tests both the
    		// immediate flush and delayed flush cases.
    		b.end = uintptr(unsafe.Pointer(&b.buf[wbMaxEntriesPerCall+1]))
    	} else {
    		b.end = start + uintptr(len(b.buf))*unsafe.Sizeof(b.buf[0])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @J2ktIncompatible // no support for access-order mode in LinkedHashMap delegate
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactLinkedHashMap<K extends @Nullable Object, V extends @Nullable Object>
        extends CompactHashMap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc_64bit.go

    }
    
    // levelLogPages is log2 the maximum number of runtime pages in the address space
    // a summary in the given level represents.
    //
    // The leaf level always represents exactly log2 of 1 chunk's worth of pages.
    var levelLogPages = [summaryLevels]uint{
    	logPallocChunkPages + 4*summaryLevelBits,
    	logPallocChunkPages + 3*summaryLevelBits,
    	logPallocChunkPages + 2*summaryLevelBits,
    	logPallocChunkPages + 1*summaryLevelBits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/filters/filters.go

    									},
    								},
    							},
    						},
    					},
    					SharedWithUpstream: sfsvalue.FilterStateValue_ONCE,
    				}},
    			}),
    		},
    	}
    )
    
    // Router is used a bunch, so its worth precomputing even though we have a few options.
    // Since there are only 4 possible options, just precompute them all
    var routers = func() map[RouterFilterContext]*hcm.HttpFilter {
    	res := map[RouterFilterContext]*hcm.HttpFilter{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.h

      // Stream associated with this device. Operations enqueued on this
      // stream are executed on the device. Operations include data
      // copying back and forth between CPU and the device, and
      // computations enqueued by XLA.
      std::shared_ptr<se::Stream> stream_ TF_GUARDED_BY(mu_);
      // If false, only stream_ is valid and all computation and transfers use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    For example, if the Ant build follows a fairly standard approach for compilation, static resources, packaging and unit tests, then it is probably worth migrating all of those together.
    But if the build performs some extra processing on the compiled classes, or does something unique when processing the static resources, it is probably worth splitting those tasks into separate stages.
    
    [[migant:managing_dependencies]]
    == Managing dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     *   windowsStartScriptGenerator.template = resources.text.fromFile('customWindowsStartScript.txt')
     * }
     * </pre>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class CreateStartScripts extends ConventionTask {
    
        private File outputDir;
        private String executableDir = "bin";
        private final Property<String> mainModule;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top