Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,663 for instanceId (0.41 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

            bean instanceof ModelObject
            bean.modelIdentityDisplayName == null
            !bean.hasUsefulDisplayName()
    
            bean instanceof OwnerAware
    
            !(bean instanceof DynamicObjectAware)
            !(bean instanceof ExtensionAware)
            !(bean instanceof HasConvention)
            !(bean instanceof IConventionAware)
            !(bean instanceof GroovyObject)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                }
    
                task verify {
                    assert components.java instanceof DefaultJvmSoftwareComponent
                    assert components.comp instanceof DefaultJvmSoftwareComponent
                }
            """
    
            expect:
            succeeds "verify"
        }
    
        def "can instantiate component instances adjacent to java component with java-library plugin applied in Kotlin DSL"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            // the same instance can be provided multiple times under different Key's
            // deduplicate instances to avoid redundant beforeXXX/afterXXX callbacks
            IdentityHashMap<WeakMojoExecutionListener, Object> listeners = new IdentityHashMap<>();
            for (Object provided : getScopeState().provided.values()) {
                if (provided instanceof WeakMojoExecutionListener) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/LineReader.java

              lines.add(line);
            }
          };
    
      /** Creates a new instance that will read lines from the given {@code Readable} object. */
      public LineReader(Readable readable) {
        this.readable = checkNotNull(readable);
        this.reader = (readable instanceof Reader) ? (Reader) readable : null;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

            visitor.candidate("A File instance.");
            visitor.candidate("A Path instance.");
            visitor.candidate("A Directory instance.");
            visitor.candidate("A RegularFile instance.");
            visitor.candidate("A URI or URL instance.");
            visitor.candidate("A TextResource instance.");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

        /**
         * Does this instance represent some temporary or mutated view of the component?
         *
         * Generally you should avoid retaining ad hoc instances in memory, whereas non-ad hoc instances can safely be cached for the lifetime of the build tree.
         *
         * @return true when this instance is ad hoc, false when this instance is not ad hoc and can be cached.
         */
        boolean isAdHoc();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/context.go

    		if inst == nil || Identical(inst, e.instance) {
    			return e.instance
    		}
    		if debug {
    			// Panic during development to surface any imperfections in our hash.
    			panic(fmt.Sprintf("%s and %s are not identical", inst, e.instance))
    		}
    	}
    
    	ctxt.typeMap[h] = append(ctxt.typeMap[h], ctxtEntry{
    		orig:     orig,
    		targs:    targs,
    		instance: inst,
    	})
    
    	return inst
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tests/integration/security/util/reachability/context.go

    	SkippedForMulticluster bool
    }
    
    var (
    	A             echo.Instances
    	B             echo.Instances
    	C             echo.Instances
    	D             echo.Instances
    	E             echo.Instances
    	Multiversion  echo.Instances
    	VM            echo.Instances
    	External      echo.Instances
    	Naked         echo.Instances
    	Headless      echo.Instances
    	HeadlessNaked echo.Instances
    )
    
    const (
    	ASvc             = "a"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// The list of all individual resources instances currently available.
    	//
    	// +listType=atomic
    	Instances []NamedResourcesInstance `json:"instances" protobuf:"bytes,1,name=instances"`
    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

            return false
        }
    
        private static ignoreCleanupAssertionsOf(IMethodInvocation invocation) {
            def instance = invocation.instance
            if (instance instanceof AbstractIntegrationSpec) {
                instance.ignoreCleanupAssertions()
            }
            allResettableExpectationsOf(instance).forEach { expectations ->
                try {
                    expectations.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top