Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for visitValues (0.1 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/resolution/DefaultDocumentResolutionContainer.kt

                }
            }
    
            fun visitValue(value: DeclarativeDocument.ValueNode) {
                when (value) {
                    is ValueFactoryNode -> {
                        valueFactoryResolution[value] = resolveValueFactory(value)
                        value.values.forEach(::visitValue)
                    }
                    is DeclarativeDocument.ValueNode.LiteralValueNode -> Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            public void calculateExecutionTimeValue(Action<? super ExecutionTimeValue<? extends Iterable<? extends T>>> visitor) {
                ExecutionTimeValue<? extends T> value = provider.calculateExecutionTimeValue();
                visitValue(visitor, value);
            }
    
            @Override
            public ValueProducer getProducer() {
                return provider.getProducer();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    					if val.Op == OpPhi || !destVisited {
    						t.visitValue(val)
    					}
    				}
    				// propagates constants facts through CFG, taking condition test
    				// into account
    				if !destVisited {
    					t.propagate(dest)
    				}
    			}
    			continue
    		}
    		if len(t.uses) > 0 {
    			use := t.uses[0]
    			t.uses = t.uses[1:]
    			t.visitValue(use)
    			continue
    		}
    		break
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top