Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for flagstr (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    		),
    		APIEnablement: genericoptions.NewAPIEnablementOptions(),
    
    		StdOut: out,
    		StdErr: errOut,
    	}
    
    	return o
    }
    
    // AddFlags adds the apiextensions-apiserver flags to the flagset.
    func (o CustomResourceDefinitionsServerOptions) AddFlags(fs *pflag.FlagSet) {
    	o.ServerRunOptions.AddUniversalFlags(fs)
    	o.RecommendedOptions.AddFlags(fs)
    	o.APIEnablement.AddFlags(fs)
    }
    
    // Validate validates the apiextensions-apiserver options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    
    private
    fun applyConventionMappingTo(taskType: Class<*>, relevantFields: List<RelevantField>): List<RelevantField> =
        conventionAwareFieldsOf(taskType).toMap().let { flags ->
            relevantFields.map { relevantField ->
                relevantField.run {
                    flags[field]?.let { flagField ->
                        copy(isExplicitValueField = flagField.apply(Field::makeAccessible))
                    }
                } ?: relevantField
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/kubemark/hollow_kubelet.go

    	allPlugins = append(allPlugins, local.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
    	return allPlugins
    }
    
    func NewHollowKubelet(
    	flags *options.KubeletFlags,
    	config *kubeletconfig.KubeletConfiguration,
    	client *clientset.Clientset,
    	heartbeatClient *clientset.Clientset,
    	cadvisorInterface cadvisor.Interface,
    	imageService internalapi.ImageManagerService,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. 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)
Back to top