Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for Reflection (0.15 sec)

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

            where:
            changeDesc                                   | changeArg
            "a new external dependency"                  | "-DexternalDependency=true"
            "changing selection reasons"                 | "-DselectionReason=changed"
            "changing project library variant metadata"  | "-DprojectLibAttrValue=new-value"
            "changing included library variant metadata" | "-DcompositeLibAttrValue=new-value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                if (reselectVariants) {
                    return viewAttributes;
                }
    
                // Otherwise, artifact views without re-selection are based on the original request attributes.
                return attributesFactory.concat(baseAttributes, viewAttributes);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    			// This is only done for legacyGatewaySelector, as the new gateway selection mechanism *only* allows
    			// referencing the Service port, and references are un-ambiguous.
    			continue
    		}
    		if w.Port.Port == int(number) {
    			if legacyGatewaySelector {
    				// When we are using legacy gateway label selection, we only resolve to a single port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	corev1 "k8s.io/api/core/v1"
    	v1 "k8s.io/api/discovery/v1"
    	"k8s.io/api/discovery/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/selection"
    	"k8s.io/apimachinery/pkg/types"
    	mcs "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. schema/relationship.go

    package schema
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"strings"
    
    	"github.com/jinzhu/inflection"
    	"golang.org/x/text/cases"
    	"golang.org/x/text/language"
    
    	"gorm.io/gorm/clause"
    )
    
    // RelationshipType relationship type
    type RelationshipType string
    
    const (
    	HasOne    RelationshipType = "has_one"      // HasOneRel has one relationship
    	HasMany   RelationshipType = "has_many"     // HasManyRel has many relationship
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            "help"         | []
            "properties"   | []
            "dependencies" | []
            "help"         | ["--task", "help"]
            "help"         | ["--rerun"]
        }
    
        def "can store task selection success/failure for :help --task"() {
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
            task aTask
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

    import org.gradle.internal.cc.impl.services.ConfigurationCacheBuildTreeModelSideEffectExecutor
    import org.gradle.internal.cc.impl.services.VintageEnvironmentChangeTracker
    import org.gradle.execution.selection.BuildTaskSelector
    import org.gradle.initialization.StartParameterBuildOptions
    import org.gradle.internal.build.BuildStateRegistry
    import org.gradle.internal.buildoption.DefaultInternalOptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                }
                SelectionKey key = socket.register(selector, SelectionKey.OP_WRITE);
                // block until ready for write operations
                selector.select();
                // cancel OP_WRITE selection
                key.cancel();
                // complete cancelling key
                selector.selectNow();
            }
    
            @Override
            public void close() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.deployment.internal.DeploymentRegistry> is not annotated with @ServiceScope in (DeploymentRegistry.java:0)
    Class <org.gradle.execution.selection.BuildTaskSelector$BuildSpecificSelector> is not annotated with @ServiceScope in (BuildTaskSelector.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * Here, we set a value on the consuming configuration, which mandates a release status.
         * This means that we will evict versions which are "integration", even during dynamic
         * version selection. The nice thing is that it uses attribute matching now, and we prove
         * that it integrates well with the legacy "status" API thanks to the Maven use case:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top