Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for tiempo (0.81 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	VMOVDQU Y0, (OFFSET*2)(R14)
    
    
    // Message scheduling pre-compute for rounds 0-15
    // R13 is a pointer to even 64-byte block
    // R10 is a pointer to odd 64-byte block
    // R14 is a pointer to temp buffer
    // X0 is used as temp register
    // YREG is clobbered as part of computation
    // OFFSET chooses 16 byte chunk within a block
    // R8 is a pointer to constants block
    // K_OFFSET chooses K constants relevant to this round
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	f(REG_VS32, REG_VS63, 77) // overlaps V0-V31
    	PPC64DWARFRegisters[REG_LR] = 65
    	PPC64DWARFRegisters[REG_CTR] = 66
    	PPC64DWARFRegisters[REG_XER] = 76
    }
    
    /*
     * GENERAL:
     *
     * compiler allocates R3 up as temps
     * compiler allocates register variables R7-R27
     * compiler allocates external registers R30 down
     *
     * compiler allocates register variables F17-F26
     * compiler allocates external registers F26 down
     */
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    	dirs = append(dirs, os.TempDir())
    	for _, tmpDir := range dirs {
    		if err := os.MkdirAll(tmpDir, 0755); err != nil {
    			ui.PrintErr("Could not use temp dir ", tmpDir, ": ", err.Error())
    			continue
    		}
    		return tmpDir, nil
    	}
    	return "", fmt.Errorf("failed to identify temp dir")
    }
    
    const testSourceAddress = "pproftest.local"
    
    // grabProfile fetches a profile. Returns the profile, sources for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/typecheck.go

    		return n
    
    	case ir.OCONVNOP:
    		n := n.(*ir.ConvExpr)
    		n.X = Expr(n.X)
    		return n
    
    	// statements
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		tcAssign(n)
    
    		// Code that creates temps does not bother to set defn, so do it here.
    		if n.X.Op() == ir.ONAME && ir.IsAutoTmp(n.X) {
    			n.X.Name().Defn = n
    		}
    		return n
    
    	case ir.OAS2:
    		tcAssignList(n.(*ir.AssignListStmt))
    		return n
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    				// In the top-level case (ii=0) this can happen
    				// because a composite variable was split into pieces,
    				// and we're looking at a piece. We can also see
    				// return temps (~r%d) that were created during
    				// lowering, or unnamed params ("_").
    				v.ChildIndex = int32(synthCount)
    				synthCount++
    			}
    		}
    	}
    
    	// Make a second pass through the progs to compute PC ranges for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    // REG_{name} = SYSREG_END + iota.
    const (
    	REG_SPECIAL = obj.RBaseARM64 + 1<<12
    )
    
    // Register assignments:
    //
    // compiler allocates R0 up as temps
    // compiler allocates register variables R7-R25
    // compiler allocates external registers R26 down
    //
    // compiler allocates register variables F7-F26
    // compiler allocates external registers F26 down
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/TempFileCreator.java

          return File.createTempFile(
              /* prefix= */ prefix,
              /* suffix= */ null,
              /* directory= */ null /* defaults to java.io.tmpdir */);
        }
    
        /** Maximum loop count when creating temp directories. */
        private static final int TEMP_DIR_ATTEMPTS = 10000;
      }
    
      private static final class ThrowingCreator extends TempFileCreator {
        private static final String MESSAGE =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

    import org.gradle.api.GradleScriptException
    import org.gradle.api.Project
    import org.gradle.api.initialization.Settings
    import org.gradle.api.initialization.dsl.ScriptHandler
    import org.gradle.api.internal.file.temp.TemporaryFileProvider
    import org.gradle.api.internal.initialization.ClassLoaderScope
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.invocation.Gradle
    import org.gradle.groovy.scripts.ScriptSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            } else {
                try {
                    tempFile = File.createTempFile("tikaExtractor-", ".out");
                } catch (final IOException e) {
                    throw new ExtractException("Could not create a temp file.", e);
                }
            }
    
            try {
                final PrintStream originalOutStream = System.out;
                final ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/pgo_inl_test.go

    const preProfFile = "inline_hot.pprof.node_map"
    
    func buildPGOInliningTest(t *testing.T, dir string, gcflag string) []byte {
    	const pkg = "example.com/pgo/inline"
    
    	// Add a go.mod so we have a consistent symbol names in this temp dir.
    	goMod := fmt.Sprintf(`module %s
    go 1.19
    `, pkg)
    	if err := os.WriteFile(filepath.Join(dir, "go.mod"), []byte(goMod), 0644); err != nil {
    		t.Fatalf("error writing go.mod: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top