Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 602 for for1 (0.11 sec)

  1. src/go/parser/parser.go

    		// is a single unary expression of the form "range x"
    		x := as.Rhs[0].(*ast.UnaryExpr).X
    		return &ast.RangeStmt{
    			For:    pos,
    			Key:    key,
    			Value:  value,
    			TokPos: as.TokPos,
    			Tok:    as.Tok,
    			Range:  as.Rhs[0].Pos(),
    			X:      x,
    			Body:   body,
    		}
    	}
    
    	// regular for statement
    	return &ast.ForStmt{
    		For:  pos,
    		Init: s1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	var iters int
    	var states map[string]bool
    	for {
    		change := false
    		deadChange := false
    		for _, b := range f.Blocks {
    			var b0 *Block
    			if debug > 1 {
    				b0 = new(Block)
    				*b0 = *b
    				b0.Succs = append([]Edge{}, b.Succs...) // make a new copy, not aliasing
    			}
    			for i, c := range b.ControlValues() {
    				for c.Op == OpCopy {
    					c = c.Args[0]
    					b.ReplaceControl(i, c)
    				}
    			}
    			if rb(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            final List<String> args = new ArrayList<>();
            // JVM args that must be used for the build JVM
            final List<String> buildJvmArgs = new ArrayList<>();
            // JVM args that must be used to fork a JVM
            final List<String> launcherJvmArgs = new ArrayList<>();
            // Implicit JVM args that should be used to fork a JVM
            final List<String> implicitLauncherJvmArgs = new ArrayList<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. configure.py

        var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
        query_item: string for feature related to the variable, e.g. "CUDA for
          Nvidia GPUs".
        enabled_by_default: boolean for default behavior.
        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    }
    
    // errorCheck matches errors in outStr against comments in source files.
    // For each line of the source files which should generate an error,
    // there should be a comment of the form // ERROR "regexp".
    // If outStr has an error for a line which has no such comment,
    // this function will report an error.
    // Likewise if outStr does not have an error for a line which has a comment,
    // or if the error message does not match the <regexp>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

     *  New: `okhttp-dnsoverhttps` is an experimental API for doing DNS queries over HTTPS. Using HTTPS
        for DNS offers better security and potentially better performance. This feature is a preview:
        the API is subject to change.
     *  New: `okhttp-sse` is an early preview of Server-Sent Events (SSE). This feature is incomplete
        and is only suitable for experimental use.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    					// pkg was loaded from a root module, and because the main module has
    					// a pruned module graph we do not check non-root modules for
    					// conflicts for packages that can be found in roots. So we only need
    					// the checksums for the root modules that may contain pkg, not all
    					// possible modules.
    					for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    						if v, ok := rs.rootSelected(prefix); ok && v != "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    // registers for allocation. This affinity helps eliminate moves that
    // are required for phi implementations and helps generate allocations
    // for 2-register architectures.
    
    // Note: regalloc generates a not-quite-SSA output. If we have:
    //
    //             b1: x = ... : AX
    //                 x2 = StoreReg x
    //                 ... AX gets reused for something else ...
    //                 if ... goto b3 else b4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        int min_cluster_size;
    
        // Compiler fuel for the auto-clustering algorithm.
        //
        // We decrement this value by one on every time we choose a compilation
        // candidate and we stop clustering when it hits zero.  This means the
        // initial value for this variable (via --tf_xla_clustering_fuel=N)
        // effectively acts as a "cap" for how much we cluster and we can bisect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // for all the Istio control plane components.
    message ArchConfig {
      // Sets pod scheduling weight for amd64 arch
      uint32 amd64 = 1;
    
      // Sets pod scheduling weight for ppc64le arch.
      uint32 ppc64le = 2;
    
      // Sets pod scheduling weight for s390x arch.
      uint32 s390x = 3;
    
      // Sets pod scheduling weight for arm64 arch.
      uint32 arm64 = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top