Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 312 for unnamed (0.12 sec)

  1. src/go/types/typexpr.go

    	}
    
    	if orig, _ := gtyp.(*Alias); orig != nil {
    		return check.instance(ix.Pos(), orig, targs, nil, check.context())
    	}
    
    	orig := asNamed(gtyp)
    	if orig == nil {
    		panic(fmt.Sprintf("%v: cannot instantiate %v", ix.Pos(), gtyp))
    	}
    
    	// create the instance
    	inst := asNamed(check.instance(ix.Pos(), orig, targs, nil, check.context()))
    
    	// orig.tparams may not be set up, so we need to do expansion later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

                    }
                }
            }
        }
    }
    """
            // This is a directory named 'directory'
            file("src/other/directory").mkdirs()
            // This is a header named 'directory'
            file("src/main/headers/directory") << '#pragma message("including directory named header")'
            file("src/main/headers/macro.h") << '#pragma message("including macro header")'
    
            sourceFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            0 * _
            mutable.asMap() == [
                (CATEGORY_ATTRIBUTE): named(Category, LIBRARY),
                (USAGE_ATTRIBUTE): named(Usage, JAVA_RUNTIME),
                (BUNDLING_ATTRIBUTE): named(Bundling, EXTERNAL),
                (LIBRARY_ELEMENTS_ATTRIBUTE): named(LibraryElements, LibraryElements.JAR),
                (TARGET_JVM_ENVIRONMENT_ATTRIBUTE): named(TargetJvmEnvironment, STANDARD_JVM)
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

         *
         * @param elements the elements with possibly duplicated names
         * @return a Map containing the new name for each element that has to be renamed
         */
        public Map<T, String> deduplicate(Iterable<? extends T> elements) {
            return new StatefulDeduplicator(elements).getNewNames();
        }
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    func hasVarSize(t Type, seen map[*Named]bool) (varSized bool) {
    	// Cycles are only possible through *Named types.
    	// The seen map is used to detect cycles and track
    	// the results of previously seen types.
    	if named := asNamed(t); named != nil {
    		if v, ok := seen[named]; ok {
    			return v
    		}
    		if seen == nil {
    			seen = make(map[*Named]bool)
    		}
    		seen[named] = true // possibly cyclic until proven otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            and:
            container.findByName("task") != null
            container.findByName("task") == task
    
            and:
            container.withType(DefaultTask).named("task").isPresent()
            container.withType(DefaultTask).named("task").get() == task
    
            and:
            1 * taskFactory.create(_ as TaskIdentity) >> task
            1 * action.execute(_) >> { throw new RuntimeException("Failing creation rule") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            file("lib1.jar").renameTo(file("lib1-renamed.jar"))
            buildFile.text = buildScriptWithClasspath("lib1-renamed.jar", "lib2.jar")
    
            run "compile"
            then:
            skipped ":compile"
        }
    
        def buildScriptWithClasspath(String... dependencies) {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs.go

    	if err != nil {
    		return errors.Wrapf(err, "failure loading certificate for %s", l.uxName)
    	}
    	// Validate period
    	CheckCertificatePeriodValidity(l.uxName, caCert)
    
    	// Check if cert is a CA
    	if !caCert.IsCA {
    		return errors.Errorf("certificate %s is not a CA", l.uxName)
    	}
    	return nil
    }
    
    // validateCACertAndKey tries to load a x509 certificate and private key from pkiDir,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

     */
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface ObjectFactory {
        /**
         * Creates a simple immutable {@link Named} object of the given type and name.
         *
         * <p>The given type can be an interface that extends {@link Named} or an abstract class that 'implements' {@link Named}. An abstract class, if provided:</p>
         * <ul>
         *     <li>Must provide a zero-args constructor that is not private.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            archive.assertContainsFile('file2.txt')
            archive.content("file1.txt") == "dir1/file1.txt"
    
            where:
            archiveType << ['tar', 'zip']
        }
    
        def "renamed file will be treated as duplicate in #archiveType"() {
            given:
            createFilesStructureForDupeTests()
            buildFile << """
                    task archive(type: ${archiveType.capitalize()}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top