Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for vols (0.04 sec)

  1. cmd/kube-apiserver/app/server.go

    	options.AddCustomGlobalFlags(namedFlagSets.FlagSet("generic"))
    	for _, f := range namedFlagSets.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, namedFlagSets, cols)
    
    	return cmd
    }
    
    // Run runs the specified APIServer.  This should never exit.
    func Run(ctx context.Context, opts options.CompletedOptions) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        } else if (auto attr = mlir::dyn_cast<mlir::ArrayAttr>(a)) {
          std::vector<int64_t> vals;
          for (mlir::Attribute a : attr.getValue()) {
            auto i = mlir::dyn_cast<mlir::IntegerAttr>(a);
            if (!i)
              return errors::Unimplemented(
                  "Expected 64-bit integer array attributes!");
            vals.push_back(i.getInt());
          }
          mlir::OpBuilder builder(attr.getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/c/kernels.cc

      }                                                                            \
      void TF_OpKernelConstruction_GetAttr##func##List(                            \
          TF_OpKernelConstruction* ctx, const char* attr_name, c_type* vals,       \
          int max_vals, TF_Status* status) {                                       \
        TF_SetStatus(status, TF_OK, "");                                           \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    			driverName: "testdr",
    			volName:    "test-vol-name",
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "testdr", "test-vol-name"), false),
    		},
    		{
    			name:       "mixchars all",
    			driverName: "test-driver",
    			volName:    "test.vol.name",
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "test-driver", "test.vol.name"), false),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    [cols="~,~,~,~,~"]
    |===
    |*#* |*Using:* |*Type:* |*The Plugin is:* |*Recommended?*
    
    |1
    |Kotlin DSL
    |Script plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
          tensorflow::GetTypeFromTFTensorShape({size}, builder->getIntegerType(64));
      return DenseIntElementsAttr::get(ty, vals);
    }
    
    // Return an Attr representation of the value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	for _, s := range p.Sample {
    		for key, vals := range s.Label {
    			for _, val := range vals {
    				valueMap, ok := tagMap[key]
    				if !ok {
    					valueMap = make(map[string]int64)
    					tagMap[key] = valueMap
    				}
    				valueMap[val] += o.SampleValue(s.Value)
    			}
    		}
    		for key, vals := range s.NumLabel {
    			unit := o.NumLabelUnits[key]
    			for _, nval := range vals {
    				val := formatTag(nval, unit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/server.go

    	fs := cmd.Flags()
    	for _, f := range nfs.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, *nfs, cols)
    
    	if err := cmd.MarkFlagFilename("config", "yaml", "yml", "json"); err != nil {
    		klog.Background().Error(err, "Failed to mark flag filename")
    	}
    
    	return cmd
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/volume/emptydir/empty_dir_test.go

    	if err != nil {
    		t.Fatalf("can't make a temp dir: %v", err)
    	}
    	defer os.RemoveAll(basePath)
    
    	plug := makePluginUnderTest(t, "kubernetes.io/empty-dir", basePath)
    
    	spec := &v1.Volume{
    		Name: "vol1",
    	}
    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    	mounter, err := plug.NewMounter(volume.NewSpecFromVolume(spec), pod, volume.VolumeOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    == Available mechanisms
    
    Gradle provides multiple mechanisms for configuring the behavior of Gradle itself and specific projects:
    
    [cols="~,~,~"]
    |===
    |Mechanism |Information |Example
    
    |<<command_line_interface#command_line_interface,Command line interface>>
    |Flags that configure build behavior and Gradle features
    |`--rerun`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top