Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,277 for current1_ (0.17 sec)

  1. manifests/charts/gateways/istio-ingress/files/profile-stable.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    		openAPIGetter: openAPIGetter,
    		queryParam:    queryParam,
    	}
    }
    
    // QueryParamVerifier verifies if a given group-version-kind supports a
    // given VerifiableQueryParam against the current server.
    //
    // Currently supported query params are: fieldValidation
    //
    // Support for each of these query params needs to be verified because
    // we determine whether or not to perform server-side or client-side
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

        /**
         * Returns the module version identifier for this component. Currently, this reflects the (group, module, version) that was used to request this component.
         *
         * <p>This is a legacy identifier and is here while we transition the meta-data away from ivy-like
         * module versions to the more general component instances. Currently, the module version and component identifiers are used interchangeably. However, over
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top