Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for isAlias (0.11 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultArchitecture.java

            return Architectures.X86.isAlias(name);
        }
    
        @Override
        public boolean isAmd64() {
            return Architectures.X86_64.isAlias(name);
        }
    
        @Override
        public boolean isIa64() {
            return Architectures.IA_64.isAlias(name);
        }
    
        @Override
        public boolean isArm32() {
            return Architectures.ARM_V7.isAlias(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

        );
    
        public static ArchitectureInternal forInput(String input) {
            for (KnownArchitecture knownArchitecture : KNOWN_ARCHITECTURES) {
                if (knownArchitecture.isAlias(input.toLowerCase())) {
                    return new DefaultArchitecture(knownArchitecture.getCanonicalName());
                }
            }
            return new DefaultArchitecture(input);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectComponentPublication.java

        /**
         * Specifies that this publication is just an alias for another one and should not
         * be considered when converting project dependencies to published metadata.
         */
        boolean isAlias();
    
        /**
         * Should this publication be ignored when there are others available?
         */
        boolean isLegacy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/NativeProjectPublication.java

            }
            return null;
        }
    
        @Override
        public Provider<SoftwareComponentInternal> getComponent() {
            return Providers.notDefined();
        }
    
        @Override
        public boolean isAlias() {
            return false;
        }
    
        @Override
        public boolean isLegacy() {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/go/types/object_test.go

    import (
    	"fmt"
    	"internal/testenv"
    	"strings"
    	"testing"
    
    	. "go/types"
    )
    
    func TestIsAlias(t *testing.T) {
    	check := func(obj *TypeName, want bool) {
    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/object_test.go

    	"fmt"
    	"internal/testenv"
    	"strings"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    func TestIsAlias(t *testing.T) {
    	check := func(obj *TypeName, want bool) {
    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/universe.go

    	}
    
    	// We create separate byte and rune types for better error messages
    	// rather than just creating type alias *Sym's for the uint8 and
    	// int32  Hence, (bytetype|runtype).Sym.isAlias() is false.
    	// TODO(gri) Should we get rid of this special case (at the cost
    	// of less informative error messages involving bytes and runes)?
    	// NOTE(rsc): No, the error message quality is important.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/mono.go

    	// parameters that it's implicitly parameterized by.
    	for scope := obj.Parent(); scope != root; scope = scope.Parent() {
    		for _, elem := range scope.elems {
    			if elem, ok := elem.(*TypeName); ok && !elem.IsAlias() && cmpPos(elem.Pos(), obj.Pos()) < 0 {
    				if tpar, ok := elem.Type().(*TypeParam); ok {
    					if idx < 0 {
    						idx = len(w.vertices)
    						w.vertices = append(w.vertices, monoVertex{obj: obj})
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/go/types/mono.go

    	// parameters that it's implicitly parameterized by.
    	for scope := obj.Parent(); scope != root; scope = scope.Parent() {
    		for _, elem := range scope.elems {
    			if elem, ok := elem.(*TypeName); ok && !elem.IsAlias() && cmpPos(elem.Pos(), obj.Pos()) < 0 {
    				if tpar, ok := elem.Type().(*TypeParam); ok {
    					if idx < 0 {
    						idx = len(w.vertices)
    						w.vertices = append(w.vertices, monoVertex{obj: obj})
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/util.h

    std::set<std::string> GetMapKeys(
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& map);
    
    // Get the default input value from signature if it's missing in the request
    // inputs. If `is_alias` is set to true, the keys of the `request_inputs` are
    // alias names rather than the feed names in the graph.
    Status GetInputValues(
        const SignatureDef& signature,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 31 23:00:51 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top