Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for convlit (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('kt') alignsTo('2.9.4.1') byPublishedPlatform()
    
                doesNotGetPlatform("org", "platform", "2.7.9") // because of conflict resolution
                doesNotGetPlatform("org", "platform", "2.9.0") // because of conflict resolution
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		sidecar          *config.Config
    		expectedListener []int
    	}{
    		{
    			name:             "service port conflict with proxy static listener",
    			services:         servicesConflictWithStaticListener,
    			sidecar:          nil,
    			expectedListener: []int{15090, 8080},
    		},
    		{
    			name:             "service port conflict with proxy virtual listener",
    			services:         servicesConflictWithVirtualListener,
    			sidecar:          nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top