Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 475 for exportId (0.7 sec)

  1. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. hack/golangci-hints.yaml

          path-except: cmd/kubeadm
    
    linters:
      disable-all: false
      enable: # please keep this alphabetized
        - forbidigo
        - ginkgolinter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/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)
  5. pilot/pkg/model/push_context_test.go

    					Namespace: "foo",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    			expect: true,
    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with private",
    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

                       "separated by ','"),
        llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<std::string> saved_model_exported_names(
        "tf-savedmodel-exported-names",
        llvm::cl::desc("Names to export from SavedModel, separated by ','. Empty "
                       "(the default) means export all."),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> output_file_name("o", llvm::cl::desc("<output file>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    import f2 "fmt"
    
    // reflect.flag must not be visible in this package
    type flag int
    type _ reflect.flag /* ERROR "name flag not exported by package reflect" */
    
    // imported package name may conflict with local objects
    type reflect /* ERROR "reflect already declared" */ int
    
    // dot-imported exported objects may conflict with local objects
    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h.inc"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Returns the list of exported names for `op`.
    // An empty list means `op` is not exported.
    SmallVector<StringRef, 2> GetExportedNames(Operation *op);
    
    // Returns true if `op` is exported.
    bool IsExported(Operation *op);
    
    // Returns true if `module` has tf_saved_model linkage semantics.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        @Override
        public int hashCode() {
            return Objects.hashCode(exported, accessRules, excludes, includes, getNativeLibraryLocation(), output, path);
        }
    
        @Override
        public String toString() {
            return "SourceFolder{path='" + path + "', dir='" + dir + "', nativeLibraryLocation='" + getNativeLibraryLocation() + "', exported=" + exported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/destination_rule.go

    				mergedRule.TrafficPolicy = rule.TrafficPolicy
    			}
    			// If there is no exportTo in the existing rule and
    			// the incoming rule has an explicit exportTo, use the
    			// one from the incoming rule.
    			if p.exportTo[resolvedHost].IsEmpty() && !exportToSet.IsEmpty() {
    				p.exportTo[resolvedHost] = exportToSet
    			}
    		}
    		if addRuleToProcessedDestRules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top