Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 432 for aN (0.85 sec)

  1. guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns an unmodifiable view of the specified collection of entries. The {@link Entry#setValue}
       * operation throws an {@link UnsupportedOperationException}. If the specified collection is a
       * {@code Set}, the returned collection is also a {@code Set}.
       *
       * @param entries the entries for which to return an unmodifiable view
       * @return an unmodifiable view of the entries
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// ObjectNameFunc returns the name of an object or an error.
    	ObjectNameFunc func(obj runtime.Object) (string, error)
    
    	// TTLFunc returns the TTL (time to live) that objects should be persisted
    	// with. The existing parameter is the current TTL or the default for this
    	// operation. The update parameter indicates whether this is an operation
    	// against an existing object.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,1,opt,name=maxUnavailable"`
    
    	// The maximum number of nodes with an existing available DaemonSet pod that
    	// can have an updated DaemonSet pod during during an update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// This can not be 0 if MaxUnavailable is 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	return c.readRecordOrCCS(expectChangeCipherSpec)
    }
    
    // atLeastReader reads from R, stopping with EOF once at least N bytes have been
    // read. It is different from an io.LimitedReader in that it doesn't cut short
    // the last Read call, and in that it considers an early EOF an error.
    type atLeastReader struct {
    	R io.Reader
    	N int64
    }
    
    func (r *atLeastReader) Read(p []byte) (int, error) {
    	if r.N <= 0 {
    		return 0, io.EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation.go

    	"k8s.io/utils/ptr"
    )
    
    // maxParallelismForIndexJob is the maximum parallelism that an Indexed Job
    // is allowed to have. This threshold allows to cap the length of
    // .status.completedIndexes.
    const maxParallelismForIndexedJob = 100000
    
    // maxFailedIndexesForIndexedJob is the maximum number of failed indexes that
    // an Indexed Job is allowed to have. This threshold allows to cap the length of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	// cause the command to return an error with this exit code set.
    	ReturnCode int
    }
    
    // ScriptCommands configures fe, the FakeExec, to have a pre-configured list of
    // commands to expect. Calling more commands using fe than those scripted will
    // result in a panic. By default, the fe does not enforce command argument checking
    // or order -- if you have given an Output to the command, the first command scripted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    An important feature of the resulting file collections is that they are _live_.
    In other words, when you combine file collections this way, the result always reflects what's currently in the source file collections, even if they change during the build.
    
    For example, imagine `collection` in the above example gains an extra file or two after `union` is created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    MinIO also sends with the notifications two headers: `minio-bucket` and `minio-event`. An exchange using the type "headers" can use this information to route the notifications to proper queues.
    
    Note that, you can add as many AMQP server endpoint configurations as needed by providing an identifier (like "1" in the example above) for the AMQP instance and an object of per-server configuration parameters.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _create_table_init_from_file_model_tf1(
          self, sess: session.Session
      ) -> Tuple[core.Tensor, core.Tensor, core.Tensor]:
        """Creates a simple model that initializes a table from an asset file.
    
        This model creates an asset file at "vocab_file.txt" containing
        comma-separated vocabularies and uses it to initialize a
        `StaticVocabularyTable`. For inference, the model performs a lookup with a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

    // to pattern match the predicates for the backedges of these merges and infer
    // an AndRecurrence for the merge.  In other words, we do a data flow analysis
    // where the data-flow lattice has two elements, Symbolic and NonSymbolic with
    // Symbolic > NonSymbolic.  The lattice has height = 2 so two iterations are
    // sufficient to converge.
    //
    // We first do an optimistic analysis and, if it does not converge, we then fall
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top