Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,585 for room (0.04 sec)

  1. src/runtime/asm_ppc64x.s

    #ifdef GOOS_aix
    	// Create a fake LR to improve backtrace.
    	MOVD	$runtime·asmcgocall(SB), R6
    	MOVD	R6, 16(R1)
    	// AIX also saves one argument on the stack.
    	SUB	$8, R1
    #endif
    	// Save room for two of our pointers, plus the callee
    	// save area that lives on the caller stack.
    	// Do arithmetics in R10 to hide from the assembler
    	// counting it as SP delta, which is irrelevant as we are
    	// on the system stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	MOVD	R3, g
    	BL	runtime·save_g(SB)
    	MOVD	(g_sched+gobuf_sp)(g), R0
    	MOVD	R0, RSP
    	MOVD	(g_sched+gobuf_bp)(g), R29
    	MOVD	R9, R0
    
    	// Now on a scheduling stack (a pthread-created stack).
    	// Save room for two of our pointers /*, plus 32 bytes of callee
    	// save area that lives on the caller stack. */
    	MOVD	RSP, R13
    	SUB	$16, R13
    	MOVD	R13, RSP
    	MOVD	R4, 0(RSP)	// save old g on stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/jars/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/sources/junit-4.7-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  4. .github/workflows/root-disable.yml

        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start root lockdown tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
  5. src/time/time_test.go

    	// divisors of Second
    	f1 := func(ti int64, tns int32, logdi int32) bool {
    		d := Duration(1)
    		a, b := uint(logdi%9), (logdi>>16)%9
    		d <<= a
    		for i := 0; i < int(b); i++ {
    			d *= 5
    		}
    
    		// Make room for unix ↔ internal conversion.
    		// We don't care about behavior too close to ± 2^63 Unix seconds.
    		// It is full of wraparounds but will never happen in a reasonable program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/root.go

    }
    
    func addFlags(cmd *cobra.Command, rootArgs *RootArgs) {
    	cmd.PersistentFlags().BoolVarP(&rootArgs.DryRun, "dry-run", "",
    		false, "Console/log output only, make no changes.")
    }
    
    // GetRootCmd returns the root of the cobra command-tree.
    func GetRootCmd(ctx cli.Context, args []string) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:          "mesh",
    		Short:        "Command line Istio install utility.",
    		SilenceUsage: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

      </component>
      <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false"/>
      <component name="GradleUISettings">
        <setting name="root"/>
      </component>
      <component name="GradleUISettings2">
        <setting name="root"/>
      </component>
      <component name="IdProvider" IDEtalkID="11DA1DB66DD62DDA1ED602B7079FE97C"/>
      <component name="JavadocGenerationManager">
        <option name="OUTPUT_DIRECTORY"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

      </component>
      <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false"/>
      <component name="GradleUISettings">
        <setting name="root"/>
      </component>
      <component name="GradleUISettings2">
        <setting name="root"/>
      </component>
      <component name="IdProvider" IDEtalkID="11DA1DB66DD62DDA1ED602B7079FE97C"/>
      <component name="JavadocGenerationManager">
        <option name="OUTPUT_DIRECTORY"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/time/time.go

    			// print nanoseconds
    			prec = 0
    			buf[w] = 'n'
    		case u < uint64(Millisecond):
    			// print microseconds
    			prec = 3
    			// U+00B5 'µ' micro sign == 0xC2 0xB5
    			w-- // Need room for two bytes.
    			copy(buf[w:], "µ")
    		default:
    			// print milliseconds
    			prec = 6
    			buf[w] = 'm'
    		}
    		w, u = fmtFrac(buf[:w], u, prec)
    		w = fmtInt(buf[:w], u)
    	} else {
    		w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/test/framework/tools/featuresgen/cmd/root.go

    }
    
    // Parses a map in the yaml file
    func readMap(m map[any]any, path []string) []string {
    	var labels []string
    	for k, v := range m {
    		// If we see "values," then the element is a root and we shouldn't put it in our label name
    		if k == "values" {
    			labels = append(labels, readVal(v, path)...)
    		} else {
    			if len(path) > 0 || k.(string) != "features" {
    				path = append(path, k.(string))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top