Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 216 for highest (0.22 sec)

  1. fess-crawler/pom.xml

    			<artifactId>tika-parser-crypto-module</artifactId>
    			<version>${tika.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.tika</groupId>
    			<artifactId>tika-parser-digest-commons</artifactId>
    			<version>${tika.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.tika</groupId>
    			<artifactId>tika-parser-font-module</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block.go

    // license that can be found in the LICENSE file.
    
    // Code generated by go run gen.go -output md5block.go; DO NOT EDIT.
    
    package md5
    
    import (
    	"internal/byteorder"
    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    		q = q[:BlockSize:BlockSize]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		})
    	}
    }
    
    // removeDups removes duplicate replace directives.
    //
    // Later replace directives take priority.
    //
    // require directives are not de-duplicated. That's left up to higher-level
    // logic (MVS).
    //
    // retract directives are not de-duplicated since comments are
    // meaningful, and versions may be retracted multiple times.
    func (f *WorkFile) removeDups() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/kubelet.go

    			},
    		},
    		SignerName: certificates.KubeAPIServerClientKubeletSignerName,
    		GetUsages:  certificate.DefaultKubeletClientGetUsages,
    		// For backwards compatibility, the kubelet supports the ability to
    		// provide a higher privileged certificate as initial data that will
    		// then be rotated immediately. This code path is used by kubeadm on
    		// the masters.
    		BootstrapCertificatePEM: bootstrapCertData,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let description = [{
        Mark frequent fusible patterns as functions for quantization targets.
        In addition to brining performance benefits by reducing q/dq op overhead in non-full quantization,
        this brings higher accuracy by keeping a smaller range when quantizing ops
        that disperse values. (ex: convolution, dot_general)
      }];
      let dependentDialects = [
          "mlir::func::FuncDialect",
          "mlir::stablehlo::StablehloDialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    	systemstack(func() {
    		// None of the tests need any higher-level locking, so we just
    		// take the lock internally.
    		lock(pp.mheapLock)
    		addr, scav = pp.alloc(npages)
    		unlock(pp.mheapLock)
    	})
    	return addr, scav
    }
    func (p *PageAlloc) AllocToCache() PageCache {
    	pp := (*pageAlloc)(p)
    
    	var c PageCache
    	systemstack(func() {
    		// None of the tests need any higher-level locking, so we just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. src/runtime/coro.go

    	gp.coroarg = c
    	mcall(coroswitch_m)
    }
    
    // coroswitch_m is the implementation of coroswitch
    // that runs on the m stack.
    //
    // Note: Coroutine switches are expected to happen at
    // an order of magnitude (or more) higher frequency
    // than regular goroutine switches, so this path is heavily
    // optimized to remove unnecessary work.
    // The fast path here is three CAS: the one at the top on gp.atomicstatus,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

                    if (n > 0) {
                        md.update(buffer, 0, n);
                    }
                }
            } finally {
                fis.close();
            }
    
            byte[] byteData = md.digest();
            StringBuilder hexString = new StringBuilder();
            for (int i = 0; i < byteData.length; i++) {
                String hex = Integer.toHexString(0xff & byteData[i]);
                if (hex.length() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/sync/mutex.go

    // Package sync provides basic synchronization primitives such as mutual
    // exclusion locks. Other than the [Once] and [WaitGroup] types, most are intended
    // for use by low-level library routines. Higher-level synchronization is
    // better done via channels and communication.
    //
    // Values containing the types defined in this package should not be copied.
    package sync
    
    import (
    	"internal/race"
    	"sync/atomic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/node_container_manager_linux.go

    	nodeRef := nodeRefFromNode(cm.nodeInfo.Name)
    
    	// If Node Allocatable is enforced on a node that has not been drained or is updated on an existing node to a lower value,
    	// existing memory usage across pods might be higher than current Node Allocatable Memory Limits.
    	// Pod Evictions are expected to bring down memory usage to below Node Allocatable limits.
    	// Until evictions happen retry cgroup updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top