Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,270 for because3 (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | Was requested : didn't match versions <versions>
    | The dependency appears with a <<dynamic_versions#sub:declaring_dependency_with_dynamic_version, dynamic version>> which did not include the listed versions.
    May be followed by a `because` text.
    
    | Was requested : reject version <versions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. test/recover.go

    	}
    }
    
    func withoutRecover() {
    	mustNotRecover() // because it's a sub-call
    }
    
    func withoutRecoverRecursive(n int) {
    	if n == 0 {
    		withoutRecoverRecursive(1)
    	} else {
    		v := recover()
    		if v != nil {
    			println("spurious recover (recursive)", v)
    			die()
    		}
    	}
    }
    
    func test1() {
    	defer mustNotRecover()           // because mustRecover will squelch it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

            then:
            failure.assertHasCause("Cannot map a dependency on dep:dep that defines both a branch (release) and a version constraint (1.0).")
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for Swift component with dependencies on multiple repositories"() {
            given:
            def lib1Repo = GitFileRepository.init(testDirectory.file("repos/lib1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                    if (details.requested.name == 'foo') {
                        details.useVersion '0.11'
                        details.because 'because I can'
                    }
                }
                dependencies {
                    constraints {
                        conf('org:foo') {
                           version { strictly '1.0' }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

                  (TFL_QuantizeOp (TF_ReshapeOp $input, $shape),
                  (UpdateShapeWithAxis<-1> $qtype, $old_value))),
              [(CanUpdateShapeWithAxis<-1> $qtype, $old_value)]>;
    
    // The axis is set to 0 because the transpose is from the legalization of
    // tf.conv2d and the new channel axis is the first dimension.
    def ReorderTransposeDequantQuantUsedByConv :
          Pat<(TF_TransposeOp:$old_value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    // is already in flight, then a new event cannot begin because the current time is
    // already being attributed to that event. In this case, this function returns false.
    // Otherwise, it returns true.
    //
    // The caller must be non-preemptible until at least stop is called or this function
    // returns false. Because this is trying to measure "on-CPU" time of some event, getting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            provider.getOrElse(someValue()) == someValue()
    
            when:
            provider.get()
    
            then:
            def t = thrown(MissingValueException)
            t.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "mapped provider uses the result of transformer as its value"() {
            def transform = Mock(Transformer)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

                            break;
                        }
                    } else {
                        result.matches(candidateId);
                        return;
                    }
                }
            }
    
            // if we reach this point, no match was found, either because there are no versions matching the selector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

            "Collection<T> += Provider<T>"           | "+="      | "ListProperty<MyObject>"        | 'provider { MyObject("a") }'                               | unsupportedWithDescription("Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    					// 1) If the core type has a tilde, per spec requirement for tilde
    					//    elements, the core type is an underlying (literal) type.
    					//    And because of the tilde, the underlying type of tx must match
    					//    against the core type.
    					//    But because unify automatically matches a defined type against
    					//    an underlying literal type, we can simply unify tx with the
    					//    core type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top