Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,548 for maximal (0.13 sec)

  1. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // a creation or deletion of related object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference related = 9;
    
      // note is a human-readable description of the status of this operation.
      // Maximal length of the note is 1kB, but libraries should be prepared to
      // handle values up to 64kB.
      // +optional
      optional string note = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/events/v1/generated.proto

      // a creation or deletion of related object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference related = 9;
    
      // note is a human-readable description of the status of this operation.
      // Maximal length of the note is 1kB, but libraries should be prepared to
      // handle values up to 64kB.
      // +optional
      optional string note = 10;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1/generated.proto

      // a creation or deletion of related object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference related = 9;
    
      // note is a human-readable description of the status of this operation.
      // Maximal length of the note is 1kB, but libraries should be prepared to
      // handle values up to 64kB.
      // +optional
      optional string note = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      for (auto& sharding : shardings) {
        if (sharding.type() != xla::OpSharding::MAXIMAL) {
          continue;
        }
        if (sharding.tile_assignment_devices_size() != 1) {
          op->emitOpError("TF/XLA TPU bridge input check: There must be ")
              << "exactly 1 device for MAXIMAL sharding."
              << " Number of devices assigned are "
              << sharding.tile_assignment_devices_size() << "\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. cmd/erasure-metadata-utils_test.go

    		if cdiskCount != testCase.diskCount {
    			t.Errorf("Test %d: Expected %d, got %d", i+1, testCase.diskCount, cdiskCount)
    		}
    	}
    }
    
    // Test for reduceErrs, reduceErr reduces collection
    // of errors into a single maximal error with in the list.
    func TestReduceErrs(t *testing.T) {
    	canceledErrs := make([]error, 0, 5)
    	for i := 0; i < 5; i++ {
    		canceledErrs = append(canceledErrs, fmt.Errorf("error %d: %w", i, context.Canceled))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	// it reports maximal usage during the last second.
    	currentInflightRequests = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "current_inflight_requests",
    			Help:           "Maximal number of currently used inflight request limit of this apiserver per request kind in last second.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  7. src/crypto/rsa/pss_test.go

    			}
    		default:
    			t.Fatalf("unknown marker: %s", marker)
    		}
    	}
    }
    
    // TestPSSOpenSSL ensures that we can verify a PSS signature from OpenSSL with
    // the default options. OpenSSL sets the salt length to be maximal.
    func TestPSSOpenSSL(t *testing.T) {
    	hash := crypto.SHA256
    	h := hash.New()
    	h.Write([]byte("testing"))
    	hashed := h.Sum(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. docs/de/docs/features.md

        * JSON Objekte (`dict`).
        * JSON Listen (`list`), die den Typ ihrer Elemente definieren.
        * Strings (`str`) mit definierter minimaler und maximaler Länge.
        * Zahlen (`int`, `float`) mit Mindest- und Maximal-Werten, usw.
    
    * Validierung für mehr exotische Typen, wie:
        * URL.
        * E-Mail.
        * UUID.
        * ... und andere.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sparsetree.go

    //  2. If domorder(x) < domorder(y) and domorder(y) < domorder(z) and x does not dominate y,
    //     then x does not dominate z.
    //
    // Property (1) means that blocks sorted by domorder always have a maximal dominant block first.
    // Property (2) allows searches for dominated blocks to exit early.
    func (t SparseTree) domorder(x *Block) int32 {
    	// Here is an argument that entry(x) provides the properties documented above.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. src/internal/diff/diff.go

    // of unique lines in x and y, where a unique line is one that appears
    // once in x and once in y.
    //
    // The longest common subsequence algorithm is as described in
    // Thomas G. Szymanski, “A Special Case of the Maximal Common
    // Subsequence Problem,” Princeton TR #170 (January 1975),
    // available at https://research.swtch.com/tgs170.pdf.
    func tgs(x, y []string) []pair {
    	// Count the number of times each string appears in a and b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top