Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,383 for phis (0.15 sec)

  1. src/cmd/compile/internal/ssa/block.go

    		b.Fatalf("inconsistent state for %v, num predecessors: %d, num phi args: %d", phi, n, numPhiArgs)
    	}
    	phi.Args[i].Uses--
    	phi.Args[i] = phi.Args[n]
    	phi.Args[n] = nil
    	phi.Args = phi.Args[:n]
    	phielimValue(phi)
    }
    
    // LackingPos indicates whether b is a block whose position should be inherited
    // from its successors.  This is true if all the values within it have unreliable positions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

        # Keep this in sync with the headers in details and reviews.
        incoming_headers = [
            # All applications should propagate x-request-id. This header is
            # included in access log statements and is used for consistent trace
            # sampling and log sampling decisions in Istio.
            'x-request-id',
    
            # Lightstep tracing header. Propagate this if you use lightstep tracing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    
    			if !be.liveout.Eq(newliveout) {
    				change = true
    				be.liveout.Copy(newliveout)
    			}
    
    			// A variable is live on input to this block
    			// if it is used by this block, or live on output from this block and
    			// not set by the code in this block.
    			//
    			// in[b] = uevar[b] \cup (out[b] \setminus varkill[b])
    			newlivein.AndNot(be.liveout, be.varkill)
    			be.livein.Or(newlivein, be.uevar)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/link/link_test.go

    tremendous powers by which our little lives are encompassed, to consider how beneficent they are, and how upon the smallest flower and leaf there was already a freshness poured from all this seeming rage, which seemed to make creation new again."`
    
    	jarndyce int `text:"Jarndyce and Jarndyce drones on. This scarecrow of a suit has, over the course of time, become so complicated, that no man alive knows what it means. The parties to it understand it least; but it has been observed that no two...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
        const hue = (index+1) * PHI * 2 * Math.PI; // +1 to avoid 0
        const hsl = `hsl(${hue}rad 50% 80%)`;
        return hsl;
      }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            }
    
            @Override
            public Ansi cursorUpLine() {
                return this;
            }
    
            @Override
            public Ansi cursorUpLine(final int n) {
                return this;
            }
    
            @Override
            public Ansi eraseScreen() {
                return this;
            }
    
            @Override
            public Ansi eraseScreen(Erase kind) {
                return this;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

                this.nameRenderer = renderer.nameRenderer
                this.keywordsRenderer = renderer.keywordsRenderer
                this.contextReceiversRenderer = renderer.contextReceiversRenderer
                this.codeStyle = renderer.codeStyle
                this.typeRenderer = renderer.typeRenderer
                this.annotationRenderer = renderer.annotationRenderer
                this.modifiersRenderer = renderer.modifiersRenderer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            this.id = problem.getDefinition().getId();
            this.contextualLabel = problem.getContextualLabel();
            this.solutions = new ArrayList<String>(problem.getSolutions());
            this.severity = problem.getDefinition().getSeverity();
    
            locations.addAll(problem.getLocations());
    
            this.details = problem.getDetails();
            this.docLink = problem.getDefinition().getDocumentationLink();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

            this.cachePolicy = cachePolicy;
            this.dependencySubstitutions = dependencySubstitutions;
            this.globalDependencySubstitutionRules = globalDependencySubstitutionRules;
            this.moduleIdentifierFactory = moduleIdentifierFactory;
            this.componentSelectionRules = new DefaultComponentSelectionRules(moduleIdentifierFactory);
            this.vcsResolver = vcsResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

        public T withContext(String context) {
            this.context = context;
            return (T) this;
        }
    
        @SuppressWarnings("unchecked")
        public T withAdvice(String advice) {
            this.advice = advice;
            return (T) this;
        }
    
        @SuppressWarnings("unchecked")
        public T withProblemIdDisplayName(String problemIdDisplayName) {
            this.problemIdDisplayName = problemIdDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top