Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 139 for farm (0.05 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // It is made a struct to keep extensibility.
    message GroupVersionForDiscovery {
      // groupVersion specifies the API group and version in the form "group/version"
      optional string groupVersion = 1;
    
      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// validations is "spec.validations[0].expression"
    	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
    	// 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.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // It is made a struct to keep extensibility.
    message GroupVersionForDiscovery {
      // groupVersion specifies the API group and version in the form "group/version"
      optional string groupVersion = 1;
    
      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    			}
    		}
    
    		if t&3 != 0 {
    			ldr.Errorf(s, "relocation for %s+%d is not aligned: %d", ldr.SymName(rs), r.Off(), t)
    		}
    		// If branch offset is too far then create a trampoline.
    
    		if int64(int32(t<<6)>>6) != t {
    			ldr.Errorf(s, "direct call too far: %s %x", ldr.SymName(rs), t)
    		}
    		return val | int64(uint32(t)&^0xfc000003), nExtReloc, true
    	case objabi.R_POWER_TOC: // S + A - .TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    // in RFC 3280.
    type pkixPublicKey struct {
    	Algo      pkix.AlgorithmIdentifier
    	BitString asn1.BitString
    }
    
    // ParsePKIXPublicKey parses a public key in PKIX, ASN.1 DER form. The encoded
    // public key is a SubjectPublicKeyInfo structure (see RFC 5280, Section 4.1).
    //
    // It returns a *[rsa.PublicKey], *[dsa.PublicKey], *[ecdsa.PublicKey],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// validations is "spec.validations[0].expression"
    	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
    	// 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.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

            // frame as the representative Merge node.  It is just convenient and
            // does not affect the result after pattern-matching into the
            // AndRecurrence form.
            absl::string_view frame_name = control_flow_info_[n->id()].frame_name;
            auto insert_result = frame_to_merge_node_.insert({frame_name, n});
            Node* representative = insert_result.first->second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find the input edges to form the set of operands to the new function call.
      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!ops.contains(defining_op)) inputs.insert(operand);
        }
      }
      // Find the output edges to form the set of resutls of the new function call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func GenerateGUID() (GUID, error) {
    	guid := GUID{}
    	err := coCreateGuid(&guid)
    	if err != nil {
    		return guid, err
    	}
    	return guid, nil
    }
    
    // String returns the canonical string form of the GUID,
    // in the form of "{XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}".
    func (guid GUID) String() string {
    	var str [100]uint16
    	chars := stringFromGUID2(&guid, &str[0], int32(len(str)))
    	if chars <= 1 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	SPDRP_ENUMERATOR_NAME             SPDRP = 0x00000016 // Enumerator Name (R)
    	SPDRP_SECURITY                    SPDRP = 0x00000017 // Security (R/W, binary form)
    	SPDRP_SECURITY_SDS                SPDRP = 0x00000018 // Security (W, SDS form)
    	SPDRP_DEVTYPE                     SPDRP = 0x00000019 // Device Type (R/W)
    	SPDRP_EXCLUSIVE                   SPDRP = 0x0000001A // Device is exclusive-access (R/W)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top