Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,213 for flagstr (0.13 sec)

  1. cmd/kubeadm/app/cmd/upgrade/plan.go

    			}
    
    			if err := validation.ValidateMixedArguments(cmd.Flags()); err != nil {
    				return err
    			}
    			return runPlan(cmd.Flags(), flags, args, printer)
    		},
    	}
    
    	outputFlags.AddFlags(cmd)
    
    	// Register the common flags for apply and plan
    	addApplyPlanFlags(cmd.Flags(), flags.applyPlanFlags)
    	return cmd
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    internal
    fun newTypeParameterOf(
        flags: Flags = 0,
        name: String,
        id: Int = 0,
        variance: KmVariance,
        upperBound: KmType,
    ): KmTypeParameter {
        val kmTypeParameter = KmTypeParameter(flags, name, id, variance)
        kmTypeParameter.upperBounds += upperBound
        return kmTypeParameter
    }
    
    
    internal
    fun nullable(kmType: KmType): KmType = kmType.also { it.flags = flagsOf(Flag.Type.IS_NULLABLE) }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/processlog/processlog.go

    	return 1000*s.numFatals + 100*s.numErrors + 10*s.numWarnings
    }
    
    // Process processes logStr based on the supplied config and returns the processed log along with statistics on it.
    func Process(config *config.BugReportConfig, logStr string) (string, *Stats) {
    	if !config.TimeFilterApplied {
    		return logStr, getStats(config, logStr)
    	}
    	out := getTimeRange(logStr, config.StartTime, config.EndTime)
    	return out, getStats(config, out)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/globalflags_test.go

    )
    
    func TestAddCustomGlobalFlags(t *testing.T) {
    	namedFlagSets := &cliflag.NamedFlagSets{}
    
    	// Note that we will register all flags (including klog flags) into the same
    	// flag set. This allows us to test against all global flags from
    	// flags.CommandLine.
    	nfs := namedFlagSets.FlagSet("test")
    	nfs.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	globalflag.AddGlobalFlags(nfs, "test-cmd")
    	AddCustomGlobalFlags(nfs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 30 11:46:49 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/common.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    // enforceRequirements verifies that it's okay to upgrade and then returns the variables needed for the rest of the procedure
    func enforceRequirements(flagSet *pflag.FlagSet, flags *applyPlanFlags, args []string, dryRun bool, upgradeApply bool, printer output.Printer) (clientset.Interface, upgrade.VersionGetter, *kubeadmapi.InitConfiguration, *kubeadmapi.UpgradeConfiguration, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/cmp.bash

    # old.txt and new.txt.
    
    FLAGS1="-newexport=0"
    FLAGS2="-newexport=1"
    
    echo
    echo
    echo "1a) clean build using $FLAGS1"
    (export GO_GCFLAGS="$FLAGS1"; sh make.bash)
    
    echo
    echo
    echo "1b) save go build output for all packages"
    for pkg in `go list std`; do
    	echo $pkg
    	DIR=$GOROOT/src/$pkg
    	go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
    done
    
    echo
    echo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        /**
         * @return the flags
         */
        public final byte getFlags () {
            return this.flags;
        }
    
    
        /**
         * @param flags
         *            the flags to set
         */
        public final void setFlags ( byte flags ) {
            this.flags = flags;
        }
    
    
        /**
         * @return the flags2
         */
        public final int getFlags2 () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/server.go

    				}
    			}
    			return nil
    		},
    	}
    
    	nfs := opts.Flags
    	verflag.AddFlags(nfs.FlagSet("global"))
    	globalflag.AddGlobalFlags(nfs.FlagSet("global"), cmd.Name(), logs.SkipLoggingConfigurationFlags())
    	fs := cmd.Flags()
    	for _, f := range nfs.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    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. src/cmd/doc/main.go

    	unexported = false
    	matchCase = false
    	flagSet.StringVar(&chdir, "C", "", "change to `dir` before running command")
    	flagSet.BoolVar(&unexported, "u", false, "show unexported symbols as well as exported")
    	flagSet.BoolVar(&matchCase, "c", false, "symbol matching honors case (paths not affected)")
    	flagSet.BoolVar(&showAll, "all", false, "show all documentation for package")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/daemonsetcontroller.go

    type DaemonSetControllerOptions struct {
    	*daemonconfig.DaemonSetControllerConfiguration
    }
    
    // AddFlags adds flags related to DaemonSetController for controller manager to the specified FlagSet.
    func (o *DaemonSetControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    }
    
    // ApplyTo fills up DaemonSetController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top