Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for flagstr (0.1 sec)

  1. configure.py

        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    def set_cc_opt_flags(environ_cp):
      """Set up architecture-dependent optimization flags.
    
      Also append CC optimization flags to bazel.rc..
    
      Args:
        environ_cp: copy of the os.environ.
      """
      if is_ppc64le():
        # gcc on ppc64le does not support -march, use mcpu instead
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: only enable the klog flags that are still supported for kubeadm, rather than hiding the unwanted flags. This means that the previously unrecommended hidden flags about klog (including `--alsologtostderr`, `--log-backtrace-at`, `--log-dir`, `--logtostderr`, `--log-file`, `--log-file-max-size`, `--one-output`, `--skip-log-headers`, `--stderrthreshold`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

              pass_ids[std::distance(pass_names.begin(), iter)] = pass.get();
              iter++;
            }
          }
        }
      }
      return pass_ids;
    }
    
    // TODO(prakalps): Move these flags and pass registration to a header file so
    // that it is clear that this is a generic pass library and command line is used
    // for testing only.
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Configures etcd related flags of kube-apiserver.
    function configure-etcd-params {
      local -n params_ref=$1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		if len(b) > xioutil.DirectioAlignSize {
    			r := bytes.NewReader(b)
    			return s.writeAllDirect(ctx, filePath, r.Size(), r, flags, skipParent)
    		}
    		w, err = s.openFileSync(filePath, flags, skipParent)
    	} else {
    		w, err = s.openFile(filePath, flags, skipParent)
    	}
    	if err != nil {
    		return err
    	}
    
    	n, err := w.Write(b)
    	if err != nil {
    		w.Close()
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

    function prepare-node-upgrade() {
      echo "== Preparing node upgrade (to ${KUBE_VERSION}). ==" >&2
      setup-base-image
    
      SANITIZED_VERSION="${KUBE_VERSION//[\.\+]/-}"
    
      # TODO(zmerlynn): Refactor setting scope flags.
      local scope_flags=
      if [ -n "${NODE_SCOPES}" ]; then
        scope_flags="--scopes ${NODE_SCOPES}"
      else
        # shellcheck disable=SC2034 # 'scope_flags' is used by upstream
        scope_flags="--no-scopes"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin.go

    // is passed in on stdin. Your plugin may wish to expose its functionality via
    // runtime args, see CONVENTIONS.md in the CNI spec.
    type Config struct {
    	types.NetConf
    
    	// Add plugin-specific flags here
    	PluginLogLevel  string     `json:"plugin_log_level"`
    	LogUDSAddress   string     `json:"log_uds_address"`
    	CNIEventAddress string     `json:"cni_event_address"`
    	AmbientEnabled  bool       `json:"ambient_enabled"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

            # Stackdriver Istio configurations.
            # This is handled by opentelemetry above
            # 'x-b3-traceid',
            # 'x-b3-spanid',
            # 'x-b3-parentspanid',
            # 'x-b3-sampled',
            # 'x-b3-flags',
    
            # SkyWalking trace headers.
            'sw8',
    
            # Application-specific headers to forward.
            'user-agent',
    
            # Context and session specific headers
            'cookie',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      }
      Status pass_status = pass->Run(options, *module_ref);
    
      bool is_module_updated = !mlir::OperationEquivalence::isEquivalentTo(
          module_ref_clone, *module_ref,
          mlir::OperationEquivalence::Flags::IgnoreLocations);
      // Destroy this cloned op to avoid memory leaks.
      module_ref_clone->destroy();
    
      if (!pass_status.ok()) {
        if (pass_state == MlirOptimizationPassState::Enabled) return pass_status;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/os/exec.go

    	// as unavailable after Release or Wait to avoid extending this delay.
    	// This is achieved by setting either processStatus flag when the
    	// Process' persistent reference is dropped. The only difference in the
    	// flags is the reason the handle is unavailable, which affects the
    	// errors returned by concurrent calls.
    	state atomic.Uint64
    
    	// Used only in modePID.
    	sigMu sync.RWMutex // avoid race between wait and signal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top