Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 475 for exportId (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // Copyright 2015 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.
    
    // Package internal contains non-exported functionality that are used by
    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    	// nolint: govet
    	out := *s
    
    	if s.Labels != nil {
    		out.Labels = make(map[string]string, len(s.Labels))
    		for k, v := range s.Labels {
    			out.Labels[k] = v
    		}
    	}
    
    	if s.ExportTo != nil {
    		out.ExportTo = s.ExportTo.Copy()
    	}
    
    	if s.LabelSelectors != nil {
    		out.LabelSelectors = make(map[string]string, len(s.LabelSelectors))
    		for k, v := range s.LabelSelectors {
    			out.LabelSelectors[k] = v
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/internal/abi/compiletype.go

    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    // UncommonSize returns sizeof(UncommonType).  This currently does not depend on ptrSize.
    // This exported function is in an internal package, so it may change to depend on ptrSize in the future.
    func UncommonSize() uint64 { return 4 + 2 + 2 + 4 + 4 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

                     const TF::ResourceAnalyzer& resource_analyzer) {
      // Global tensor is already known to be immutable.
      if (!global_tensor.getIsMutable()) {
        return false;
      }
      // An exported global tensor that is not already known to be immutable might
      // be externally mutated.
      if (IsExported(global_tensor)) {
        return false;
      }
    
      // A global tensor is immutable if the resource analyzer deems it so.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/metrics.h

    // the saved_model_checksum of the SM's fingerprint when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWriteFingerprint();
    
    // Returns "/tensorflow/core/saved_model/write/path" cell, which contains
    // the saved_model_path of the SM when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWritePath();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/monitoring.go

    	pilotVersion.With(versionTag.Value(version.Info.String())).Record(1)
    }
    
    func addMonitor(mux *http.ServeMux) error {
    	exporter, err := monitoring.RegisterPrometheusExporter(nil, nil)
    	if err != nil {
    		return fmt.Errorf("could not set up prometheus exporter: %v", err)
    	}
    	mux.Handle(metricsPath, metricsMiddleware(exporter))
    
    	mux.HandleFunc(versionPath, func(out http.ResponseWriter, req *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/encoding/json/encode_test.go

    		// themselves are exported.
    		CaseName: Name("EmbeddedStruct"),
    		makeInput: func() any {
    			type (
    				s1 struct{ x, X int }
    				S2 struct{ y, Y int }
    				S  struct {
    					s1
    					S2
    				}
    			)
    			return S{s1{1, 2}, S2{3, 4}}
    		},
    		want: `{"X":2,"Y":4}`,
    	}, {
    		// Exported fields of pointers to embedded structs should have their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. ci/official/utilities/setup.sh

    # --show-toplevel", but that wouldn't work for non-git repos (like if someone
    # downloaded TF as a zip archive).
    export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../)
    cd "$TFCI_GIT_DIR"
    
    # "TFCI" may optionally be set to the name of an env-type file with TFCI
    # variables in it, OR may be left empty if the user has already exported the
    # relevant variables in their environment. Because of 'set -o allexport' above
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter.go

    						err = errors.New(string(ee.Stderr))
    					}
    					return
    				}
    
    				exports := strings.Split(string(bytes.TrimSpace(output)), "\n")
    				if len(exports) != 1 {
    					err = fmt.Errorf("go list reported %d exports; expected 1", len(exports))
    					return
    				}
    
    				exportPath = exports[0]
    			})
    
    			return exportPath, err
    		})
    	}
    
    	return f.(func() (string, error))()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		return
    	}
    
    	configs := []types.NamespacedName{}
    	pureHTTP := true
    	for _, modelSvc := range esc.c.servicesForNamespacedName(config.NamespacedName(svc)) {
    		// skip push if it is not exported
    		if modelSvc.Attributes.ExportTo.Contains(visibility.None) {
    			continue
    		}
    
    		configs = append(configs, types.NamespacedName{Name: modelSvc.Hostname.String(), Namespace: svc.Namespace})
    
    		for _, p := range modelSvc.Ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top