Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,052 for exportId (0.15 sec)

  1. test/fixedbugs/bug398.go

    // license that can be found in the LICENSE file.
    
    // Used to crash compiler in interface type equality check.
    // (This test used to have problems - see #15596.)
    
    package p
    
    // exported interfaces
    
    type I1 interface { // ERROR "invalid recursive type: anonymous interface refers to itself"
          F() interface{I1}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 951 bytes
    - Viewed (0)
  2. src/go/types/object.go

    //
    // Objects are ordered nil before non-nil, exported before
    // non-exported, then by name, and finally (for non-exported
    // functions) by package path.
    func (a *object) less(b *object) bool {
    	if a == b {
    		return false
    	}
    
    	// Nil before non-nil.
    	if a == nil {
    		return true
    	}
    	if b == nil {
    		return false
    	}
    
    	// Exported functions before non-exported.
    	ea := isExported(a.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			}
    			portOverrides[port.Number] = port.TargetPort
    		}
    	}
    
    	var exportTo sets.Set[visibility.Instance]
    	if len(serviceEntry.ExportTo) > 0 {
    		exportTo = sets.NewWithLength[visibility.Instance](len(serviceEntry.ExportTo))
    		for _, e := range serviceEntry.ExportTo {
    			exportTo.Insert(visibility.Instance(e))
    		}
    	}
    
    	var labelSelectors map[string]string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProjectDependency.java

        /**
         * Returns the path to use for this project dependency.
         */
        String getPath();
    
        /**
         * Marks this dependency as exported.
         *
         * @return whether this dependency needs to be exported.
         * @since 2.5
         */
        boolean isExported();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        if (exported_names.empty())
          return session_initializer.emitOpError()
                 << "the initializer function should be exported";
    
        if (exported_names.size() != 1)
          return session_initializer.emitOpError()
                 << "the initializer function should have only one exported names";
      }
    
      return success();
    }
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    // Transforms the given module to be suitable for export to TensorFlow GraphDef
    // and then exports all functions to the given library.
    Status PrepareAndExportToLibrary(mlir::ModuleOp module,
                                     FunctionLibraryDefinition* flib_def) {
      // Pass pipeline is defined here instead of leveraging the phase one export
      // pipeline because only the functional to executor dialect conversion and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/go/doc/testdata/g.2.golden

    // The package g is a go/doc test for mixed exported/unexported ...
    PACKAGE g
    
    IMPORTPATH
    	testdata/g
    
    FILENAMES
    	testdata/g.go
    
    CONSTANTS
    	// 
    	const (
    		A, _	= iota, iota
    		_, D
    		E, _
    		G, H
    	)
    
    
    VARIABLES
    	// 
    	var (
    		_, C2, _	= 1, 2, 3
    		C4, _, C6	= 4, 5, 6
    		_, C8, _	= 7, 8, 9
    	)
    
    	// 
    	var (
    		_, X = f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 318 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 44956: writable static temp is not exported correctly.
    // In the test below, package base is
    //
    //     X = &map{...}
    //
    // which compiles to
    //
    //     X = &stmp           // static
    //     stmp = makemap(...) // in init function
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue5470.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5470: exported data for inlining may miss
    // the type argument of make.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 273 bytes
    - Viewed (0)
  10. test/fixedbugs/issue5755.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5755: exported data for inlining may miss
    // named types when used in string conversions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 28 21:29:13 UTC 2013
    - 291 bytes
    - Viewed (0)
Back to top