Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for applyTo (0.2 sec)

  1. pkg/controller/podautoscaler/horizontal_test.go

    			key:  "",
    			recommendations: []timestampedRecommendation{
    				{1, now.Add(-2 * time.Minute)},
    				{2, now.Add(-1 * time.Minute)}},
    			currentReplicas:              100, // to apply scaleDown delay we should have current > desired
    			prenormalizedDesiredReplicas: 3,
    			expectedStabilizedReplicas:   3,
    			expectedRecommendations: []timestampedRecommendation{
    				{1, now},
    				{2, now},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	klet.admitHandlers.AddPodAdmitHandler(lifecycle.NewPredicateAdmitHandler(klet.getNodeAnyWay, criticalPodAdmissionHandler, klet.containerManager.UpdatePluginResources))
    	// apply functional Option's
    	for _, opt := range kubeDeps.Options {
    		opt(klet)
    	}
    
    	if sysruntime.GOOS == "linux" {
    		// AppArmor is a Linux kernel security module and it does not support other operating systems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string `json:",omitempty"` // .go source files that import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			}
    		}
    		oldStatus, found := oldStatuses[container.Name]
    		if found {
    			if oldStatus.State.Terminated != nil {
    				status = &oldStatus
    			} else {
    				// Apply some values from the old statuses as the default values.
    				status.RestartCount = oldStatus.RestartCount
    				status.LastTerminationState = oldStatus.LastTerminationState
    			}
    		}
    		statuses[container.Name] = status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "time": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
              "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def otherScript = file("other.gradle")
            otherScript.text = "ext.value = 123"
    
            buildFile << """
                apply from: 'other.gradle'
            """ << declareAttributes() << multiProjectWithJarSizeTransform(paramValue: "ext.value") << withClassesSizeTransform()
    
            file("lib/dir1.classes").file("child").createFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. fastapi/routing.py

                    """
                ),
            ] = None,
            callbacks: Annotated[
                Optional[List[BaseRoute]],
                Doc(
                    """
                    OpenAPI callbacks that should apply to all *path operations* in this
                    router.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    }
    
    # A helper function for labeling all nodes matching a given selector.
    # Runs: kubectl label --overwrite nodes -l "${1}" "${2}"
    # Retries on failure
    #
    # $1: label selector of nodes
    # $2: label to apply
    function update-node-label() {
      local selector="$1"
      local label="$2"
      local retries=5
      until (( retries == 0 )); do
        if kubectl label --overwrite nodes -l "${selector}" "${label}"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    // The addend will be adjusted as required.
    func (c *ctxtz) addrilreloc(sym *obj.LSym, add int64) *obj.Reloc {
    	if sym == nil {
    		c.ctxt.Diag("require symbol to apply relocation")
    	}
    	offset := int64(2) // relocation offset from start of instruction
    	rel := obj.Addrel(c.cursym)
    	rel.Off = int32(c.pc + offset)
    	rel.Siz = 4
    	rel.Sym = sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

              << "per-tensor uniform quantized (i8->f32) type. Got: "
              << output_element_type << ".\n");
          return failure();
        }
        return success();
      }
      // Create a `tfl.pad` op to apply explicit padding to the input tensor that
      // correspond to the `padding` attribute from the `stablehlo.convolution` op.
      TFL::PadOp CreateTflPadOp(Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top