Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 297 for base_name (0.27 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRulesTest.groovy

        def "test shared library"() {
            def binary = initBinary(SharedLibraryBinarySpecInternal, NativeLibrarySpec)
    
            when:
            toolProvider.getSharedLibraryName("base_name") >> "shared_library_name"
            toolProvider.getSharedLibraryLinkFileName("base_name") >> "shared_library_link_name"
    
            and:
            NativeBinaryRules.assignTools(binary, toolChains, tmpDir.testDirectory)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

                                  const FilePath& relative_path);
    
      // Returns a pathname for a file that does not currently exist. The pathname
      // will be directory/base_name.extension or
      // directory/base_name_<number>.extension if directory/base_name.extension
      // already exists. The number will be incremented until a pathname is found
      // that does not already exist.
      // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

                                  const FilePath& relative_path);
    
      // Returns a pathname for a file that does not currently exist. The pathname
      // will be directory/base_name.extension or
      // directory/base_name_<number>.extension if directory/base_name.extension
      // already exists. The number will be incremented until a pathname is found
      // that does not already exist.
      // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // AttrValue {name : foo, attrs : {k1 : bar, k2 : rfc}}, it will convert it to
      // a list of MLIR Attributes: {{base_name : foo}, {base_name.k1 : bar},
      // {base_name.k2 : rfc}}.
      Status ConvertFunctionCallAttribute(const std::string& base_name,
                                          const AttrValue& value,
                                          NamedAttrList* attributes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/src/main/java/org/gradle/sample/bad_name.java

    package org.gradle.sample;
    
    class bad_name {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 48 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/src/main/java/org/gradle/sample/bad_name.java

    package org.gradle.sample;
    
    class bad_name {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 48 bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingScheme.java

    import javax.annotation.Nullable;
    
    public class ClassDirectoryBinaryNamingScheme {
        private final String baseName;
        private final String collapsedName;
    
        public ClassDirectoryBinaryNamingScheme(String baseName) {
            this.baseName = baseName;
            this.collapsedName = collapseMain(this.baseName);
        }
    
        private static String collapseMain(String name) {
            return name.equals("main") ? "" : name;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

                            append(name, startLast, i, baseName, lowerBaseName, capBaseName, dirName);
                        }
                        startLast = i;
                    }
                }
                if (i > startLast) {
                    append(name, startLast, i, baseName, lowerBaseName, capBaseName, dirName);
                }
                this.baseName = baseName.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/certs.go

    	if !pkiutil.CertOrKeyExist(pkiDir, baseName) {
    		return nil, nil, errors.Errorf("couldn't load %s certificate authority from %s", baseName, pkiDir)
    	}
    
    	// Try to load certificate authority .crt and .key from the PKI directory
    	caCert, caKey, err := pkiutil.TryLoadCertAndKeyFromDisk(pkiDir, baseName)
    	if err != nil {
    		return nil, nil, errors.Wrapf(err, "failure loading %s certificate authority", baseName)
    	}
    	// Validate period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  10. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCppBinaryModel.java

            this.baseName = baseName;
            this.compilationDetails = compilationDetails;
            this.linkageDetails = linkageDetails;
        }
    
        public String getName() {
            return name;
        }
    
        public String getVariantName() {
            return variantName;
        }
    
        public String getBaseName() {
            return baseName;
        }
    
        public DefaultCompilationDetails getCompilationDetails() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top