Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for Mystring (0.21 sec)

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

            and:
            jarFile.assertExists()
        }
    
        private static TestFile findFile(File baseDir, String includePattern) {
            List<TestFile> files = findFiles(baseDir, includePattern)
            assert files.size() == 1
            return files[0]
        }
    
        private static List<TestFile> findFiles(File baseDir, String includePattern) {
            List<TestFile> files = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    	EvString:            {"String", 7, false, []string{}, nil},
    	EvGoStartLocal:      {"GoStartLocal", 7, false, []string{"g"}, nil},
    	EvGoUnblockLocal:    {"GoUnblockLocal", 7, true, []string{"g"}, nil},
    	EvGoSysExitLocal:    {"GoSysExitLocal", 7, false, []string{"g", "ts"}, nil},
    	EvGoStartLabel:      {"GoStartLabel", 8, false, []string{"g", "seq", "labelid"}, []string{"label"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

        @Suppress("NOTHING_TO_INLINE")
        private inline fun buildPackageNamesSetFrom(vararg fqNameSets: Set<FqName>): Set<String> =
            buildSet {
                for (fqNameSet in fqNameSets) {
                    fqNameSet.mapTo(this, FqName::asString)
                }
            }
    
        override fun getTopLevelProperties(callableId: CallableId): Collection<KtProperty> =
            index.topLevelPropertyMap[callableId.packageName]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    func MakeReadFile(pass *analysis.Pass) func(filename string) ([]byte, error) {
    	return func(filename string) ([]byte, error) {
    		if err := CheckReadable(pass, filename); err != nil {
    			return nil, err
    		}
    		return os.ReadFile(filename)
    	}
    }
    
    // CheckReadable enforces the access policy defined by the ReadFile field of [analysis.Pass].
    func CheckReadable(pass *analysis.Pass, filename string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/internal/trace/generation.go

    			return fmt.Errorf("invalid string size %d, maximum is %d", len, go122.MaxStringSize)
    		}
    
    		// Copy out the string.
    		n, err := io.CopyN(&sb, r, int64(len))
    		if n != int64(len) {
    			return fmt.Errorf("failed to read full string: read %d but wanted %d", n, len)
    		}
    		if err != nil {
    			return fmt.Errorf("copying string data: %w", err)
    		}
    
    		// Add the string to the map.
    		s := sb.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/prune.go

    		} else {
    			// do not prune base components or unknown components
    			includeCN := []string{
    				string(name.PilotComponentName),
    				string(name.IngressComponentName), string(name.EgressComponentName),
    				string(name.CNIComponentName), string(name.IstioOperatorComponentName),
    				string(name.IstiodRemoteComponentName),
    				string(name.ZtunnelComponentName),
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modindex/read.go

    	embedPos := make(map[string][]token.Position)
    	testEmbedPos := make(map[string][]token.Position)
    	xTestEmbedPos := make(map[string][]token.Position)
    	importPos := make(map[string][]token.Position)
    	testImportPos := make(map[string][]token.Position)
    	xTestImportPos := make(map[string][]token.Position)
    	allTags := make(map[string]bool)
    	for _, tf := range rp.sourceFiles {
    		name := tf.name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    	// if C.free is needed).
    	func C.CString(string) *C.char
    
    	// Go []byte slice to C array
    	// The C array is allocated in the C heap using malloc.
    	// It is the caller's responsibility to arrange for it to be
    	// freed, such as by calling C.free (be sure to include stdlib.h
    	// if C.free is needed).
    	func C.CBytes([]byte) unsafe.Pointer
    
    	// C string to Go string
    	func C.GoString(*C.char) string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/debug/elf/file.go

    func (f *File) ImportedLibraries() ([]string, error) {
    	return f.DynString(DT_NEEDED)
    }
    
    // DynString returns the strings listed for the given tag in the file's dynamic
    // section.
    //
    // The tag must be one that takes string values: [DT_NEEDED], [DT_SONAME], [DT_RPATH], or
    // [DT_RUNPATH].
    func (f *File) DynString(tag DynTag) ([]string, error) {
    	switch tag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

         *
         * @see ArtifactCoordinateFactory#create(Session, String, String, String, String, String, String)
         */
        @Override
        public ArtifactCoordinate createArtifactCoordinate(
                String groupId, String artifactId, String version, String classifier, String extension, String type) {
            return getService(ArtifactCoordinateFactory.class)
                    .create(this, groupId, artifactId, version, classifier, extension, type);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top