Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 235 for sysarch (0.26 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPackageSymbol.kt

    import com.intellij.openapi.project.Project
    import com.intellij.psi.JavaPsiFacade
    import com.intellij.psi.PsiElement
    import com.intellij.psi.PsiManager
    import com.intellij.psi.impl.file.PsiPackageImpl
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.fir.symbols.pointers.KaFirPackageSymbolPointer
    import org.jetbrains.kotlin.analysis.api.fir.utils.cached
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/net/dnsconfig.go

    var defaultNS = []string{"127.0.0.1:53", "[::1]:53"}
    
    var getHostname = os.Hostname // variable for testing
    
    type dnsConfig struct {
    	servers       []string      // server addresses (in host:port form) to use
    	search        []string      // rooted suffixes to append to local name
    	ndots         int           // number of dots in name to trigger absolute lookup
    	timeout       time.Duration // wait before giving up on a query, including retries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/runtime/netpoll_kqueue_event.go

    package runtime
    
    // Magic number of identifier used for EVFILT_USER.
    // This number had zero Google results when it's created.
    // That way, people will be directed here when this number
    // get printed somehow and they search for it.
    const kqIdent = 0xee1eb9f4
    
    func addWakeupEvent(kq int32) {
    	ev := keventt{
    		ident:  kqIdent,
    		filter: _EVFILT_USER,
    		flags:  _EV_ADD,
    	}
    	for {
    		n := kevent(kq, &ev, 1, nil, 0, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

         */
        @Nullable
        Module findModule(String name) throws UnknownModuleException;
    
        /**
         * Returns the classpath used to search for modules, in addition to default locations in the Gradle distribution (if available). May be empty.
         */
        ClassPath getAdditionalClassPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

          # Disable kube-dns, to mirror VM
          # we set policy to none and explicitly provide a set of invalid values
          # for nameservers, search namespaces, etc. ndots is set to 1 so that
          # the application will first try to resolve the hostname (a, a.ns, etc.) as is
          # before attempting to add the search namespaces.
          dnsPolicy: None
          dnsConfig:
            nameservers:
            - "8.8.8.8"
            options:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneAnnotationsResolver.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.standalone.base.declarations
    
    import com.intellij.openapi.project.Project
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinAnnotationsResolver
    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinAnnotationsResolverFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/embed/embed.go

    	//	q/s/t   # dir=q/s  elem=t
    	//	q/s/u   # dir=q/s  elem=u
    	//
    	// This order brings directory contents together in contiguous sections
    	// of the list, allowing a directory read to use binary search to find
    	// the relevant sequence of entries.
    	files *[]file
    }
    
    // split splits the name into dir and elem as described in the
    // comment in the FS struct above. isDir reports whether the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    }
    
    // find searches for npages contiguous free pages in pallocBits and returns
    // the index where that run starts, as well as the index of the first free page
    // it found in the search. searchIdx represents the first known free page and
    // where to begin the next search from.
    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    // the new searchIdx should be ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform.declarations
    
    import com.intellij.openapi.project.Project
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.psi.KtAnnotated
    import org.jetbrains.kotlin.psi.KtElement
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. internal/config/identity/ldap/config.go

    	l.LDAP.LookupBindPassword = getCfgVal(LookupBindPassword)
    
    	// User DN search configuration
    	l.LDAP.UserDNSearchFilter = getCfgVal(UserDNSearchFilter)
    	l.LDAP.UserDNSearchBaseDistName = getCfgVal(UserDNSearchBaseDN)
    	l.LDAP.UserDNAttributes = getCfgVal(UserDNAttributes)
    
    	// Group search params configuration
    	l.LDAP.GroupSearchFilter = getCfgVal(GroupSearchFilter)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top