Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,459 for runN (4.95 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ------------------------------------------------------------
    
    Application tasks
    -----------------
    run - Runs this project as a JVM application.
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    ----
    
    Here, the `:run` task is part of the `Application` group with the description `Runs this project as a JVM application`.
    In code, it would look something like this:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    			}
    		}
    	}
    }
    
    func hasNonGraphic(s string) bool {
    	for _, c := range []byte(s) {
    		if c == '\r' || c == '\n' || (!unicode.IsGraphic(rune(c)) && !unicode.IsSpace(rune(c))) {
    			return true
    		}
    	}
    	return false
    }
    
    func shellQuote(s string) string {
    	var b bytes.Buffer
    	b.WriteByte('\'')
    	for _, x := range []byte(s) {
    		if x == '\'' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/convert.go

    	a := typecheck.NodNil()
    	if n.Esc() == ir.EscNone {
    		// Create temporary buffer for slice on stack.
    		a = stackBufAddr(tmpstringbufsize, types.Types[types.TINT32])
    	}
    	// stringtoslicerune(*[32]rune, string) []rune
    	return mkcall("stringtoslicerune", n.Type(), init, a, typecheck.Conv(n.X, types.Types[types.TSTRING]))
    }
    
    // dataWordFuncName returns the name of the function used to convert a value of type "from"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

        # shellcheck disable=SC2086
        curl ${CURL_FLAGS} \
          --location \
          "https://github.com/opencontainers/runc/releases/download/${COS_INSTALL_RUNC_VERSION}/runc.${HOST_ARCH}" --output /home/containerd/bin/runc \
        && chmod 755 /home/containerd/bin/runc
        # ensure runc gets picked up from the correct location
        sed -i "/\[Service\]/a Environment=PATH=/home/containerd/bin:$PATH" /etc/systemd/system/containerd.service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. istioctl/pkg/injector/injector-list.go

    		Example: `  istioctl experimental injector list`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    				return fmt.Errorf("unknown subcommand %q", args[0])
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			cmd.HelpFunc()(cmd, args)
    			return nil
    		},
    	}
    
    	cmd.AddCommand(injectorListCommand(cliContext))
    	return cmd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/go/scanner/scanner_test.go

    	{"..", token.PERIOD, 0, "", ""}, // two periods, not invalid token (issue #28112)
    	{`' '`, token.CHAR, 0, `' '`, ""},
    	{`''`, token.CHAR, 0, `''`, "illegal rune literal"},
    	{`'12'`, token.CHAR, 0, `'12'`, "illegal rune literal"},
    	{`'123'`, token.CHAR, 0, `'123'`, "illegal rune literal"},
    	{`'\0'`, token.CHAR, 3, `'\0'`, "illegal character U+0027 ''' in escape sequence"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/shared_test.go

    var testWork = flag.Bool("testwork", false, "if true, log and do not delete the temporary working directory")
    
    // run runs a command and calls t.Errorf if it fails.
    func run(t *testing.T, msg string, args ...string) {
    	runWithEnv(t, msg, nil, args...)
    }
    
    // runWithEnv runs a command under the given environment and calls t.Errorf if it fails.
    func runWithEnv(t *testing.T, msg string, env []string, args ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  8. src/bytes/buffer_test.go

    	}
    }
    
    func TestRuneIO(t *testing.T) {
    	const NRune = 1000
    	// Built a test slice while we write the data
    	b := make([]byte, utf8.UTFMax*NRune)
    	var buf Buffer
    	n := 0
    	for r := rune(0); r < NRune; r++ {
    		size := utf8.EncodeRune(b[n:], r)
    		nbytes, err := buf.WriteRune(r)
    		if err != nil {
    			t.Fatalf("WriteRune(%U) error: %s", r, err)
    		}
    		if nbytes != size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    		// if the phase should not be run, skip the phase.
    		if run, ok := phaseRunFlags[p.generatedName]; !run || !ok {
    			return nil
    		}
    
    		// Errors if phases that are meant to create special subcommands only
    		// are wrongly assigned Run Methods
    		if p.RunAllSiblings && (p.RunIf != nil || p.Run != nil) {
    			return errors.Errorf("phase marked as RunAllSiblings can not have Run functions %s", p.generatedName)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            }
    
            // expect: memory hog released
            val runs = 10
            // For some reason we have 5 references to the task class.
            val daemonHeapMb = memoryHogMb * 5 + 400
            for (run in 1..runs) {
                println("Run number $run")
                myTask.writeText(myTask.readText().replace("runAction${run - 1}", "runAction$run"))
                buildWithDaemonHeapSize(daemonHeapMb, "myTask").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top