Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for applyTo (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                {{ if .Values.global.logAsJson -}}
                - "--log_as_json"
                {{ end -}}
                {{ if .Values.istio_cni.enabled -}}
                - "--run-validation"
                - "--skip-rule-apply"
                {{ end -}}
                {{with .Values.global.imagePullPolicy }}imagePullPolicy: "{{.}}"{{end}}
              {{- if .ProxyConfig.ProxyMetadata }}
                env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    // (for example AMD64.rules) contain rules specific to the architecture in the
    // filename. The rules here apply to every architecture.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            non_splat_operand_type.getRank() > 4) {
          return failure();
        }
    
        // If non-splat operand is not fusable affine ops, then no need to apply
        // this transformation.
        if (!CanFuseAffineOp(non_splat_operand.getDefiningOp(), binary_op)) {
          return failure();
        }
    
        // Creates a new scalar constant op using the splat value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    			if !(ps.Peers[id].ReplicateILMExpiry == peer.ReplicateILMExpiry) {
    				flagEqual = false
    				break
    			}
    		}
    		if flagEqual {
    			continue
    		}
    
    		// Dont apply the self state to self
    		if dID == globalDeploymentID() {
    			continue
    		}
    
    		// Send details to other sites for healing
    		admClient, err := c.getAdminClient(ctx, dID)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top