Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 407 for logical (0.14 sec)

  1. src/vendor/golang.org/x/net/nettest/nettest.go

    		return nil, errNoAvailableAddress
    	}
    	ip, ok := hasRoutableIP(network, ifi)
    	if !ok {
    		return nil, errNoAvailableAddress
    	}
    	return ip, nil
    }
    
    // LoopbackInterface returns an available logical network interface
    // for loopback test.
    func LoopbackInterface() (*net.Interface, error) {
    	ift, err := net.Interfaces()
    	if err != nil {
    		return nil, errNoAvailableInterface
    	}
    	for _, ifi := range ift {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/types.go

    	// AddressTypeIPv6 represents an IPv6 Address.
    	AddressTypeIPv6 = AddressType(v1.IPv6Protocol)
    
    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    	// according to the corresponding EndpointSlice addressType field. Consumers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/events.md

    # Eventos de vida útil
    
    Você pode definir a lógica (código) que poderia ser executada antes da aplicação **inicializar**. Isso significa que esse código será executado **uma vez**, **antes** da aplicação **começar a receber requisições**.
    
    Do mesmo modo, você pode definir a lógica (código) que será executada quando a aplicação estiver sendo **encerrada**. Nesse caso, este código será executado **uma vez**, **depois** de ter possivelmente tratado **várias requisições**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    
    == Step 1. Understanding Plugins
    Plugins are the primary method to organize build logic and reuse build logic within a project.
    
    Plugins are also used to distribute custom tasks as packaged code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

    import org.gradle.internal.Describables;
    import org.gradle.internal.build.CompositeBuildParticipantBuildState;
    import org.gradle.internal.build.IncludedBuildState;
    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState;
    import org.gradle.internal.model.CalculatedValueCache;
    import org.gradle.internal.model.CalculatedValueContainerFactory;
    import org.gradle.util.Path;
    
    import javax.inject.Inject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/kubelet/configmap/configmap_manager.go

    // necessary for registered pods.
    // It implement the following logic:
    //   - whenever a pod is create or updated, the cached versions of all configmaps
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/kubelet/secret/secret_manager.go

    // NewCachingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all secrets
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	if err != nil {
    		u.logger.Printf("Could not find work: failed to read local dir %s: %v", localdir, err)
    		return ans
    	}
    
    	mode, asof := u.dir.Mode()
    	u.logger.Printf("Finding work: mode %s, asof %s", mode, asof)
    
    	// count files end in .v1.count
    	// reports end in .json. If they are not to be uploaded they
    	// start with local.
    	for _, fi := range fis {
    		if strings.HasSuffix(fi.Name(), ".v1.count") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/sync/pool.go

    	s := p.localSize
    	l := p.local
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	if p.local == nil {
    		allPools = append(allPools, p)
    	}
    	// If GOMAXPROCS changes between GCs, we re-allocate the array and lose the old one.
    	size := runtime.GOMAXPROCS(0)
    	local := make([]poolLocal, size)
    	atomic.StorePointer(&p.local, unsafe.Pointer(&local[0])) // store-release
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/util/filesystem/util_windows_test.go

    	// On Windows, filepath.IsAbs will not return True for paths prefixed with a slash
    	assert.True(t, IsAbs("/test"))
    	assert.True(t, IsAbs("\\test"))
    
    	assert.False(t, IsAbs("./local"))
    	assert.False(t, IsAbs("local"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top