Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for conf1 (0.04 sec)

  1. cni/pkg/plugin/plugin.go

    	}
    	return pluginResponse(conf)
    }
    
    func doAddRun(args *skel.CmdArgs, conf *Config, kClient kubernetes.Interface, rulesMgr InterceptRuleMgr) error {
    	setupLogging(conf)
    
    	var loggedPrevResult any
    	if conf.PrevResult == nil {
    		loggedPrevResult = "none"
    	} else {
    		loggedPrevResult = conf.PrevResult
    	}
    	log.WithLabels("if", args.IfName).Debugf("istio-cni CmdAdd config: %+v", conf)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

      if (!module) return failure();
    
      tensorflow::GraphExportConfig confs;
      confs.export_entry_func_to_flib = export_entry_func_to_flib;
      confs.export_original_tf_func_name = export_original_tf_func_name;
    
      absl::StatusOr<std::unique_ptr<tensorflow::GraphDef>> graphdef_or(
          tensorflow::tf2xla::v2::ConvertMlirToGraphdef(module, confs));
      if (!graphdef_or.status().ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    					return true, nil, apierrors.NewServerTimeout(
    						schema.GroupResource{}, "create", 0)
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "super-admin.conf: admin.conf cannot create CRB, create CRB with super-admin.conf, return client from admin.conf",
    			setupAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. docker-buildx.sh

    #!/bin/bash
    
    sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    
    remote=$(git remote get-url upstream)
    if test "$remote" != "******@****.***:minio/minio.git"; then
    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // EnsureAdminClusterRoleBinding constructs a client from admin.conf and optionally
    // constructs a client from super-admin.conf if the file exists. It then proceeds
    // to pass the clients to EnsureAdminClusterRoleBindingImpl. The function returns a
    // usable client from admin.conf with RBAC properly constructed or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. internal/kms/config.go

    				return nil, err
    			}
    			certificate.Watch(ctx, 15*time.Minute, syscall.SIGHUP)
    
    			conf.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
    				cert := certificate.Get()
    				return &cert, nil
    			}
    		}
    
    		var caDir string
    		if opts != nil {
    			caDir = opts.CADir
    		}
    		conf.RootCAs, err = certs.GetRootCAs(env.Get(EnvKESServerCA, caDir))
    		if err != nil {
    			return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. buildscripts/upgrade-tests/compose.yml

        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
        image: nginx:1.19.2-alpine
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    ## By default this config uses default local driver,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      FunctionLibraryDefinition flib_def(OpRegistry::Global(),
                                         FunctionDefLibrary());
      GraphExportConfig confs;
      auto graph = std::make_unique<Graph>(flib_def);
      absl::flat_hash_set<Node*> control_ret_nodes;
      Status status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      $search_list = (Get-DnsClient).ConnectionSpecificSuffixSearchList
      $conf = ""
      ForEach ($ip in $server_ips)  {
        $conf = $conf + "nameserver $ip`r`n"
      }
      $conf = $conf + "search $search_list"
      # Do not put hostdns.conf into the CNI config directory so as to
      # avoid the container runtime treating it as CNI config.
      $hostdns_conf = "${env:CNI_DIR}\hostdns.conf"
      New-Item -Force -ItemType file ${hostdns_conf} | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      CLOUD_CONFIG_VOLUME=""
      CLOUD_CONFIG_MOUNT=""
      if [[ -f /etc/gce.conf ]]; then
        CLOUD_CONFIG_OPT="--cloud-config=/etc/gce.conf"
        CLOUD_CONFIG_VOLUME="{\"name\": \"cloudconfigmount\",\"hostPath\": {\"path\": \"/etc/gce.conf\", \"type\": \"FileOrCreate\"}},"
        CLOUD_CONFIG_MOUNT="{\"name\": \"cloudconfigmount\",\"mountPath\": \"/etc/gce.conf\", \"readOnly\": true},"
      fi
      DOCKER_REGISTRY="registry.k8s.io"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top