Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,563 for current1_ (1.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

          and len(config.calibration_options.representative_datasets) == 1
      ) and not _has_quantization_method(config.specs, 'weight_only_ptq'):
        raise ValueError(
            '`quantize_saved_model` currently only supports static-range PTQ with a'
            ' single signature or weight-only quantization.'
        )
    
      signature_def_map = save_model.get_signatures_from_saved_model(
          src_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (1)
  2. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    	"disruptionsAllowed": "Number of pod disruptions that are currently allowed.",
    	"currentHealthy":     "current number of healthy pods",
    	"desiredHealthy":     "minimum desired number of healthy pods",
    	"expectedPods":       "total number of pods counted by this disruption budget",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"disruptionsAllowed": "Number of pod disruptions that are currently allowed.",
    	"currentHealthy":     "current number of healthy pods",
    	"desiredHealthy":     "minimum desired number of healthy pods",
    	"expectedPods":       "total number of pods counted by this disruption budget",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.apis.meta.v1.Time> disruptedPods = 2;
    
      // Number of pod disruptions that are currently allowed.
      optional int32 disruptionsAllowed = 3;
    
      // current number of healthy pods
      optional int32 currentHealthy = 4;
    
      // minimum desired number of healthy pods
      optional int32 desiredHealthy = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/list/LinkedList.java.template

                    break;
                }
            }
    
            return result;
        }
    
        private void unlink(Node previousIt, Node currentIt) {
            if (currentIt == head) {
                head = currentIt.next;
            } else {
                previousIt.next = currentIt.next;
            }
        }
    
        public int size() {
            int size = 0;
    
            for (Node it = head; it != null; ++size, it = it.next) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/java-list-library/src/main/java/org/gradle/sample/list/LinkedList.java

                    break;
                }
            }
    
            return result;
        }
    
        private void unlink(Node previousIt, Node currentIt) {
            if (currentIt == head) {
                head = currentIt.next;
            } else {
                previousIt.next = currentIt.next;
            }
        }
    
        public int size() {
            int size = 0;
    
            for (Node it = head; it != null; ++size, it = it.next) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/internal/goversion/goversion.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goversion
    
    // Version is the Go 1.x version which is currently
    // in development and will eventually get released.
    //
    // It should be updated at the start of each development cycle to be
    // the version of the next Go 1.x release. See golang.org/issue/40705.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 19 19:23:40 UTC 2024
    - 445 bytes
    - Viewed (0)
  8. src/go/printer/printer.go

    	// Configuration (does not change after initialization)
    	Config
    	fset *token.FileSet
    
    	// Current state
    	output       []byte       // raw printer result
    	indent       int          // current indentation
    	level        int          // level == 0: outside composite literal; level > 0: inside composite literal
    	mode         pmode        // current printer mode
    	endAlignment bool         // if set, terminate alignment immediately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                    appendNextIndented("name = ${current.name}\n")
                    current.receiver?.let {
                        appendNextIndented("receiver = ")
                        recurseDeeper(it)
                        appendLine()
                    }
                    if (current.args.isNotEmpty()) {
                        appendNextIndented("args = [\n")
                        current.args.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/TrivialChangeDetector.java

            S current = currentEntry.getValue();
            if (itemComparator.hasSamePath(previous, current)) {
                if (itemComparator.hasSameContent(previous, current)) {
                    return true;
                }
                String path = currentEntry.getKey();
                return visitor.visitChange(changeFactory.modified(path, propertyTitle, previous, current));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top