Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for Constraint (0.24 sec)

  1. pkg/apis/admissionregistration/types.go

    	// +optional
    	ParamKind *ParamKind
    
    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraint.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    				IsOwner:         owner,
    				Claims:          cred.Claims,
    			}) {
    				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrAccessDenied), r.URL)
    				return
    			}
    		}
    	}
    
    	// Parse incoming location constraint.
    	_, s3Error = parseLocationConstraint(r)
    	if s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// The output is in `buffer`, core TensorFlow owns the buffer and guarantees
      /// that at least `n` bytes are available.
      ///
      /// Returns number of bytes read or -1 in case of error. Because of this
      /// constraint and the fact that `ssize_t` is not defined in `stdint.h`/C++
      /// standard, the return type is `int64_t`.
      ///
      /// This is thread safe.
      ///
      /// Note: the `buffer` argument is NOT a null terminated string!
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // }
            //
            // In the graph above we can't cluster iteration++ with any of the
            // gradient update operations since that will break the TF resource
            // variable memory model.  Given that constraint the ideal clustering
            // would be to put all the gradient updates and all of the Computation_*
            // nodes in one cluster, and leave iteration++ and NoOp unclustered.
            //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    //          must have a single output (these operations are typically
    //          placeholders created for the sole purpose of representing
    //          an input. We can relax this constraint if there are
    //          compelling use cases).
    //          - If an array is given (`num_opers` >= 0), all operations
    //          in it will become part of the function. In particular, no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @param validation The validation to perform on the file.
         * @return The resolved file. Never returns null.
         * @throws InvalidUserDataException When the file does not meet the given validation constraint.
         */
        File file(Object path, PathValidation validation) throws InvalidUserDataException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    > Task :createContainer UP-TO-DATE
    > Task :dockerUp UP-TO-DATE
    > Task :dockerTest UP-TO-DATE
    > Task :removeContainer UP-TO-DATE
    > Task :dockerStop UP-TO-DATE
    ```
    
    Starting with Gradle 7.5, `mustRunAfter` constraints are fully honored yielding the following order of execution:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    					if cfg.BuildV {
    						msg = conflict.String()
    					}
    					ld.error(errors.New(msg))
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top