Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for flagstr (0.23 sec)

  1. internal/grid/muxclient.go

    	}
    	m.init = true
    	m.singleResp = true
    	msg := message{
    		Op:         OpRequest,
    		MuxID:      m.MuxID,
    		Handler:    h,
    		Flags:      m.BaseFlags | FlagEOF,
    		Payload:    req,
    		DeadlineMS: uint32(m.deadline.Milliseconds()),
    	}
    	if m.subroute != nil {
    		msg.Flags |= FlagSubroute
    	}
    	ch := make(chan Response, 1)
    	m.respMu.Lock()
    	if m.closed {
    		m.respMu.Unlock()
    		return nil, ErrDisconnected
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options_test.go

    )
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.PanicOnError)
    	s := NewOptions()
    	var fss cliflag.NamedFlagSets
    	s.AddFlags(&fss)
    	for _, f := range fss.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	args := []string{
    		"--enable-admission-plugins=AlwaysDeny",
    		"--admission-control-config-file=/admission-control-config",
    		"--advertise-address=192.168.10.10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>directInvocationOnly</name>
              <version>2.0.0+</version>
              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    	netutils "k8s.io/utils/net"
    )
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.PanicOnError)
    	s := NewServerRunOptions()
    	for _, f := range s.Flags().FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	args := []string{
    		"--enable-admission-plugins=AlwaysDeny",
    		"--admission-control-config-file=/admission-control-config",
    		"--advertise-address=192.168.10.10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    	}
    	return phase
    }
    
    func getCertPhaseFlags(name string) []string {
    	flags := []string{
    		options.CertificatesDir,
    		options.CfgPath,
    		options.KubernetesVersion,
    		options.DryRun,
    	}
    	if name == "all" || name == "apiserver" {
    		flags = append(flags,
    			options.APIServerAdvertiseAddress,
    			options.ControlPlaneEndpoint,
    			options.APIServerCertSANs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. internal/grid/connection.go

    // queueMsg queues a message, with an optional payload.
    // sender should not reference msg.Payload
    func (c *Connection) queueMsg(msg message, payload sender) error {
    	// Add baseflags.
    	msg.Flags.Set(c.baseFlags)
    	// This cannot encode subroute.
    	msg.Flags.Clear(FlagSubroute)
    	if payload != nil {
    		if sz := payload.Msgsize(); cap(msg.Payload) < sz {
    			PutByteBuffer(msg.Payload)
    			msg.Payload = GetByteBufferCap(sz)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pkg/log/options.go

    	}
    
    	return s, level, nil
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. istioctl/cmd/root.go

    		Long: `Istio configuration command line utility for service operators to
    debug and diagnose their Istio mesh.
    `,
    	}
    
    	rootCmd.SetArgs(args)
    
    	flags := rootCmd.PersistentFlags()
    	rootOptions := cli.AddRootFlags(flags)
    
    	ctx := cli.NewCLIContext(rootOptions)
    
    	_ = rootCmd.RegisterFlagCompletionFunc(cli.FlagIstioNamespace, func(
    		cmd *cobra.Command, args []string, toComplete string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

          ConvertArg(model_flags_proto_txt_raw, &error);
      if (error) {
        PyErr_SetString(PyExc_ValueError, "Model flags are invalid.");
        return nullptr;
      }
      std::string toco_flags_proto_txt =
          ConvertArg(toco_flags_proto_txt_raw, &error);
      if (error) {
        PyErr_SetString(PyExc_ValueError, "Toco flags are invalid.");
        return nullptr;
      }
    
      // Use TOCO to produce new outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. 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)
Back to top