Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for farm (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    // mkerrors.sh -marm
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm && netbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -marm _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.ListBatchJobsAction)
    	if objectAPI == nil {
    		return
    	}
    
    	jobType := r.Form.Get("jobType")
    	if jobType == "" {
    		jobType = string(madmin.BatchJobReplicate)
    	}
    
    	resultCh := make(chan itemOrErr[ObjectInfo])
    
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // For example, the reference to the expression of the first item of
      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // 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.
      optional string warning = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// For example, the reference to the expression of the first item of
    	// validations is "spec.validations[0].expression"
    	FieldRef string
    	// 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
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // node as it is surprising to the user if we print "A->B could not be
      // contracted because of the path [P,Q,R]" where P, Q and R are all clusters
      // since in that case a natural question is why we could not form a {A, P, Q,
      // R, B} cluster.
      string DescribePotentialCycle(int from, int to);
    
      // Merge the clusters `cluster_from` and `cluster_to`. After this step the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"groupVersion": "groupVersion specifies the API group and version in the form \"group/version\"",
    	"version":      "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
    }
    
    func (GroupVersionForDiscovery) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // For example, the reference to the expression of the first item of
      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // 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.
      optional string warning = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.id())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.id());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.getId())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.getId());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // XLA does not support Const nodes of Variant type since it needs
            // to know the original ops to be able to compile them to the relevant
            // XLA form.
            // TODO(srbs): This filter is a little conservative. E.g. a subgraph of
            // the form:
            //                          Const
            //                            |
            // EmptyTensorList -> TensorListPushBack -> TensorListPopBack -> Op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top