Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 427 for has_name (0.11 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // instance (e.g. Types<int>)
    # define TYPED_TEST_CASE(CaseName, Types) \
      typedef ::testing::internal::TypeList< Types >::type \
          GTEST_TYPE_PARAMS_(CaseName)
    
    # define TYPED_TEST(CaseName, TestName) \
      template <typename gtest_TypeParam_> \
      class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
          : public CaseName<gtest_TypeParam_> { \
       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certlist.go

    		if err == nil {
    			// Validate period
    			CheckCertificatePeriodValidity(ca.BaseName, caCert)
    
    			// Cert exists already, make sure it's valid
    			if !caCert.IsCA {
    				return errors.Errorf("certificate %q is not a CA", ca.Name)
    			}
    			// Try and load a CA Key
    			caKey, err = pkiutil.TryLoadKeyFromDisk(ic.CertificatesDir, ca.BaseName)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.name == 'main'
            project.mainComponent.baseName == 'app'
    
            project.mainComponent.binaries.size() == 2
    
            def debugBinary = project.mainComponent.binaries[0]
            debugBinary instanceof CppExecutable
            debugBinary.name == 'mainDebug'
            debugBinary.variantName == 'debug'
            debugBinary.baseName == 'app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        from(components["java"])
        artifactId = moduleIdentity.baseName.get()
        versionMapping {
            usage("java-api") {
                fromResolutionResult()
            }
            usage("java-runtime") {
                fromResolutionResult()
            }
        }
    
        pom {
            packaging = "jar"
            name = moduleIdentity.baseName.map { "${project.group}:$it" }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/go/types/operand.go

    	}
    	// Vu is typed
    
    	// x's type V and T have identical underlying types
    	// and at least one of V or T is not a named type
    	// and neither V nor T is a type parameter.
    	if Identical(Vu, Tu) && (!hasName(V) || !hasName(T)) && Vp == nil && Tp == nil {
    		return true, 0
    	}
    
    	// T is an interface type, but not a type parameter, and V implements T.
    	// Also handle the case where T is a pointer to an interface so that we get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/plugins/GroovyJarFileTest.groovy

            def jar = GroovyJarFile.parse(new File("$fileName"))
    
            expect:
            jar != null
            jar.file == new File("$fileName")
            jar.baseName == "groovy"
            jar.version == VersionNumber.parse("$version")
            !jar.groovyAll
            !jar.indy
            jar.dependencyNotation == "$dependencyNotation"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 20:09:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

                }
            }
            """
    
            when:
            succeeds("help")
    
            then:
            outputContains("""the action must be tested
    ${BAZ_GROUP}:${BAZ_NAME}
    the action must be tested
    ${BAZ_GROUP}:${BAZ_NAME}
    """)
        }
    
        def "dependency constraint declared using #expression shows up in related configuration"() {
            given:
            file(dsl.fileNameFor("build")).text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

        }
    
        @Override
        protected void configureTaskDefaults(CodeNarc task, String baseName) {
            Configuration configuration = project.getConfigurations().getAt(getConfigurationName());
            configureTaskConventionMapping(configuration, task);
            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
        @Override
        protected void beforeApply() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/encoding/json/encode_test.go

    	StrStr     string  `json:",string"`
    	NumberStr  Number  `json:",string"`
    }
    
    func TestRoundtripStringTag(t *testing.T) {
    	tests := []struct {
    		CaseName
    		in   StringTag
    		want string // empty to just test that we roundtrip
    	}{{
    		CaseName: Name("AllTypes"),
    		in: StringTag{
    			BoolStr:    true,
    			IntStr:     42,
    			UintptrStr: 44,
    			StrStr:     "xzbit",
    			NumberStr:  "46",
    		},
    		want: `{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

         */
        public LocalDistribution getDistribution(WrapperConfiguration configuration) {
            String baseName = getDistName(configuration.getDistribution());
            String distName = removeExtension(baseName);
            String rootDirName = rootDirName(distName, configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top