Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 290 for registry_ (0.17 sec)

  1. cluster/log-dump/log-dump.sh

    # Assumes:
    #   NODE_NAMES
    # Sets:
    #   NON_LOGEXPORTED_NODES
    function find_non_logexported_nodes() {
      local file="${gcs_artifacts_dir}/logexported-nodes-registry"
      echo "Listing marker files ($file) for successful nodes..."
      succeeded_nodes=$(gsutil ls "${file}") || return 1
      echo 'Successfully listed marker files for successful nodes'
      NON_LOGEXPORTED_NODES=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/apiserver/pkg/cel/common"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/registry/generic"
    	apiserverstorage "k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/names"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/util/jsonpath"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/configcontroller.go

    			} else {
    				log.Warnf("Not implemented, ignore: %v", configSource.Address)
    				// TODO: handle k8s:// scheme for remote cluster. Use same mechanism as service registry,
    				// using the cluster name as key to match a secret.
    			}
    		default:
    			log.Warnf("Ignoring unsupported config source: %v", configSource.Address)
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/flags.go

    	flag.StringVar(&settingsFromCommandLine.Image.Hub, "istio.test.hub", settingsFromCommandLine.Image.Hub,
    		"Container registry hub to use")
    	flag.StringVar(&settingsFromCommandLine.Image.Tag, "istio.test.tag", settingsFromCommandLine.Image.Tag,
    		"Common Container tag to use when deploying container images")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    		"If this is set to true, one Istiod will control remote clusters including CA.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

              PyExc_ValueError,
              "Failed to parse opdefs at index %d of custom op defs argument: %s",
              i, tf_opdefs);
          return nullptr;
        }
    
        // Register extra opdefs to TensorFlow global op registry.
        tensorflow::OpRegistry::Global()->Register(
            [opdef](
                tensorflow::OpRegistrationData* op_reg_data) -> tensorflow::Status {
              *op_reg_data = tensorflow::OpRegistrationData(opdef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.singleUrlResolverCode
    
    class JavaToolchainDownloadSpiIntegrationTest extends AbstractIntegrationSpec {
    
        def "can inject custom toolchain registry via settings plugin"() {
            settingsFile << """
                ${applyToolchainResolverPlugin("CustomToolchainResolver", customToolchainResolverCode())}
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. pkg/registry/core/service/strategy.go

    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/registry/generic"
    	pkgstorage "k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/names"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    		}
    		if jwtAuthn == nil {
    			return nil, fmt.Errorf("JWT authenticator is nil")
    		}
    		authenticators = append(authenticators, jwtAuthn)
    	}
    	// The k8s JWT authenticator requires the multicluster registry to be initialized,
    	// so we build it later.
    	if s.kubeClient != nil {
    		authenticators = append(authenticators,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

    namespace mlir {
    namespace TFDevice {
    namespace {
    
    struct EmbeddingSequencingPass
        : public ::impl::EmbeddingSequencingPassBase<EmbeddingSequencingPass> {
      void getDependentDialects(mlir::DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect>();
      }
    
      void runOnOperation() override;
    };
    
    template <typename InputContainer>
    std::vector<Type> GetValueTypes(const InputContainer& input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top