Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 524 for unbound (0.16 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

        subject:
          - person.parent.parent.parent.parent.parent.name Object [*]
    """
        }
    
        def "partially bound rules are reported and the report includes the elements bound to"() {
            given:
            buildScript """
                class MyPlugin {
                    static class MyThing1 {}
                    static class MyThing2 {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

                  foo {
                    $code
                  }
                }
            """
    
            then:
            succeeds "tasks" // succeeds because we don't fail on invalid usage, and don't fail due to unbound inputs
    
            where:
            code << [
                'something.$(1)',
                'this.$("$name")',
                'foo.bar().$("a" + "b")',
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelNodeInternalTest.groovy

        }
    
        def "should not fire for unbound binders"() {
            setup:
            ModelNodeInternal modelNode = new TestNode(registration)
            def executionBinder = Mock(RuleBinder)
            executionBinder.isBound() >> false
    
            when:
            modelNode.notifyFired(executionBinder)
    
            then:
            AssertionError e = thrown()
            e.message == 'RuleBinder must be in a bound state'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.report.unbound;
    
    import com.google.common.base.Joiner;
    import javax.annotation.concurrent.NotThreadSafe;
    
    import java.io.PrintWriter;
    
    @NotThreadSafe
    public class UnboundRulesReporter {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/binder_test.go

    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim with claim bound to unbound volume. Check it's bound.
    			// Also check that Pending phase is set to Bound
    			name:            "3-3 - bound claim with unbound volume",
    			initialVolumes:  newVolumeArray("volume3-3", "10Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

    import org.jetbrains.kotlin.resolve.diagnostics.Diagnostics
    import org.jetbrains.kotlin.resolve.source.PsiSourceFile
    import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource
    
    /**
     * Whether unbound IR symbols should be stubbed instead of linked.
     * This should be enabled if the compiled file could refer to symbols defined in another file of the same module.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRuleInput.java

        private final String type;
        private final boolean bound;
        private final String description;
        private final ImmutableList<String> suggestedPaths;
        private final String scope;
    
        public String getPath() {
            return path;
        }
    
        public String getType() {
            return type;
        }
    
        public boolean isBound() {
            return bound;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    }
    
    // Filter invoked at the filter extension point.
    // It evaluates if a pod can fit due to the volumes it requests,
    // for both bound and unbound PVCs.
    //
    // For PVCs that are bound, then it checks that the corresponding PV's node affinity is
    // satisfied by the given node.
    //
    // For PVCs that are unbound, it tries to find available PVs that can satisfy the PVC requirements
    // and that the PV node affinity is satisfied by the given node.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    		wantFilterStatus    *framework.Status
    	}{
    		{
    			name: "label zone failure domain matched",
    			Pod:  createPodWithVolume("pod_1", "PVC_1"),
    			Node: testNode,
    		},
    		{
    			name: "unbound volume empty storage class",
    			Pod:  createPodWithVolume("pod_1", "PVC_EmptySC"),
    			Node: testNode,
    			wantPreFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    				}
    			}
    			return true
    		}
    	}
    
    	// Unless we have exact unification, neither x nor y are interfaces now.
    	// Except for unbound type parameters (see below), x and y must be structurally
    	// equivalent to unify.
    
    	// If we get here and x or y is a type parameter, they are unbound
    	// (not recorded with the unifier).
    	// Ensure that if we have at least one type parameter, it is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top