Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 780 for Greater (0.13 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

            this.delegate = requireNonNull(delegate);
            if (queueSize < 1 || batchMaxSize < 1) {
                throw new IllegalArgumentException("Queue and batch sizes must be greater than 1");
            }
            this.batchMaxSize = batchMaxSize;
            this.blockOnLastEvent = blockOnLastEvent;
    
            this.eventQueue = new ArrayBlockingQueue<>(queueSize);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold.cc

    #include "tensorflow/core/platform/mutex.h"
    
    namespace mlir {
    namespace TF {
    
    // Implements a TF specific policy on when constant folding is allowed.
    // Policy:
    //
    // Disable constant folding if operands size is greater than a certain
    // threshold (`kOperandsSizeThreshold`).
    //
    // Otherwise, allow folding if we do not know the shape of an operand or
    // result i.e., one of these values has non-static shape. If we know all the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/while_gradients.cc

      return strings::StrCat(forward_frame_name, "_backprop");
    }
    
    // Creates a loop that counts the number of iterations performed by the
    // while loop associated with `while_ctx`. The returned output yields the
    // iteration count.
    Status AddForwardLoopCounter(WhileContext* while_ctx, const Scope& scope,
                                 Output* count) {
      // Create while loop:
      //   i = 0
      //   while forward loop predicate is true:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
      // flag to the Kubernetes controller manager.
      //
      // Certificate signers may not honor this field for various reasons:
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. hack/lib/etcd.sh

       version=$(etcd --version | grep Version | head -n 1 | cut -d " " -f 3)
       if [[ $(kube::etcd::version "${ETCD_VERSION}") -gt $(kube::etcd::version "${version}") ]]; then
        kube::log::usage "etcd version ${ETCD_VERSION} or greater required."
        kube::log::info "You can use 'hack/install-etcd.sh' to install a copy in third_party/."
        exit 1
       fi
      fi
    }
    
    kube::etcd::version() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pkg/util/filesystem/watcher.go

    func (noopWatcher) Remove(path string) error { return nil }
    
    // WatchUntil watches the specified path for changes and blocks until ctx is canceled.
    // eventHandler() must be non-nil, and pollInterval must be greater than 0.
    // eventHandler() is invoked whenever a change event is observed or pollInterval elapses.
    // errorHandler() is invoked (if non-nil) whenever an error occurs initializing or watching the specified path.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.go

    	}
    }
    
    // counterCrypt encrypts in using AES in counter mode and places the result
    // into out. counter is the initial count value and will be updated with the next
    // count value. The length of out must be greater than or equal to the length
    // of in.
    // counterCryptASM implements counterCrypt which then allows the loop to
    // be unrolled and optimized.
    func (g *gcmAsm) counterCrypt(out, in []byte, counter *[gcmBlockSize]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/syscall/dir_plan9.go

    	return byteorder.LeUint64(b), b[8:]
    }
    
    // gstring reads a string from b, prefixed with a 16-bit length in little-endian order.
    // It returns the string with the remaining slice of b and a boolean. If the length is
    // greater than the number of bytes in b, the boolean will be false.
    func gstring(b []byte) (string, []byte, bool) {
    	n, b := gbit16(b)
    	if int(n) > len(b) {
    		return "", b, false
    	}
    	return string(b[:n]), b[n:], true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
      // honor this field as long as the requested duration is not greater than the
      // maximum duration they will honor per the --cluster-signing-duration CLI
      // flag to the Kubernetes controller manager.
      //
      // Certificate signers may not honor this field for various reasons:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/server/server.go

    	Schemas collection.Schemas
    
    	// DomainSuffix is the DNS domain suffix for Pilot CRD resources,
    	// e.g. cluster.local.
    	DomainSuffix string
    
    	// Port where the webhook is served. the number should be greater than 1024 for non-root
    	// user, because non-root user cannot bind port number less than 1024
    	// Mainly used for testing. Webhook server is started by Istiod.
    	Port uint
    
    	// Use an existing mux instead of creating our own.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top