Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 364 for Unexport (0.21 sec)

  1. build/root/Makefile

    .EXPORT_ALL_VARIABLES:
    OUT_DIR ?= _output
    BIN_DIR := $(OUT_DIR)/bin
    
    ifdef KUBE_GOFLAGS
    $(info KUBE_GOFLAGS is now deprecated. Please use GOFLAGS instead.)
    ifndef GOFLAGS
    GOFLAGS := $(KUBE_GOFLAGS)
    unexport KUBE_GOFLAGS
    else
    $(error Both KUBE_GOFLAGS and GOFLAGS are set. Please use just GOFLAGS)
    endif
    endif
    
    # This controls the verbosity of the build.  Higher numbers mean more output.
    KUBE_VERBOSE ?= 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	for _, export := range exports {
    		uExport := export.(*unstructured.Unstructured)
    		es := exportedService{
    			namespacedName:  config.NamespacedName(uExport),
    			discoverability: make(map[host.Name]string),
    		}
    
    		// Generate the map of all hosts for this service to their discoverability policies.
    		clusterLocalHost := kubesr.ServiceHostname(uExport.GetName(), uExport.GetNamespace(), ec.opts.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saver.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Suffix string for the module export step. Used for debugging.
    constexpr absl::string_view kExportStepSuffix = "_export";
    
    // Options when running passes for exporting an MLIR ModuleOp.
    struct ExportOptions {
      // If set to `true`, it runs `DuplicateShapeDeterminingConstantsPass` before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    // import of Q, and it will learn everything about the API of package P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 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.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. cluster/gce/config-common.sh

    export WINDOWS_NODE_DIR="${WINDOWS_K8S_DIR}\node\bin"
    # Directory where Kubernetes log files will be stored on Windows nodes.
    export WINDOWS_LOGS_DIR="${WINDOWS_K8S_DIR}\logs"
    # Directory where CNI binaries will be stored on Windows nodes.
    export WINDOWS_CNI_DIR="${WINDOWS_K8S_DIR}\cni"
    # Directory where CNI config files will be stored on Windows nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. cmd/endpoint-ellipses_test.go

    	}{
    		// Invalid inputs.
    		{
    			[]string{"data{1...17}/export{1...52}"},
    			[]uint64{14144},
    			nil,
    			false,
    		},
    		// Valid inputs.
    		{
    			[]string{"data{1...3}"},
    			[]uint64{3},
    			[][]uint64{{3}},
    			true,
    		},
    		{
    			[]string{"data/controller1/export{1...2}, data/controller2/export{1...4}, data/controller3/export{1...8}"},
    			[]uint64{2, 4, 8},
    			[][]uint64{{2}, {2, 2}, {2, 2, 2, 2}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. hack/jenkins/test-dockerized.sh

    # Disable coverage report
    export KUBE_COVER="n"
    # Set artifacts directory
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Save the verbose stdout as well.
    export KUBE_KEEP_VERBOSE_TEST_OUTPUT=y
    export KUBE_INTEGRATION_TEST_MAX_CONCURRENCY=4
    export LOG_LEVEL=4
    
    cd "${GOPATH}/src/k8s.io/kubernetes"
    
    ./hack/install-etcd.sh
    
    make test-cmd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. prow/integ-suite-kind.sh

    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    export KIND_REGISTRY="localhost:${KIND_REGISTRY_PORT}"
    
    export HUB=${HUB:-"istio-testing"}
    export TAG="${TAG:-"istio-testing"}"
    export VARIANT
    
    # If we're not intending to pull from an actual remote registry, use the local kind registry
    if [[ -z "${SKIP_BUILD:-}" ]]; then
      HUB="${KIND_REGISTRY}"
      export HUB
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    IMAGE_FAMILY=${KUBE_IMAGE_FAMILY:-cos-109-lts}
    export MASTER_IMAGE=${KUBE_GCE_MASTER_IMAGE:-}
    export MASTER_IMAGE_FAMILY=${KUBE_GCE_MASTER_IMAGE_FAMILY:-${IMAGE_FAMILY}}
    export MASTER_IMAGE_PROJECT=${KUBE_GCE_MASTER_PROJECT:-cos-cloud}
    export NODE_IMAGE=${KUBE_GCE_NODE_IMAGE:-${GCI_VERSION}}
    export NODE_IMAGE_FAMILY=${KUBE_GCE_NODE_IMAGE_FAMILY:-${IMAGE_FAMILY}}
    export NODE_IMAGE_PROJECT=${KUBE_GCE_NODE_PROJECT:-cos-cloud}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top