Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for farm (0.15 sec)

  1. pkg/config/validation/validation.go

    func ValidateHTTPHeaderNameOrJwtClaimRoute(name string) error {
    	if name == "" {
    		return fmt.Errorf("header name cannot be empty")
    	}
    	if jwt.ToRoutingClaim(name).Match {
    		// Jwt claim form
    		return nil
    	}
    	// Else ensure its a valid header
    	if !validHeaderRegex.MatchString(name) {
    		return fmt.Errorf("header name %s is not a valid header name", name)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

             (std::equal(i1, reduced_e1, i2));
    }
    
    // Check if the value of the last dimension of type1 is equal to the number of
    // elements in type2. This is a required condition to flatten type2 to form a
    // 1D array and allow the binaryOp handle the broadcasting implicitly.
    bool IsLastDimEqualToNumElements(Type type1, Type type2) {
      return (mlir::cast<ShapedType>(type1).getRank() >= 1 &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/reflect/value.go

    		s.Data = base
    	}
    
    	fl := v.flag.ro() | flagIndir | flag(Slice)
    	return Value{typ.Common(), unsafe.Pointer(&x), fl}
    }
    
    // Slice3 is the 3-index form of the slice operation: it returns v[i:j:k].
    // It panics if v's Kind is not [Array] or [Slice], or if v is an unaddressable array,
    // or if the indexes are out of bounds.
    func (v Value) Slice3(i, j, k int) Value {
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // Otherwise, the method must match exactly.
    //
    // A pattern with no host matches every host.
    // A pattern with a host matches URLs on that host only.
    //
    // A path can include wildcard segments of the form {NAME} or {NAME...}.
    // For example, "/b/{bucket}/o/{objectname...}".
    // The wildcard name must be a valid Go identifier.
    // Wildcards must be full path segments: they must be preceded by a slash and followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		// Without this rule, operands will lead to VEX-encoded form
    		// and produce "c5b15813" encoding.
    		if !yt.match(args) {
    			// "xo" is always zero for VEX/EVEX encoded insts.
    			z += int(yt.zoffset) + xo
    		} else {
    			if p.Scond != 0 && !evexZcase(yt.zcase) {
    				// Do not signal error and continue to search
    				// for matching EVEX-encoded form.
    				z += int(yt.zoffset)
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    Given a tensor `x` of complex numbers, this operation returns a tensor of type
    `float` or `double` that is the absolute value of each element in `x`. All
    elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
    value is computed as \\( \sqrt{a^2 + b^2}\\).
      }];
    
      let arguments = (ins
        TFL_TensorOf<[Complex<F<32>>, Complex<F<64>>]>:$input
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    				return nil, cleanupAction, fmt.Errorf("failed to prepare subPath for volumeMount %q of container %q", mount.Name, container.Name)
    			}
    		}
    
    		// Docker Volume Mounts fail on Windows if it is not of the form C:/
    		if volumeutil.IsWindowsLocalPath(runtime.GOOS, hostPath) {
    			hostPath = volumeutil.MakeAbsolutePath(runtime.GOOS, hostPath)
    		}
    
    		containerPath := mount.MountPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    	}
    
    	testMetricsClient.AddReactor("list", "pods", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		podNamePrefix := ""
    		labelSet := map[string]string{}
    
    		// selector should be in form: "name=dummy-target-X" where X is the number of resource
    		selector := action.(core.ListAction).GetListRestrictions().Labels
    		parsedSelector := strings.Split(selector.String(), "=")
    		if len(parsedSelector) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "warning": {
                "default": "",
                "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.",
                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top