Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for CFlags (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      debug_options.deterministic_cluster_names =
          flags->tf_xla_deterministic_cluster_names;
      debug_options.max_cluster_size = flags->tf_xla_max_cluster_size;
      debug_options.min_cluster_size = flags->tf_xla_min_cluster_size;
      debug_options.fuel = GetPointerToFuel(flags->tf_xla_clustering_fuel);
      debug_options.dump_graphs = flags->tf_xla_clustering_debug;
    
      return MarkForCompilation(options, debug_options);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    		return v > 0
    	}
    	// On ID mismatch
    	if v := bytes.Compare(x.VersionID[:], o.VersionID[:]); v != 0 {
    		return v > 0
    	}
    	// Flags
    	if x.Flags != o.Flags {
    		return x.Flags > o.Flags
    	}
    	return false
    }
    
    func (j xlMetaV2Version) getDataDir() string {
    	if j.Valid() {
    		switch j.Type {
    		case LegacyType:
    			return j.ObjectV1.DataDir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    	if fop == OpARM64InvertFlags {
    		return -ccARM64Eval(op, flags.Args[0])
    	}
    	if fop != OpARM64FlagConstant {
    		return 0
    	}
    	fc := flagConstant(flags.AuxInt)
    	b2i := func(b bool) int {
    		if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

              $flags+=" --config.custom-plugin-monitor={0}" -f ($custom_plugin_monitors -join ",")
            }
          }
          else {
            $flags = ${kube_env}['NODE_PROBLEM_DETECTOR_CUSTOM_FLAGS']
          }
          $kubernetes_master_name = ${kube_env}['KUBERNETES_MASTER_NAME']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. .bazelrc

    # END TF TEST SUITE OPTIONS
    
    # START CROSS-COMPILE CONFIGS
    # Set execution platform to Linux x86
    # Note: Lot of the "host_" flags such as "host_cpu" and "host_crosstool_top"
    # flags seem to be actually used to specify the execution platform details. It
    # seems it is this way because these flags are old and predate the distinction
    # between host and execution platform.
    build:cross_compile_base --host_cpu=k8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    	s, _ := NewKubeControllerManagerOptions()
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fs.Parse(args)
    	// Sort GCIgnoredResources because it's built from a map, which means the
    	// insertion order is random.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	return err
    }
    
    // buildArgs is in internal helper for goTest that constructs the elements of
    // the "go test" command line. build is the flags for building the test. run is
    // the flags for running the test. pkgs is the list of packages to build and
    // run. testFlags is the list of flags to pass to the test package.
    //
    // The caller must call setupCmd on the resulting exec.Cmd to set its directory
    // and environment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      return true;
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    // Due to the usages of flags for this manual test, we need a special `main` to
    // ensure our flags are parsed properly as `testing::InitGoogleTest` silently
    // ignores other flags. Furthermore, we need this to ensure that the DSO is
    // loaded exactly once, if provided.
    GTEST_API_ int main(int argc, char** argv) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	// Bitmaps and other side structures used to store data used to store
    	// symbol flags/attributes; these are to be accessed via the
    	// corresponding loader "AttrXXX" and "SetAttrXXX" methods. Please
    	// visit the comments on these methods for more details on the
    	// semantics / interpretation of the specific flags or attribute.
    	attrReachable        Bitmap // reachable symbols, indexed by global index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top