Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 700 for clip (0.04 sec)

  1. cmd/kube-scheduler/scheduler.go

    import (
    	"os"
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register" // for JSON log format registration
    	_ "k8s.io/component-base/metrics/prometheus/clientgo"
    	_ "k8s.io/component-base/metrics/prometheus/version" // for version metric registration
    	"k8s.io/kubernetes/cmd/kube-scheduler/app"
    )
    
    func main() {
    	command := app.NewSchedulerCommand()
    	code := cli.Run(command)
    	os.Exit(code)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 30 11:46:49 UTC 2021
    - 998 bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.wrapper;
    
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.cli.SystemPropertiesCommandLineConverter;
    
    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.nio.file.Paths;
    import java.util.HashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/IntegerBuildOptionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildoption
    
    import org.gradle.cli.CommandLineOption
    import org.gradle.cli.CommandLineParser
    import org.gradle.cli.ParsedCommandLine
    import spock.lang.Specification
    
    import static org.gradle.internal.buildoption.BuildOptionFixture.DESCRIPTION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options.go

    	o.initFlags()
    
    	return o
    }
    
    // ApplyDeprecated obtains the deprecated CLI args and set them to `o.ComponentConfig` if specified.
    func (o *Options) ApplyDeprecated() {
    	if o.Flags == nil {
    		return
    	}
    	// Obtain deprecated CLI args. Set them to cfg if specified in command line.
    	deprecated := o.Flags.FlagSet("deprecated")
    	if deprecated.Changed("profiling") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/AbstractStreamingHasher.java

        Java8Compatibility.limit(bb, chunkSize + 7); // get ready to pad with longs
        while (bb.position() < chunkSize) {
          bb.putLong(0);
        }
        Java8Compatibility.limit(bb, chunkSize);
        Java8Compatibility.flip(bb);
        process(bb);
      }
    
      @Override
      @CanIgnoreReturnValue
      public final Hasher putBytes(byte[] bytes, int off, int len) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables.go

    	// and kubelet (skippable) traffic would have the same srcip once they got to the pod, and would be indistinguishable.
    
    	// CLI: -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp --dport <PROBEPORT> -j ACCEPT
    	// CLI: -t mangle -A ISTIO_PRERT -s fd16:9254:7127:1337:ffff:ffff:ffff:ffff -p tcp -m tcp --dport <PROBEPORT> -j ACCEPT
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

    import org.jetbrains.kotlin.analysis.project.structure.builder.*
    import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreProjectEnvironment
    import org.jetbrains.kotlin.cli.jvm.config.javaSourceRoots
    import org.jetbrains.kotlin.cli.jvm.config.jvmClasspathRoots
    import org.jetbrains.kotlin.cli.jvm.config.jvmModularRoots
    import org.jetbrains.kotlin.config.CommonConfigurationKeys
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/WelcomeMessageActionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.cli
    
    import com.google.common.base.Function
    import org.gradle.api.Action
    import org.gradle.api.launcher.cli.WelcomeMessageConfiguration
    import org.gradle.api.launcher.cli.WelcomeMessageDisplayMode
    import org.gradle.internal.logging.ToStringLogger
    import org.gradle.launcher.bootstrap.ExecutionListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. cmd/kube-proxy/proxy.go

    import (
    	"os"
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register"
    	_ "k8s.io/component-base/metrics/prometheus/clientgo" // for client metric registration
    	_ "k8s.io/component-base/metrics/prometheus/version"  // for version metric registration
    	"k8s.io/kubernetes/cmd/kube-proxy/app"
    )
    
    func main() {
    	command := app.NewProxyCommand()
    	code := cli.Run(command)
    	os.Exit(code)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 989 bytes
    - Viewed (0)
  10. common/scripts/tracing.sh

    }
    
    # Usage: tracing::run <span name> [command ...]
    function tracing::run() {
      # If not running in a prow job or otel-cli is not available (e.g. build system without otel-cli) just run the command
      if [ -z "${JOB_NAME:-}" ] || ! command -v otel-cli &> /dev/null
      then
        "${@:2}"
        return "$?"
      fi
    
      # Disable execution tracing to avoid noise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top