Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,101 for chains (0.09 sec)

  1. 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)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. 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)
  5. src/crypto/tls/common.go

    		x509Cert := c.Leaf
    		// Parse the certificate if this isn't the leaf node, or if
    		// chain.Leaf was nil.
    		if j != 0 || x509Cert == nil {
    			var err error
    			if x509Cert, err = x509.ParseCertificate(cert); err != nil {
    				return fmt.Errorf("failed to parse certificate #%d in the chain: %w", j, err)
    			}
    		}
    
    		for _, ca := range cri.AcceptableCAs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/util/concurrent/FluentFuture.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link ListenableFuture} that supports fluent chains of operations. For example:
     *
     * <pre>{@code
     * ListenableFuture<Boolean> adminIsLoggedIn =
     *     FluentFuture.from(usersDatabase.getAdminUser())
     *         .transform(User::getId, directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link ListenableFuture} that supports fluent chains of operations. For example:
     *
     * <pre>{@code
     * ListenableFuture<Boolean> adminIsLoggedIn =
     *     FluentFuture.from(usersDatabase.getAdminUser())
     *         .transform(User::getId, directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top