Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for restriction (0.41 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.Artifact, java.util.List); } org/apache/maven/artifact/versioning/Restriction.class package org.apache.maven.artifact.versioning; public synchronized class Restriction { private final ArtifactVersion lowerBound; private final boolean lowerBoundInclusive; private final ArtifactVersion upperBound; private final boolean upperBoundInclusive; static final Restriction EVERYTHING; public void Restriction(ArtifactVersion, boolean, ArtifactVersion, boolean); public ArtifactVersion getLowerBound();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.Artifact, java.util.List); } org/apache/maven/artifact/versioning/Restriction.class package org.apache.maven.artifact.versioning; public synchronized class Restriction { private final ArtifactVersion lowerBound; private final boolean lowerBoundInclusive; private final ArtifactVersion upperBound; private final boolean upperBoundInclusive; static final Restriction EVERYTHING; public void Restriction(ArtifactVersion, boolean, ArtifactVersion, boolean); public ArtifactVersion getLowerBound();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    <p>
    Each code point is distinct; for instance, upper and lower case letters
    are different characters.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    			// See issue 57952.
    			ctxt.Diag("mask register must be specified for .Z instructions: %v", p)
    		} else if k.Reg == REG_K0 {
    			// The mask register must not be K0. That restriction is already
    			// handled by the Yknot0 restriction in the opcode tables, so we
    			// won't ever reach here. But put something sensible here just in case.
    			ctxt.Diag("mask register must not be K0 for .Z instructions: %v", p)
    		}
    		evexZ = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    //   * input: per-tensor qi8
    //   * filter: per-channel qi8
    //   * output: per-tensor qi8
    //
    // Conditions for the `tfl.batch_matmul` conversion:
    //   * size(batching_dimensions) <= 3 (TFLite support restriction)
    //   * size(contracting_dimensions) = 1
    //   * Input tensors are per-tensor uniform quantized (i8->f32)
    //     tensors (full integer) with shape [..., r_x, c_x] or [..., c_x, r_x].
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          axes.push_back(axis_int.getSExtValue());
        }
        if (axes != SmallVector<int64_t>({1, 2, 0, 3})) return failure();
    
        // Add reshape op to be aligned with the input restriction with
        // TFL::resize_nearest_neighor op.
        const int32_t image_size = static_cast<int32_t>(params_type.getShape()[0]);
        const int32_t feature_size =
            static_cast<int32_t>(params_type.getShape()[3]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	if srcInfo.Legacy {
    		srcInfo.metadataOnly = false
    	}
    
    	// Check if x-amz-metadata-directive or x-amz-tagging-directive was not set to REPLACE and source,
    	// destination are same objects. Apply this restriction also when
    	// metadataOnly is true indicating that we are not overwriting the object.
    	// if encryption is enabled we do not need explicit "REPLACE" metadata to
    	// be enabled as well - this is to allow for key-rotation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    ```
    
    This operation requires that:
    
    `-1-input.dims() <= dim <= input.dims()`
    
    This operation is related to `squeeze()`, which removes dimensions of
    size 1.
      }];
    
      // TODO: Restriction on dim's size and valid range are not modeled here.
      let arguments = (ins AnyTensor:$input, TFL_I32OrI64Tensor:$dim);
    
      let results = (outs AnyTensor:$output);
    
      let hasOptions = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top