Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for processEntry (0.19 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

                        while (zipEntry != null) {
                            processEntry(zipEntry, builder)
                            zipEntry = inputStream.nextEntry
                        }
                    }
                })
            }
    
            @Throws(IOException::class)
            private
            fun processEntry(zipEntry: ZipEntry, builder: Trie.Builder) {
                val name = zipEntry.name
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/podcgroupns.go

    	desiredUIDs := sets.New(maps.Keys(pods)...)
    	for _, entry := range entries {
    		// we can't break here because we need to close all the netns we opened
    		// plus we want to return whatever we can to the user.
    		res, err := p.processEntry(p.proc, netnsObserved, desiredUIDs, entry)
    		if err != nil {
    			log.Debugf("error processing entry: %s %v", entry.Name(), err)
    			continue
    		}
    		if res == nil {
    			continue
    		}
    		pod := pods[res.uid]
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 11K bytes
    - Viewed (0)
Back to top