Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for safeargs (0.26 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

                // https://plugins.gradle.org/plugin/com.github.triplet.play
                (TRIPLET_PLAY_PLUGIN_ID): Versions.of('3.8.4'),
                // https://mvnrepository.com/artifact/androidx.navigation.safeargs/androidx.navigation.safeargs.gradle.plugin
                (SAFEARGS_PLUGIN_ID): Versions.of('2.6.0'),
                // https://mvnrepository.com/artifact/com.google.dagger/hilt-android-gradle-plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/common_test.go

    		}
    		if args[0] != expectedCommand {
    			t.Errorf("Wrong command called: got %v, expected %v", args[0], expectedCommand)
    		}
    		cmdArgs := args[1:]
    		if !sameArgs(cmdArgs, expectedArgs) {
    			t.Errorf("Wrong args for %s: got %v, expected %v", args[0], cmdArgs, expectedArgs)
    		}
    		return &exectesting.FakeCmd{
    			Argv:                 args,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    			}
    		}
    		for _, x := range validNext {
    			if arg == x {
    				if i+1 < len(list) && load.SafeArg(list[i+1]) {
    					i++
    					continue Args
    				}
    
    				// Permit -Wl,-framework -Wl,name.
    				if i+1 < len(list) &&
    					strings.HasPrefix(arg, "-Wl,") &&
    					strings.HasPrefix(list[i+1], "-Wl,") &&
    					load.SafeArg(list[i+1][4:]) &&
    					!strings.Contains(list[i+1][4:], ",") {
    					i++
    					continue Args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/revision_tag_test.go

    			baseArgs := []string{"tag"}
    			for _, tc := range tcs {
    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    					tagSetArgs := append(baseArgs, "set", tc.tag, "--revision", tc.revision, "--skip-confirmation", "--overwrite")
    					tagSetArgs = append(tagSetArgs, "--manifests", filepath.Join(env.IstioSrc, "manifests"))
    					tagRemoveArgs := append(baseArgs, "remove", tc.tag, "-y")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    }
    
    // safeArg reports whether arg is a "safe" command-line argument,
    // meaning that when it appears in a command-line, it probably
    // doesn't have some special meaning other than its own name.
    // This is copied from SafeArg in cmd/go/internal/load/pkg.go.
    func safeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. tools/docker-builder/main.go

    		return nil
    	}
    	log.Infof("Running make for %v: %v", arch, strings.Join(shortArgs, " "))
    	env := StandardEnv(args)
    	env = append(env, archToGoFlags(arch)...)
    	makeArgs := []string{"--no-print-directory"}
    	makeArgs = append(makeArgs, c...)
    	cmd := exec.Command("make", makeArgs...)
    	log.Infof("env: %v", archToGoFlags(arch))
    	cmd.Env = env
    	cmd.Stderr = os.Stderr
    	cmd.Stdout = os.Stdout
    	cmd.Dir = testenv.IstioSrc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.types.expressions.OperatorConventions
    import org.jetbrains.kotlin.types.typeUtil.contains
    import org.jetbrains.kotlin.util.OperatorNameConventions
    import org.jetbrains.kotlin.utils.addToStdlib.safeAs
    import org.jetbrains.kotlin.utils.checkWithAttachment
    
    internal class KaFe10Resolver(
        override val analysisSession: KaFe10Session,
    ) : KaAbstractResolver(), KaFe10SessionComponent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/syscall/js/js.go

    	// value chosen for being power of two, and enough to handle all web APIs
    	// in particular, note that WebGL2's texImage2D takes up to 10 arguments
    	const maxStackArgs = 16
    	if size <= maxStackArgs {
    		// as long as makeArgs is inlined, these will be stack-allocated
    		argVals = make([]Value, size, maxStackArgs)
    		argRefs = make([]ref, size, maxStackArgs)
    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.util.OperatorNameConventions
    import org.jetbrains.kotlin.util.OperatorNameConventions.EQUALS
    import org.jetbrains.kotlin.utils.addIfNotNull
    import org.jetbrains.kotlin.utils.addToStdlib.safeAs
    import org.jetbrains.kotlin.utils.exceptions.checkWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.rethrowExceptionWithDetails
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	// so we shouldn't see any _cgo_ files anyway, but just be safe.
    	for _, file := range inputs {
    		if !SafeArg(file) || strings.HasPrefix(file, "_cgo_") {
    			setError(fmt.Errorf("invalid input file name %q", file))
    			return
    		}
    	}
    	if name := pathpkg.Base(p.ImportPath); !SafeArg(name) {
    		setError(fmt.Errorf("invalid input directory name %q", name))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top