Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 559 for respective (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenLocalArtifactRepository.java

            return new MavenLocalMetadataValidator();
        }
    
        /**
         * It is common for a local m2 repo to have POM files with no respective artifacts. Ignore these POM files.
         */
        private static class MavenLocalMetadataValidator implements DefaultMavenPomMetadataSource.MavenMetadataValidator {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/strconv/atoc.go

    //
    // If s is syntactically well-formed but either component is more than 1/2 ULP
    // away from the largest floating point number of the given component's size,
    // ParseComplex returns err.Err = ErrRange and c = ±Inf for the respective component.
    func ParseComplex(s string, bitSize int) (complex128, error) {
    	size := 64
    	if bitSize == 64 {
    		size = 32 // complex64 uses float32 parts
    	}
    
    	orig := s
    
    	// Remove parentheses, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/infer.go

    	// through a type parameter is detected, killCycles nils out the respective type
    	// (in the inferred list) which kills the cycle, and marks the corresponding type
    	// parameter as not inferred.
    	//
    	// TODO(gri) If useful, we could report the respective cycle as an error. We don't
    	//           do this now because type inference will fail anyway, and furthermore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. pkg/kubelet/sysctl/allowlist.go

    // sufficient: the container runtime might have a stricter check and refuse to launch a pod.
    //
    // The parameters hostNet and hostIPC are used to forbid sysctls for pod sharing the
    // respective namespaces with the host. This check is only possible for sysctls on
    // the static default allowlist, not those on the custom allowlist provided by the admin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // Prepares OpKernelContext params common to all the ops.
      // Emits an error on failure.
      mlir::LogicalResult PrepareParams();
    
      // Given the required_consts, it will fill the 3 output vectors with
      // their respective data.
      // Expressions: Output XLA expressions as required by the compiled kernel.
      // Tensors: Vector of tensors that back the TensorValue inputs
      // Inputs: Vector of inputs that are backed by tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/image/draw/clip_test.go

    			if !c.mp0.Eq(mp) {
    				t.Errorf("%s: mp want %v got %v", c.desc, c.mp0, mp)
    				continue
    			}
    		}
    
    		// Check that the clipped rectangle is contained by the dst / src / mask
    		// rectangles, in their respective coordinate spaces.
    		if !r.In(c.dr) {
    			t.Errorf("%s: c.dr %v does not contain r %v", c.desc, c.dr, r)
    		}
    		// sr is r translated into src's coordinate space.
    		sr := r.Add(c.sp.Sub(c.dr.Min))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. cmd/sts-errors.go

    func (e stsErrorCodeMap) ToSTSErr(errCode STSErrorCode) STSError {
    	apiErr, ok := e[errCode]
    	if !ok {
    		return e[ErrSTSInternalError]
    	}
    	return apiErr
    }
    
    // error code to STSError structure, these fields carry respective
    // descriptions for all the error responses.
    var stsErrCodes = stsErrorCodeMap{
    	ErrSTSAccessDenied: {
    		Code:           "AccessDenied",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/math/big/doc.go

    the Stringer interface for a (default) string representation of the value,
    but also provide SetString methods to initialize a value from a string in
    a variety of supported formats (see the respective SetString documentation).
    
    Finally, *[Int], *[Rat], and *[Float] satisfy [fmt.Scanner] for scanning
    and (except for *[Rat]) the Formatter interface for formatted printing.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // formed are pruned. If the child island inner ops consume the parent island
    // control result, the child island inner ops will have that respective control
    // input pruned. Results of the parent island that are consumed by the child
    // island are replaced by the respective inner ops result from the parent
    // island.
    void GetNewIslandResultsAndForwardResults(
        const MergedIsland& merged_island,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

      }
      func.return
    }
    
    // CHECK-NEXT: return
    
    
    // Test empty island with no operands and no data result user is removed.
    // Control result users should also have their respective operands removed.
    // CHECK-LABEL: func @empty_island_no_operand_no_data_result
    func.func @empty_island_no_operand_no_data_result() {
      tf_executor.graph {
        %0 = tf_executor.island {
          tf_executor.yield
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
Back to top