Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for farm (0.05 sec)

  1. src/cmd/go/alldocs.go

    //   - For GOARCH=amd64, GOAMD64=v1, v2, and v3
    //     correspond to the amd64.v1, amd64.v2, and amd64.v3 feature build tags.
    //   - For GOARCH=arm, GOARM=5, 6, and 7
    //     correspond to the arm.5, arm.6, and arm.7 feature build tags.
    //   - For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5}
    //     correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    //   - For GOARCH=mips or mipsle,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		return
    	}
    
    	// Set Parts Count Header
    	if opts.PartNumber > 0 && len(objInfo.Parts) > 0 {
    		setPartsCountHeaders(w, objInfo)
    	}
    
    	setHeadGetRespHeaders(w, r.Form)
    
    	var buf *bytebufferpool.ByteBuffer
    	if update && globalCacheConfig.MatchesSize(objInfo.Size) {
    		buf = bytebufferpool.Get()
    		defer bytebufferpool.Put(buf)
    	}
    
    	var iw io.Writer
    	iw = w
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case "arm64":
    		if cfg.Goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390x":
    		return []string{"-m64", "-march=z196"}
    	case "mips64", "mips64le":
    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def FunctionalControlFlowToCFGPass : Pass<"tf-functional-control-flow-to-cfg", "mlir::func::FuncOp"> {
      let summary = "Transform functional control flow Ops to MLIR Control Form Graph "
               "(CFG) form";
      let constructor = "TF::CreateTFFunctionalControlFlowToCFG()";
      let dependentDialects = ["tensor::TensorDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/kubelet/kubelet.go

    // 6.  the pod logs root directory
    func (kl *Kubelet) setupDataDirs() error {
    	if cleanedRoot := filepath.Clean(kl.rootDirectory); cleanedRoot != kl.rootDirectory {
    		return fmt.Errorf("rootDirectory not in canonical form: expected %s, was %s", cleanedRoot, kl.rootDirectory)
    	}
    	pluginRegistrationDir := kl.getPluginsRegistrationDir()
    	pluginsDir := kl.getPluginsDir()
    	if err := os.MkdirAll(kl.getRootDir(), 0750); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    				}
    				break
    			}
    
    			if target.IsElf() && target.IsARM() {
    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    				// related to the fact that our own TLS storage happens
    				// to take up 8 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top