Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for convlit (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "Fails resolution because dependency attributes and constraint attributes conflict"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
                        attribute('custom', 'c1')
                    }
                    variant('runtime') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. configure.py

        except subprocess.CalledProcessError as e:
          output = e.output
      else:
        output = subprocess.check_output(cmd, stderr=stderr)
      return output.decode('UTF-8').strip()
    
    
    def cygpath(path):
      """Convert path from posix to windows."""
      return os.path.abspath(path).replace('\\', '/')
    
    
    def get_python_path(environ_cp, python_bin_path):
      """Get the python site package paths."""
      python_paths = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    					// This relocation should point to a bctrl followed by a ld r2, 24(41)
    					// Convert the bctrl into a bl.
    					su := ldr.MakeSymbolUpdater(s)
    					rewritetoinsn(&ctxt.Target, ldr, su, int64(r.Off()), 0xFFFFFFFF, OP_BCTRL, OP_BL)
    
    					// Turn this reloc into an R_CALLPOWER, and convert the TOC restore into a nop.
    					su.SetRelocType(i, objabi.R_CALLPOWER)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    }
    
    // updateBuildList updates the module loader's global build list to be
    // consistent with r.resolvedVersion, and to include additional modules
    // provided that they do not conflict with the resolved versions.
    //
    // If the additional modules conflict with the resolved versions, they will be
    // downgraded to a non-conflicting version (possibly "none").
    //
    // If the resulting build list is the same as the one resulting from the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         *
         * @param discoveredEdges A collector for visited edges.
         */
        public void visitOutgoingDependencies(Collection<EdgeState> discoveredEdges) {
            // If this configuration's version is in conflict, do not traverse.
            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    	}
    }
    
    // This test checks that the disruption controller does not write stale data to
    // a PDB status during race conditions with the eviction handler. Specifically,
    // failed updates due to ResourceVersion conflict should not cause a stale value
    // of DisruptionsAllowed to be written.
    //
    // In this test, DisruptionsAllowed starts at 2.
    // (A) We will delete 1 pod and trigger DisruptionController to set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // implementation, mirroring the previous XLA implementation.
    //
    // 1. Computing proper quantized bounds. This involves nudging the input bounds.
    // 2. Converting the input bounds to quantized space, rounding values.
    // 3. Convert back into floating point space.
    class ConvertFakeQuantWithMinMaxVarsOp : public RewritePattern {
     public:
      explicit ConvertFakeQuantWithMinMaxVarsOp(MLIRContext *context)
          : RewritePattern(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          ShapedType new_output_type = ConvertIntToQint(
              mlir::cast<ShapedType>(output_type), rewriter.getContext());
          if (!new_output_type) {
            q_op->emitError(
                "Failed to convert the type to the corresponding qtype.");
            return failure();
          }
          output_types = {new_output_type};
        } else {
          output_types = {output_type.clone(elem_type.getStorageType())};
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Merge 'rotate then insert selected bits [into zero]' instructions together.
    (RISBGZ (RISBGZ x {y}) {z})
      && z.InMerge(y.OutMask()) != nil
      => (RISBGZ x {(*z.InMerge(y.OutMask())).RotateLeft(y.Amount)})
    
    // Convert RISBGZ into 64-bit shift (helps CSE).
    (RISBGZ x {r}) && r.End == 63 && r.Start == -r.Amount&63 => (SRDconst x [-r.Amount&63])
    (RISBGZ x {r}) && r.Start == 0 && r.End == 63-r.Amount => (SLDconst x [r.Amount])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top