Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 314 for chains (0.28 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         * The provider returned by this method may or not be the same instance as this provider. Generally, it is better to simplify any provider chains to replace calculations with fixed values and to remove
         * intermediate steps.
         */
        ExecutionTimeValue<? extends T> calculateExecutionTimeValue();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/alg.go

    	if eq == nil {
    		panic(errorString("comparing uncomparable type " + toRType(t).string()))
    	}
    	if isDirectIface(t) {
    		// Direct interface types are ptr, chan, map, func, and single-element structs/arrays thereof.
    		// Maps and funcs are not comparable, so they can't reach here.
    		// Ptrs, chans, and single-element items can be compared directly using ==.
    		return x == y
    	}
    	return eq(x, y)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    	uses         []*Value            // re-visiting set
    	visited      map[Edge]bool       // visited edges
    	latticeCells map[*Value]lattice  // constant lattices
    	defUse       map[*Value][]*Value // def-use chains for some values
    	defBlock     map[*Value][]*Block // use blocks of def
    	visitedBlock []bool              // visited block
    }
    
    // sccp stands for sparse conditional constant propagation, it propagates constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/schedule.go

    				continue
    			}
    			for _, a := range v.Args {
    				if a.Block == b {
    					edges = append(edges, edge{a, v})
    				}
    			}
    		}
    
    		// Find store chain for block.
    		// Store chains for different blocks overwrite each other, so
    		// the calculated store chain is good only for this block.
    		for _, v := range b.Values {
    			if v.Op != OpPhi && v.Op != OpInitMem && v.Type.IsMemory() {
    				nextMem[v.MemoryArg().ID] = v
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

                with(it) {
                    artifactName == componentId.displayName
                }
            }
            executionIdentifications.artifactName ==~ ['file1.jar', 'file2.jar']
        }
    
        def "transform chains are captured"() {
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithColorAttributes()
            setupExternalDependency()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/syscall/types_windows.go

    	CertInfo     *CertInfo
    	Store        Handle
    }
    
    type CertChainContext struct {
    	Size                       uint32
    	TrustStatus                CertTrustStatus
    	ChainCount                 uint32
    	Chains                     **CertSimpleChain
    	LowerQualityChainCount     uint32
    	LowerQualityChains         **CertChainContext
    	HasRevocationFreshnessTime uint32
    	RevocationFreshnessTime    uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/text/template/parse/parse.go

    		switch node.Type() {
    		case NodeField:
    			node = t.newField(chain.Position(), chain.String())
    		case NodeVariable:
    			node = t.newVariable(chain.Position(), chain.String())
    		case NodeBool, NodeString, NodeNumber, NodeNil, NodeDot:
    			t.errorf("unexpected . after term %q", node.String())
    		default:
    			node = chain
    		}
    	}
    	return node
    }
    
    // term:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. src/compress/flate/deflate.go

    		for i, val := range dst {
    			di := i + index
    			hh := &d.hashHead[val&hashMask]
    			// Get previous value with the same hash.
    			// Our chain should point to the previous value.
    			d.hashPrev[di&windowMask] = *hh
    			// Set the head of the hash chain to us.
    			*hh = uint32(di + d.hashOffset)
    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    	// Passthrough is the name of the virtual host used to forward traffic to the
    	// PassthroughCluster
    	Passthrough = "allow_any"
    
    	// PassthroughFilterChain to catch traffic that doesn't match other filter chains.
    	PassthroughFilterChain = "PassthroughFilterChain"
    
    	// Inbound pass through cluster need to the bind the loopback ip address for the security and loop avoidance.
    	InboundPassthroughCluster = "InboundPassthroughCluster"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top