Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 199 for logical (0.29 sec)

  1. src/net/netip/netip_test.go

    			multicast:          true,
    		},
    		{
    			name:             "link-local unicast v4Addr",
    			ip:               llu4,
    			linkLocalUnicast: true,
    		},
    		{
    			name:             "link-local unicast v6 mapped v4Addr",
    			ip:               AddrFrom16(llu4.As16()),
    			linkLocalUnicast: true,
    		},
    		{
    			name:             "link-local unicast v6Addr",
    			ip:               llu6,
    			linkLocalUnicast: true,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	activeCall atomic.Int32
    
    	tmp [16]byte
    }
    
    // Access to net.Conn methods.
    // Cannot just embed net.Conn because that would
    // export the struct field too.
    
    // LocalAddr returns the local network address.
    func (c *Conn) LocalAddr() net.Addr {
    	return c.conn.LocalAddr()
    }
    
    // RemoteAddr returns the remote network address.
    func (c *Conn) RemoteAddr() net.Addr {
    	return c.conn.RemoteAddr()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(new TypeToken<List<String>>() {}, t);
      }
    
      public void testNonStaticLocalClass() {
        class Local<T> {}
        TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
        assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType());
        assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType());
      }
    
      public void testStaticLocalClass() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(new TypeToken<List<String>>() {}, t);
      }
    
      public void testNonStaticLocalClass() {
        class Local<T> {}
        TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
        assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType());
        assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType());
      }
    
      public void testStaticLocalClass() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. pkg/proxy/endpointschangetracker_test.go

    			},
    		},
    		expected: map[types.NamespacedName]sets.Set[string]{
    			{Namespace: "ns1", Name: "ep1"}: sets.New[string]("1.1.1.1"),
    		},
    	}, {
    		// Case[3]: named local and non-local ports for the same IP.
    		endpointsMap: EndpointsMap{
    			makeServicePortName("ns1", "ep1", "p11", v1.ProtocolTCP): []Endpoint{
    				&BaseEndpointInfo{ip: "1.1.1.1", port: 11, endpoint: "1.1.1.1:11", isLocal: false, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import org.gradle.internal.component.external.model.VirtualComponentIdentifier;
    import org.gradle.internal.component.local.model.LocalConfigurationGraphResolveMetadata;
    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    import org.gradle.internal.component.model.ComponentGraphResolveState;
    import org.gradle.internal.component.model.ComponentGraphSpecificResolveState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

     */
    private enum class ImportKind {
        /** The symbol is available from the local scope and hence cannot be imported or overwritten. */
        LOCAL,
    
        /** Explicitly imported by user. */
        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	})
    
    	return cmd
    }
    
    // mergeKubeletConfigurations merges the provided drop-in configurations with the base kubelet configuration.
    // The drop-in configurations are processed in lexical order based on the file names. This means that the
    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.gradle.internal.component.model.IvyArtifactName;
    import org.gradle.internal.resource.ExternalResource;
    import org.gradle.internal.resource.local.FileResourceRepository;
    import org.gradle.internal.resource.local.LocallyAvailableExternalResource;
    import org.gradle.internal.resource.transfer.UrlExternalResource;
    import org.gradle.internal.xml.XmlFactories;
    import org.gradle.util.internal.CollectionUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top